11 writes to StableName
dotnet-svcutil-lib (11)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (3)
787
this.
StableName
= stableName;
817
this.
StableName
= stableName;
856
this.
StableName
= new XmlQualifiedName(GetStableNameAndSetHasDataContract(type).Name, ns.Value);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (2)
683
this.
StableName
= DataContract.GetStableName(type);
698
this.
StableName
= DataContract.GetCollectionStableName(type, itemType, out collectionContractAttribute);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (3)
365
{ _helper.
StableName
= value; }
1265
this.
StableName
= stableName;
1272
this.
StableName
= CreateQualifiedName(name.Value, ns.Value);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\EnumDataContract.cs (1)
193
this.
StableName
= DataContract.GetStableName(type, out _hasDataContract);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExceptionDataContract.cs (1)
152
this.
StableName
= DataContract.GetStableName(type, out _hasDataContract);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlDataContract.cs (1)
242
this.
StableName
= stableName;
20 references to StableName
dotnet-svcutil-lib (20)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (8)
790
this.Name = dictionary.Add(
StableName
.Name);
791
this.Namespace = dictionary.Add(
StableName
.Namespace);
820
Name = dictionary.Add(
StableName
.Name);
821
Namespace = dictionary.Add(
StableName
.Namespace);
859
Name = dictionary.Add(
StableName
.Name);
1111
membersInHierarchy.Add(new Member(member, this.
StableName
.Namespace, baseTypeIndex));
1256
ThrowInvalidDataContractException(string.Format(SRSerialization.ValueTypeCannotHaveBaseType,
StableName
.Name,
StableName
.Namespace, _baseContract.StableName.Name, _baseContract.StableName.Namespace));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (2)
654
this.Name = dictionary.Add(this.
StableName
.Name);
655
this.Namespace = dictionary.Add(this.
StableName
.Namespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
359
{ return _helper.
StableName
; }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\EnumDataContract.cs (4)
200
Name = dictionary.Add(
StableName
.Name);
201
Namespace = dictionary.Add(
StableName
.Namespace);
231
ThrowInvalidDataContractException(string.Format(SRSerialization.InvalidEnumBaseType, value.Name, value.Namespace,
StableName
.Name,
StableName
.Namespace));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExceptionDataContract.cs (2)
169
Name = dictionary.Add(
StableName
.Name);
170
Namespace = dictionary.Add(
StableName
.Namespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlDataContract.cs (3)
246
this.Name = dictionary.Add(
StableName
.Name);
247
this.Namespace = dictionary.Add(
StableName
.Namespace);
254
_topLevelElementNamespace = (this.
StableName
.Namespace == Globals.SchemaNamespace) ? DictionaryGlobals.EmptyString : Namespace;