11 writes to StableName
System.Runtime.Serialization (11)
System\Runtime\Serialization\ClassDataContract.cs (3)
694this.StableName = stableName; 737this.StableName = stableName; 779this.StableName = new XmlQualifiedName(GetStableNameAndSetHasDataContract(type).Name, ns.Value);
System\Runtime\Serialization\CollectionDataContract.cs (3)
594this.StableName = DataContract.GetStableName(type); 604this.StableName = CreateQualifiedName(Globals.ArrayPrefix + itemContract.StableName.Name, itemContract.StableName.Namespace); 619this.StableName = DataContract.GetCollectionStableName(type, itemType, out collectionContractAttribute);
System\Runtime\Serialization\DataContract.cs (3)
258set { helper.StableName = value; } 1259this.StableName = stableName; 1266this.StableName = CreateQualifiedName(name.Value, ns.Value);
System\Runtime\Serialization\EnumDataContract.cs (1)
191this.StableName = DataContract.GetStableName(type, out hasDataContract);
System\Runtime\Serialization\XmlDataContract.cs (1)
205this.StableName = stableName;
18 references to StableName
System.Runtime.Serialization (18)
System\Runtime\Serialization\ClassDataContract.cs (8)
697this.Name = dictionary.Add(StableName.Name); 698this.Namespace = dictionary.Add(StableName.Namespace); 740Name = dictionary.Add(StableName.Name); 741Namespace = dictionary.Add(StableName.Namespace); 782Name = dictionary.Add(StableName.Name); 1027membersInHierarchy.Add(new Member(member, this.StableName.Namespace, baseTypeIndex)); 1185ThrowInvalidDataContractException(SR.GetString(SR.ValueTypeCannotHaveBaseType, StableName.Name, StableName.Namespace, baseContract.StableName.Name, baseContract.StableName.Namespace));
System\Runtime\Serialization\CollectionDataContract.cs (2)
564this.Name = dictionary.Add(this.StableName.Name); 565this.Namespace = dictionary.Add(this.StableName.Namespace);
System\Runtime\Serialization\DataContract.cs (1)
254get { return helper.StableName; }
System\Runtime\Serialization\EnumDataContract.cs (4)
199Name = dictionary.Add(StableName.Name); 200Namespace = dictionary.Add(StableName.Namespace); 231ThrowInvalidDataContractException(SR.GetString(SR.InvalidEnumBaseType, value.Name, value.Namespace, StableName.Name, StableName.Namespace));
System\Runtime\Serialization\XmlDataContract.cs (3)
209this.Name = dictionary.Add(StableName.Name); 210this.Namespace = dictionary.Add(StableName.Namespace); 217topLevelElementNamespace = (this.StableName.Namespace == Globals.SchemaNamespace) ? DictionaryGlobals.EmptyString : Namespace;