Opc.Ua.RelativePath.RelativePath C# (CSharp) Method

RelativePath() public method

Creates a relative path to follow the forward reference type to find the specified browse name.
public RelativePath ( Opc.Ua.NodeId referenceTypeId, bool isInverse, bool includeSubtypes, Opc.Ua.QualifiedName browseName ) : System
referenceTypeId Opc.Ua.NodeId
isInverse bool
includeSubtypes bool
browseName Opc.Ua.QualifiedName
return System
        public RelativePath(NodeId referenceTypeId, bool isInverse, bool includeSubtypes, QualifiedName browseName)
        {
            Initialize();

            RelativePathElement element = new RelativePathElement();

            element.ReferenceTypeId = referenceTypeId;
            element.IsInverse       = isInverse;
            element.IncludeSubtypes = includeSubtypes;
            element.TargetName      = browseName;

            m_elements.Add(element);
        }                 
        #endregion

Same methods

RelativePath::RelativePath ( Opc.Ua.NodeId referenceTypeId, Opc.Ua.QualifiedName browseName ) : System
RelativePath::RelativePath ( Opc.Ua.QualifiedName browseName ) : System