Opc.Ua.Server.LocalReference.LocalReference C# (CSharp) Method

LocalReference() public method

Initializes the the reference.
public LocalReference ( NodeId sourceId, NodeId referenceTypeId, bool isInverse, NodeId targetId ) : System
sourceId NodeId
referenceTypeId NodeId
isInverse bool
targetId NodeId
return System
        public LocalReference(
            NodeId sourceId,
            NodeId referenceTypeId,
            bool isInverse,
            NodeId targetId)
        {
            m_sourceId = sourceId;
            m_referenceTypeId = referenceTypeId;
            m_isInverse = isInverse;
            m_targetId = targetId;
        }
LocalReference