15 instantiations of CodeIdentifiers
dotnet-svcutil-lib (15)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeIdentifiers.cs (1)
194CodeIdentifiers newIdentifiers = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (1)
73_typeIdentifiers = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (1)
589_scope = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (3)
138CodeIdentifiers identifiers = new CodeIdentifiers(); 334CodeIdentifiers members = new CodeIdentifiers(); 635CodeIdentifiers constants = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (8)
249CodeIdentifiers memberScope = new CodeIdentifiers(); 589CodeIdentifiers memberScope = new CodeIdentifiers(); 592MemberMapping[] members = ImportTypeMembers(type, typeNs, identifier, memberScope, new CodeIdentifiers(), new NameTable(), ref needExplicitOrder, false, false); 669CodeIdentifiers members = new CodeIdentifiers(); 720CodeIdentifiers members = new CodeIdentifiers(); 723ImportTextMember(members, new CodeIdentifiers(), null); 1852CodeIdentifiers constants = new CodeIdentifiers(); 1912CodeIdentifiers constants = new CodeIdentifiers();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
1934CodeIdentifiers codeIdentifiers = new CodeIdentifiers();
56 references to CodeIdentifiers
dotnet-svcutil-lib (56)
FrameworkFork\Microsoft.Xml\Xml\Serialization\CodeIdentifiers.cs (2)
192internal CodeIdentifiers Clone() 194CodeIdentifiers newIdentifiers = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
21private CodeIdentifiers _typeIdentifiers; 27public ImportContext(CodeIdentifiers identifiers, bool shareTypes) 68public CodeIdentifiers TypeIdentifiers
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (2)
470private CodeIdentifiers _scope; 584internal CodeIdentifiers Scope
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaImporter.cs (2)
100internal CodeIdentifiers TypeIdentifiers 228internal void AddReservedIdentifiersForDataBinding(CodeIdentifiers scope)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapCodeExporter.cs (1)
258private void ExportProperty(CodeTypeDeclaration codeClass, MemberMapping member, CodeIdentifiers memberScope)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (9)
33public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) { } 39public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) { } 138CodeIdentifiers identifiers = new CodeIdentifiers(); 334CodeIdentifiers members = new CodeIdentifiers(); 343private MemberMapping[] ImportTypeMembers(XmlSchemaComplexType type, string typeNs, CodeIdentifiers members) 390private void ImportGroup(XmlSchemaParticle group, CodeIdentifiers members, string ns) 401private void ImportGroupMembers(XmlSchemaParticle particle, CodeIdentifiers members, string ns) 549private void ImportElementMember(XmlSchemaElement element, CodeIdentifiers members, string ns) 635CodeIdentifiers constants = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCodeExporter.cs (1)
829private void ExportProperty(CodeTypeDeclaration codeClass, MemberMapping member, string ns, CodeIdentifiers memberScope, CodeConstructor ctor)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (33)
42public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) { } 48public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) { } 249CodeIdentifiers memberScope = new CodeIdentifiers(); 589CodeIdentifiers memberScope = new CodeIdentifiers(); 669CodeIdentifiers members = new CodeIdentifiers(); 670CodeIdentifiers membersScope = structMapping.BaseMapping.Scope.Clone(); 720CodeIdentifiers members = new CodeIdentifiers(); 739private MemberMapping[] ImportTypeMembers(XmlSchemaType type, string typeNs, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, ref bool needExplicitOrder, bool order, bool allowUnboundedElements) 857private void ImportGroup(XmlSchemaGroupBase group, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, string ns, bool mixed, ref bool needExplicitOrder, bool allowDuplicates, bool groupRepeats, bool allowUnboundedElements) 870private MemberMapping ImportChoiceGroup(XmlSchemaGroupBase group, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, string ns, bool groupRepeats, ref bool needExplicitOrder, bool allowDuplicates) 1119private void ImportGroupMembers(XmlSchemaParticle particle, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, string ns, bool groupRepeats, ref bool mixed, ref bool needExplicitOrder, bool allowDuplicates, bool allowUnboundedElements) 1196private bool ImportSubstitutionGroupMember(XmlSchemaElement element, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, string ns, bool repeats, ref bool needExplicitOrder, bool allowDuplicates) 1215private void ImportTextMember(CodeIdentifiers members, CodeIdentifiers membersScope, XmlQualifiedName simpleContentType) 1267private MemberMapping ImportAnyMember(XmlSchemaAny any, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, string ns, ref bool mixed, ref bool needExplicitOrder, bool allowDuplicates) 1512private void ImportElementMember(XmlSchemaElement element, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, INameScope elementsScope, string ns, bool repeats, ref bool needExplicitOrder, bool allowDuplicates, bool allowUnboundedElements) 1568private void ImportAttributeMember(XmlSchemaAttribute attribute, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, string ns) 1592private void ImportAnyAttributeMember(XmlSchemaAnyAttribute any, CodeIdentifiers members, CodeIdentifiers membersScope) 1648private void ImportXmlnsDeclarationsMember(XmlSchemaType type, CodeIdentifiers members, CodeIdentifiers membersScope) 1675private void ImportAttributeGroupMembers(XmlSchemaAttributeGroup group, string identifier, CodeIdentifiers members, CodeIdentifiers membersScope, string ns) 1852CodeIdentifiers constants = new CodeIdentifiers(); 1912CodeIdentifiers constants = new CodeIdentifiers();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationILGen.cs (2)
263internal string GenerateBaseSerializer(string baseSerializer, string readerClass, string writerClass, CodeIdentifiers classes) 304internal string GenerateTypedSerializer(string readMethod, string writeMethod, XmlMapping mapping, CodeIdentifiers classes, string baseSerializer, string readerClass, string writerClass)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
1934CodeIdentifiers codeIdentifiers = new CodeIdentifiers();