System.Xml.Schema.XmlSchemaAny.BuildNamespaceListV1Compat C# (CSharp) Method

BuildNamespaceListV1Compat() private method

private BuildNamespaceListV1Compat ( string targetNamespace ) : void
targetNamespace string
return void
        internal void BuildNamespaceListV1Compat(string targetNamespace) {
            if (ns != null) {
                namespaceList = new NamespaceListV1Compat(ns, targetNamespace);
            }
            else {
                namespaceList = new NamespaceList(); //This is only ##any, hence base class is sufficient
            }
        }