Delegate EdgeFactory<TVertex, TEdge>
Delegate to create an edge.
Namespace: QuikGraph
Assembly: QuikGraph.dll
Syntax
public delegate TEdge EdgeFactory<in TVertex, out TEdge>(TVertex source, TVertex target)
    where TEdge : IEdge<TVertex>;
  Parameters
| Type | Name | Description | 
|---|---|---|
| TVertex | source | Edge source vertex.  | 
      
| TVertex | target | Edge target vertex.  | 
      
Returns
| Type | Description | 
|---|---|
| TEdge | The created edge.  | 
      
Type Parameters
| Name | Description | 
|---|---|
| TVertex | Vertex type.  | 
      
| TEdge | Edge type.  |