NetworkEdge Class
Definition
Represents a connection between two nodes.
public class NetworkEdge
Constructors
| Name | Description |
|---|---|
| NetworkEdge | No summary available. |
NetworkEdge Constructor
public NetworkEdge()
Properties
| Name | Description |
|---|---|
| Source | Gets or sets the ID of the source node. |
| Target | Gets or sets the ID of the target node. |
| Weight | Gets or sets the weight/strength of the connection. |
Source Property
Gets or sets the ID of the source node.
public string Source { get; set; }
Target Property
Gets or sets the ID of the target node.
public string Target { get; set; }
Weight Property
Gets or sets the weight/strength of the connection.
public double Weight { get; set; }