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