Show / Hide Table of Contents

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 Source

DataRelationEdge(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

relation is null.

Properties

| Improve this Doc View Source

Relation

Data relation hold by this edge.

Declaration
public DataRelation Relation { get; }
Property Value
Type Description
System.Data.DataRelation
| Improve this Doc View Source

Source

Gets the source vertex.

Declaration
public DataTable Source { get; }
Property Value
Type Description
System.Data.DataTable
| Improve this Doc View Source

Target

Gets the target vertex.

Declaration
public DataTable Target { get; }
Property Value
Type Description
System.Data.DataTable

Implements

IEdge<TVertex>

Extension Methods

GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, TGraph>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph