9 references to ImportContext
System.ServiceModel (2)
System\ServiceModel\Description\MessageContractImporter.cs (2)
1952xmlImporter = new XmlSchemaImporter(literalSchemas, webReferenceOptions.CodeGenerationOptions, options.CodeProvider, new ImportContext(codeIdentifiers, false)); 1965soapImporter = new SoapSchemaImporter(encodedSchemas, webReferenceOptions.CodeGenerationOptions, options.CodeProvider, new ImportContext(codeIdentifiers, false));
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionImporter.cs (2)
247return Import(codeNamespace, new ImportContext(new CodeIdentifiers(), false), new Hashtable(), new StringCollection()); 303namespaces[ns.Name] = new ImportContext(new CodeIdentifiers(), true);
System.Xml (5)
System\Xml\Serialization\ImportContext.cs (1)
32internal ImportContext() : this(null, false) {}
System\Xml\Serialization\SoapSchemaImporter.cs (2)
36public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) {} 42public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) {}
System\Xml\Serialization\XmlSchemaImporter.cs (2)
45public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) {} 51public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) {}