Class XmlSerializableGraph<TVertex, TEdge, TGraph>.XmlEdgeList
Represents an XML serializable list of edge.
Inheritance
System.Object
XmlSerializableGraph<TVertex, TEdge, TGraph>.XmlEdgeList
Implements
System.Collections.Generic.IEnumerable<TEdge>
System.Collections.IEnumerable
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.Serialization
Assembly: QuikGraph.Serialization.dll
Syntax
[Serializable]
public class XmlEdgeList : IEnumerable<TEdge>, IEnumerable
Methods
| Improve this Doc View SourceAdd(TEdge)
Adds an edge to this serializable graph.
Declaration
public void Add(TEdge edge)
Parameters
Type | Name | Description |
---|---|---|
TEdge | edge | Edge to add. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
GetEnumerator()
Declaration
public IEnumerator<TEdge> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<TEdge> |
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable