Opc.Ua.Com.Server.ComHdaItemManager.Construct C# (CSharp) Method

Construct() private method

Constructs a ReadValueId for the specified UA attribute.
private Construct ( InternalHandle handle, uint uaAttributeId ) : ReadValueId
handle InternalHandle The handle.
uaAttributeId uint The ua attribute id.
return ReadValueId
        private ReadValueId Construct(InternalHandle handle, uint uaAttributeId)
        {
            ReadValueId readValueId = new ReadValueId();
            readValueId.NodeId = handle.NodeId;
            readValueId.AttributeId = uaAttributeId;
            readValueId.Handle = handle;
            return readValueId;
        }

Same methods

ComHdaItemManager::Construct ( NodeId nodeId, uint hdaAttributeId ) : BrowsePath
ComHdaItemManager::Construct ( NodeId nodeId, uint hdaAttributeId, uint uaAttributeId ) : ReadValueId