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