2 writes to MemberIds
System.Xml (2)
System\Xml\Serialization\XmlReflectionImporter.cs (1)
1729accessor.ChoiceIdentifier.MemberIds = new string[accessor.Elements.Length];
System\Xml\Serialization\XmlSchemaImporter.cs (1)
827member.ChoiceIdentifier.MemberIds = new string[member.Elements.Length];
7 references to MemberIds
System.Xml (7)
System\Xml\Serialization\XmlReflectionImporter.cs (2)
1740accessor.ChoiceIdentifier.MemberIds[i] = choiceMapping.Constants[j].Name; 1752accessor.ChoiceIdentifier.MemberIds[i] = choiceMapping.Constants[j].Name;
System\Xml\Serialization\XmlSchemaImporter.cs (1)
830member.ChoiceIdentifier.MemberIds[i] = constants[i].Name;
System\Xml\Serialization\XmlSerializationReader.cs (2)
4469CodeIdentifier.CheckValidIdentifier(choice.MemberIds[elementIndex]); 4470Writer.Write(RaCodeGen.GetStringForEnumMember(enumTypeName, choice.MemberIds[elementIndex], choice.Mapping.TypeDesc.UseReflection));
System\Xml\Serialization\XmlSerializationReaderILGen.cs (2)
3291CodeIdentifier.CheckValidIdentifier(choice.MemberIds[elementIndex]); 3292RaCodeGen.ILGenForEnumMember(ilg, choice.Mapping.TypeDesc.Type, choice.MemberIds[elementIndex]);