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

FilterContext() public method

Initializes the context.
public FilterContext ( Opc.Ua.NamespaceTable namespaceUris, ITypeTable typeTree, IOperationContext context ) : System
namespaceUris Opc.Ua.NamespaceTable The namespace URIs.
typeTree ITypeTable The type tree.
context IOperationContext The context.
return System
        public FilterContext(NamespaceTable namespaceUris, ITypeTable typeTree, IOperationContext context)
        {
            if (namespaceUris == null) throw new ArgumentNullException("namespaceUris");
            if (typeTree == null) throw new ArgumentNullException("typeTree");

            m_namespaceUris = namespaceUris;
            m_typeTree = typeTree;
            m_context = context;
        }

Same methods

FilterContext::FilterContext ( Opc.Ua.NamespaceTable namespaceUris, ITypeTable typeTree ) : System
FilterContext::FilterContext ( Opc.Ua.NamespaceTable namespaceUris, ITypeTable typeTree, IList preferredLocales ) : System
FilterContext