Recurity.Swf.Flowgraph.Edge.Edge C# (CSharp) Method

Edge() public method

public Edge ( UInt32 from, UInt32 to, EdgeType typeOfEdge ) : System
from System.UInt32
to System.UInt32
typeOfEdge EdgeType
return System
        public Edge( UInt32 from, UInt32 to, EdgeType typeOfEdge )
        {
            _SourceIndex = from;
            _DestinationIndex = to;
            _EType = typeOfEdge;
        }