Class EdgeEventArgs<TVertex, TEdge>
Base class for arguments of an event related to an edge.
Inheritance
System.Object
    System.EventArgs
    EdgeEventArgs<TVertex, TEdge>
      
      
      
  Inherited Members
      System.EventArgs.Empty
    
    
      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
Assembly: QuikGraph.dll
Syntax
[Serializable]
public class EdgeEventArgs<TVertex, TEdge> : EventArgs where TEdge : IEdge<TVertex>
  Type Parameters
| Name | Description | 
|---|---|
| TVertex | Vertex type.  | 
      
| TEdge | Edge type.  | 
      
Constructors
| Improve this Doc View SourceEdgeEventArgs(TEdge)
Initializes a new instance of the EdgeEventArgs<TVertex, TEdge> class.
Declaration
public EdgeEventArgs(TEdge edge)
  Parameters
| Type | Name | Description | 
|---|---|---|
| TEdge | edge | Concerned edge.  | 
      
Exceptions
| Type | Condition | 
|---|---|
| System.ArgumentNullException | 
  | 
      
Properties
| Improve this Doc View SourceEdge
Edge concerned by the event.
Declaration
public TEdge Edge { get; }
  Property Value
| Type | Description | 
|---|---|
| TEdge |