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