10 references to CreateQualifiedName
System.Runtime.Serialization (10)
System\Runtime\Serialization\ClassDataContract.cs (1)
1432boundClassContract.StableName = CreateQualifiedName(DataContract.ExpandGenericParameters(XmlConvert.DecodeName(stableName.Name), new GenericNameProvider(DataContract.GetClrTypeFullName(this.UnderlyingType), genericParams)), stableName.Namespace);
System\Runtime\Serialization\CollectionDataContract.cs (2)
604this.StableName = CreateQualifiedName(Globals.ArrayPrefix + itemContract.StableName.Name, itemContract.StableName.Namespace); 1247boundCollectionContract.StableName = CreateQualifiedName(DataContract.ExpandGenericParameters(XmlConvert.DecodeName(this.StableName.Name), new GenericNameProvider(DataContract.GetClrTypeFullName(this.UnderlyingType), paramContracts)),
System\Runtime\Serialization\DataContract.cs (5)
1266this.StableName = CreateQualifiedName(name.Value, ns.Value); 1475return CreateQualifiedName(name, ns); 1500return CreateQualifiedName(name, ns); 1597return CreateQualifiedName(name, ns); 1637return CreateQualifiedName(GetDefaultStableLocalName(type), GetDefaultStableNamespace(type));
System\Runtime\Serialization\EnumDataContract.cs (1)
164XmlQualifiedName stableName = CreateQualifiedName(localName, Globals.SchemaNamespace);
System\Runtime\Serialization\SurrogateDataContract.cs (1)
115SetDataContractName(CreateQualifiedName(name, ns));