Edge StructureNaiad Help

[This is preliminary documentation and is subject to change.]

Represents an edge in a graph as a pair of Nodes.

Namespace: Microsoft.Research.Naiad.Frameworks.GraphLINQ
Assembly: Microsoft.Research.Naiad.GraphLINQ (in Microsoft.Research.Naiad.GraphLINQ.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax

C#
public struct Edge : IEquatable<Edge>

The Edge type exposes the following members.

Constructors

  NameDescription
Public methodEdge
Constructs an edge from two Node objects.
Top
Methods

  NameDescription
Public methodEquals
Returns true if this edge and the other node have the same source and target.
Public methodGetHashCode
Returns the hash code for this edge.
(Overrides ValueTypeGetHashCode.)
Public methodToString
Returns a string representation of this edge.
(Overrides ValueTypeToString.)
Top
Fields

  NameDescription
Public fieldsource
The source Node of this edge.
Public fieldtarget
The target Node of the edge.
Top
See Also

Reference