Class DataRelationEdge
Represents a relation between System.Data.DataTables.
Inheritance
System.Object
DataRelationEdge
Implements
IEdge<System.Data.DataTable>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Data
Assembly: QuikGraph.Data.dll
Syntax
public sealed class DataRelationEdge : IEdge<DataTable>
Constructors
| Improve this Doc View SourceDataRelationEdge(DataRelation)
Initializes a new instance of the DataRelationEdge class.
Declaration
public DataRelationEdge(DataRelation relation)
Parameters
Type | Name | Description |
---|---|---|
System.Data.DataRelation | relation | Data relation. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
Properties
| Improve this Doc View SourceRelation
Data relation hold by this edge.
Declaration
public DataRelation Relation { get; }
Property Value
Type | Description |
---|---|
System.Data.DataRelation |
Source
Gets the source vertex.
Declaration
public DataTable Source { get; }
Property Value
Type | Description |
---|---|
System.Data.DataTable |
Target
Gets the target vertex.
Declaration
public DataTable Target { get; }
Property Value
Type | Description |
---|---|
System.Data.DataTable |