Opc.Ua.ContentFilter.GetBuiltInType C# (CSharp) Method

GetBuiltInType() private static method

Returns the BuiltInType type for the DataTypeId.
private static GetBuiltInType ( Opc.Ua.NodeId datatypeId ) : BuiltInType
datatypeId Opc.Ua.NodeId
return BuiltInType
        private static BuiltInType GetBuiltInType(NodeId datatypeId)
        {
            if (datatypeId == null || datatypeId.NamespaceIndex != 0 || datatypeId.IdType != IdType.Numeric)
            {
                return BuiltInType.Null;
            }

            return (BuiltInType)Enum.ToObject(typeof(BuiltInType), datatypeId.Identifier);
        }

Same methods

ContentFilter::GetBuiltInType ( object value ) : BuiltInType