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