6 instantiations of TempAssembly
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (5)
239
_tempAssembly = new
TempAssembly
(new XmlMapping[] { _mapping }, assembly, contract);
288
return new
TempAssembly
(new XmlMapping[] { xmlMapping }, new Type[] { type }, defaultNamespace, null);
293
return new
TempAssembly
(new XmlMapping[] { xmlMapping }, new Type[] { type }, defaultNamespace, location);
555
tempAssembly = new
TempAssembly
(mappings, new Type[] { type }, null, null);
621
TempAssembly tempAssembly = new
TempAssembly
(pendingMappings, new Type[] { type }, null, null);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerFactory.cs (1)
113
tempAssembly = new
TempAssembly
(contract);
20 references to TempAssembly
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeGenerator.cs (1)
1860
return moduleBuilder.DefineType(
TempAssembly
.GeneratedAssemblyNamespace + "." + name,
FrameworkFork\Microsoft.Xml\Xml\Serialization\Compilation.cs (3)
293
internal
TempAssembly
this[string ns, object o]
295
get { return (
TempAssembly
)_cache[new TempAssemblyCacheKey(ns, o)]; }
298
internal void Add(string ns, object o,
TempAssembly
assembly)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationGeneratedCode.cs (2)
20
private
TempAssembly
_tempAssembly;
24
internal void Init(
TempAssembly
tempAssembly)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (1)
125
internal void Init(XmlReader r, XmlDeserializationEvents events, string encodingStyle,
TempAssembly
tempAssembly)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (1)
41
internal void Init(XmlWriter w, XmlSerializerNamespaces namespaces, string encodingStyle, string idBase,
TempAssembly
tempAssembly)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (9)
118
private
TempAssembly
_tempAssembly;
226
Assembly assembly =
TempAssembly
.LoadGeneratedAssembly(type, defaultNamespace, out contract);
279
internal static
TempAssembly
GenerateTempAssembly(XmlMapping xmlMapping)
284
internal static
TempAssembly
GenerateTempAssembly(XmlMapping xmlMapping, Type type, string defaultNamespace)
291
internal static
TempAssembly
GenerateTempAssembly(XmlMapping xmlMapping, Type type, string defaultNamespace, string location)
543
Assembly assembly = type == null ? null :
TempAssembly
.LoadGeneratedAssembly(type, null, out contract);
544
TempAssembly
tempAssembly = null;
621
TempAssembly
tempAssembly = new TempAssembly(pendingMappings, new Type[] { type }, null, null);
751
internal void SetTempAssembly(
TempAssembly
tempAssembly, XmlMapping mapping)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerFactory.cs (3)
72
TempAssembly
tempAssembly = XmlSerializer.GenerateTempAssembly(xmlTypeMapping);
93
TempAssembly
tempAssembly = s_cache[defaultNamespace, type];
103
Assembly assembly =
TempAssembly
.LoadGeneratedAssembly(type, defaultNamespace, out contract);