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

FilterContext() public method

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

            m_namespaceUris = namespaceUris;
            m_typeTree = typeTree;
            m_context = null;
            m_preferredLocales = preferredLocales;
        }
        #endregion

Same methods

FilterContext::FilterContext ( Opc.Ua.NamespaceTable namespaceUris, ITypeTable typeTree ) : System
FilterContext::FilterContext ( Opc.Ua.NamespaceTable namespaceUris, ITypeTable typeTree, IOperationContext context ) : System
FilterContext