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

Construct() private method

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

Same methods

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