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

SimpleAttributeOperand() public method

Creates an operand that references a component/property of a type.
public SimpleAttributeOperand ( FilterContext context, Opc.Ua.ExpandedNodeId typeDefinitionId, string browsePath, uint attributeId, string indexRange ) : System
context FilterContext
typeDefinitionId Opc.Ua.ExpandedNodeId
browsePath string
attributeId uint
indexRange string
return System
        public SimpleAttributeOperand(
            FilterContext  context, 
            ExpandedNodeId typeDefinitionId,
            string         browsePath,
            uint           attributeId,
            string         indexRange)
        {
            m_typeDefinitionId = ExpandedNodeId.ToNodeId(typeDefinitionId, context.NamespaceUris);
            m_browsePath       = Parse(browsePath);
            m_attributeId      = attributeId;
            m_indexRange       = indexRange;                
        }
        #endregion

Same methods

SimpleAttributeOperand::SimpleAttributeOperand ( FilterContext context, Opc.Ua.ExpandedNodeId typeId, IList browsePath ) : System
SimpleAttributeOperand::SimpleAttributeOperand ( Opc.Ua.NodeId typeId, IList browsePath ) : System
SimpleAttributeOperand::SimpleAttributeOperand ( Opc.Ua.NodeId typeId, Opc.Ua.QualifiedName browsePath ) : System