3 instantiations of ImportContext
System.Private.Xml (3)
System\Xml\Serialization\SchemaImporter.cs (1)
48internal ImportContext Context => _context ??= new ImportContext();
System\Xml\Serialization\XmlSchemaImporter.cs (2)
23public XmlSchemaImporter(XmlSchemas schemas) : base(schemas, CodeGenerationOptions.GenerateProperties, new ImportContext()) { } 27public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers? typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, new ImportContext(typeIdentifiers, false)) { }
6 references to ImportContext
netstandard (1)
netstandard.cs (1)
2383[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.ImportContext))]
System.Private.Xml (3)
System\Xml\Serialization\SchemaImporter.cs (3)
23private ImportContext _context; 30internal SchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, ImportContext context) 48internal ImportContext Context => _context ??= new ImportContext();
System.Xml (1)
System.Xml.cs (1)
110[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.ImportContext))]
System.Xml.XmlSerializer (1)
artifacts\obj\System.Xml.XmlSerializer\Debug\net10.0\System.Xml.XmlSerializer.Forwards.cs (1)
6[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.ImportContext))]