Opc.Ua.Com.Client.HdaBranchState.HdaBranchState C# (CSharp) Method

HdaBranchState() public method

Initializes a new instance of the HdaBranchState class.
public HdaBranchState ( string itemId, string name, ushort namespaceIndex ) : System
itemId string The qualified name for the area.
name string The name of the area.
namespaceIndex ushort Index of the namespace.
return System
        public HdaBranchState(
            string itemId,
            string name,
            ushort namespaceIndex)
        : 
            base(null)
        {
            m_itemId = itemId;

            this.SymbolicName = name;
            this.TypeDefinitionId = Opc.Ua.ObjectTypeIds.FolderType;
            this.NodeId = HdaModelUtils.ConstructIdForHdaBranch(itemId, namespaceIndex);
            this.BrowseName = new QualifiedName(name, namespaceIndex);
            this.DisplayName = this.BrowseName.Name;
            this.Description = null;
            this.WriteMask = 0;
            this.UserWriteMask = 0;
            this.EventNotifier = EventNotifiers.None;
        }
        #endregion