177 references to Namespace
System.Data (20)
fx\src\data\System\Data\DataSet.cs (3)
3301any.Namespace = XmlSchema.Namespace; 3541if ((any0.Namespace == XmlSchema.Namespace) && (any1.Namespace == "urn:schemas-microsoft-com:xml-diffgram-v1")) 3600if (!(schema.RefName.Name == "schema" && schema.RefName.Namespace == XmlSchema.Namespace)) return null;
fx\src\data\System\Data\DataTable.cs (1)
5920any.Namespace = XmlSchema.Namespace;
fx\src\data\System\Data\SQLTypes\SQLBinary.cs (1)
514return new XmlQualifiedName("base64Binary", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (1)
596return new XmlQualifiedName("boolean", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLByte.cs (1)
597return new XmlQualifiedName("unsignedByte", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
562 return new XmlQualifiedName("base64Binary", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLChars.cs (1)
549 return new XmlQualifiedName("string", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
666return new XmlQualifiedName("dateTime", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLDecimal.cs (1)
3292return new XmlQualifiedName("decimal", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLDouble.cs (1)
517return new XmlQualifiedName("double", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLGuid.cs (1)
392return new XmlQualifiedName("string", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLInt16.cs (1)
606return new XmlQualifiedName("short", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLInt32.cs (1)
618return new XmlQualifiedName("int", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLInt64.cs (1)
672return new XmlQualifiedName("long", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLMoney.cs (1)
659return new XmlQualifiedName("decimal", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLSingle.cs (1)
521return new XmlQualifiedName("float", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SQLString.cs (1)
1034return new XmlQualifiedName("string", XmlSchema.Namespace);
fx\src\data\System\Data\SQLTypes\SqlXml.cs (1)
263 return new XmlQualifiedName("anyType", XmlSchema.Namespace);
System.IdentityModel (3)
System\IdentityModel\Metadata\MetadataSerializer.cs (1)
3227XmlUtil.ValidateXsiType(reader, "string", XmlSchema.Namespace);
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
896XmlUtil.ValidateXsiType(reader, "NCName", XmlSchema.Namespace); 945XmlUtil.ValidateXsiType(reader, "anyURI", XmlSchema.Namespace);
System.Runtime.Serialization (5)
System\Runtime\Serialization\Globals.cs (1)
1163public const string SchemaNamespace = XmlSchema.Namespace;
System\Runtime\Serialization\SchemaExporter.cs (2)
528if (anonymousType == null && xsdType == null && typeQName.Namespace != XmlSchema.Namespace) 781schemaRefElement.RefName = new XmlQualifiedName(Globals.SchemaLocalName, XmlSchema.Namespace);
System\Runtime\Serialization\SchemaImporter.cs (2)
137if (schemaSet.Contains(XmlSchema.Namespace)) 143xsdSchema.TargetNamespace = XmlSchema.Namespace;
System.ServiceModel (14)
System\ServiceModel\Description\MessageContractExporter.cs (1)
1386return ns == XmlSchema.Namespace || ns == "http://schemas.xmlsoap.org/wsdl/soap/" || ns == "http://schemas.xmlsoap.org/soap/encoding/";
System\ServiceModel\Description\MessageContractImporter.cs (3)
27static readonly XmlQualifiedName AnyType = new XmlQualifiedName("anyType", XmlSchema.Namespace); 821if (typeName.Namespace == XmlSchema.Namespace) 1271if (schemaTypeName.Namespace == XmlSchema.Namespace)
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
725&& reader.NamespaceURI == XsdNS.XmlSchema.Namespace;
System\ServiceModel\Description\MetadataSection.cs (2)
40static public string XmlSchemaDialect { get { return System.Xml.Schema.XmlSchema.Namespace; } } 65[XmlElement(MetadataStrings.XmlSchema.Schema, typeof(XsdNS.XmlSchema), Namespace = XsdNS.XmlSchema.Namespace)]
System\ServiceModel\Description\SchemaHelper.cs (2)
41|| NamespacesEqual(ns, XmlSchema.Namespace) 182if (typeName.Namespace == XmlSchema.Namespace)
System\ServiceModel\Description\WsdlExporter.cs (1)
923namespaces.Add("xsd", XmlSchema.Namespace);
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
268writer.WriteAttributeString("xmlns", "xsd", null, XmlSchema.Namespace);
System\ServiceModel\Dispatcher\XPathMessageFilter.cs (3)
79dAttr.SchemaTypeName = new XmlQualifiedName("string", XmlSchema.Namespace); 84innerExt.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace); 107nqAttr.SchemaTypeName = new XmlQualifiedName("int", XmlSchema.Namespace);
System.Web.Extensions (4)
Compilation\WCFModel\XmlStrings.cs (1)
57internal const string NamespaceUri = System.Xml.Schema.XmlSchema.Namespace;
Script\Services\WebServiceTypeData.cs (3)
30private const string SchemaNamespace = XmlSchema.Namespace; 109XmlQualifiedName stableName = new XmlQualifiedName(localName, XmlSchema.Namespace); 293XmlQualifiedName baseTypeName = ImportActualType(annotation, new XmlQualifiedName("int", XmlSchema.Namespace), typeQualifiedName);
System.Web.Services (9)
System\Web\Services\Description\HttpProtocolReflector.cs (2)
83element.SchemaTypeName = new XmlQualifiedName("string", XmlSchema.Namespace); 109part.Type = new XmlQualifiedName("string", XmlSchema.Namespace);
System\Web\Services\Description\ServiceDescription.cs (2)
259ns.Add("s", XmlSchema.Namespace); 1385[XmlElement("schema", typeof(XmlSchema), Namespace = XmlSchema.Namespace)]
System\Web\Services\Discovery\ContractReference.cs (1)
244else if (reader.IsStartElement("schema", XmlSchema.Namespace)) {
System\Web\Services\Protocols\Soap11ServerProtocol.cs (1)
98writer.WriteAttributeString("xmlns", "xsd", null, XmlSchema.Namespace);
System\Web\Services\Protocols\Soap12ServerProtocol.cs (1)
117writer.WriteAttributeString("xmlns", "xsd", null, XmlSchema.Namespace);
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
567writer.WriteAttributeString("xmlns", "xsd", null, XmlSchema.Namespace);
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
701writer.WriteAttributeString("xmlns", "xsd", null, XmlSchema.Namespace);
System.Xml (122)
System\Xml\Schema\Inference\Infer.cs (26)
29internal static XmlQualifiedName ST_boolean = new XmlQualifiedName("boolean", XmlSchema.Namespace); 30internal static XmlQualifiedName ST_byte = new XmlQualifiedName("byte", XmlSchema.Namespace); 31internal static XmlQualifiedName ST_unsignedByte = new XmlQualifiedName("unsignedByte", XmlSchema.Namespace); 32internal static XmlQualifiedName ST_short = new XmlQualifiedName("short", XmlSchema.Namespace); 33internal static XmlQualifiedName ST_unsignedShort = new XmlQualifiedName("unsignedShort", XmlSchema.Namespace); 34internal static XmlQualifiedName ST_int = new XmlQualifiedName("int", XmlSchema.Namespace); 35internal static XmlQualifiedName ST_unsignedInt = new XmlQualifiedName("unsignedInt", XmlSchema.Namespace); 36internal static XmlQualifiedName ST_long = new XmlQualifiedName("long", XmlSchema.Namespace); 37internal static XmlQualifiedName ST_unsignedLong = new XmlQualifiedName("unsignedLong", XmlSchema.Namespace); 38internal static XmlQualifiedName ST_integer = new XmlQualifiedName("integer", XmlSchema.Namespace); 39internal static XmlQualifiedName ST_decimal = new XmlQualifiedName("decimal", XmlSchema.Namespace); 40internal static XmlQualifiedName ST_float = new XmlQualifiedName("float", XmlSchema.Namespace); 41internal static XmlQualifiedName ST_double = new XmlQualifiedName("double", XmlSchema.Namespace); 42internal static XmlQualifiedName ST_duration = new XmlQualifiedName("duration", XmlSchema.Namespace); 43internal static XmlQualifiedName ST_dateTime = new XmlQualifiedName("dateTime", XmlSchema.Namespace); 44internal static XmlQualifiedName ST_time = new XmlQualifiedName("time", XmlSchema.Namespace); 45internal static XmlQualifiedName ST_date = new XmlQualifiedName("date", XmlSchema.Namespace); 46internal static XmlQualifiedName ST_gYearMonth = new XmlQualifiedName("gYearMonth", XmlSchema.Namespace); 47internal static XmlQualifiedName ST_string = new XmlQualifiedName("string", XmlSchema.Namespace); 48internal static XmlQualifiedName ST_anySimpleType = new XmlQualifiedName("anySimpleType", XmlSchema.Namespace); 179this.NamespaceManager.AddNamespace("xs", XmlSchema.Namespace); 218if ( xtr.NamespaceURI == XmlSchema.Namespace) 291if (childURI == XmlSchema.Namespace) 511if (childURI == XmlSchema.Namespace) 1045if (xtr.NamespaceURI == XmlSchema.Namespace) 1219if (xtr.NamespaceURI == XmlSchema.Namespace)
System\Xml\Schema\SchemaSetCompiler.cs (1)
522if (parentSchema.TargetNamespace != XmlSchema.Namespace) { //If it is not SForS, then error
System\Xml\Schema\XmlSchema.cs (2)
28[XmlRoot("schema", Namespace=XmlSchema.Namespace)] 200ns.Add("xs", XmlSchema.Namespace);
System\Xml\Serialization\ImportContext.cs (3)
261if (ns == XmlSchema.Namespace) 363if (baseType == null && !baseName.IsEmpty && baseName.Namespace != XmlSchema.Namespace) 381if (el.SubstitutionGroup.Namespace != XmlSchema.Namespace) {
System\Xml\Serialization\Mappings.cs (1)
1163if (xsiType.Namespace != XmlSchema.Namespace) {
System\Xml\Serialization\SchemaImporter.cs (3)
45if (!schemas.Contains(XmlSchema.Namespace)) { 170mapping.Namespace = XmlSchema.Namespace; 192if (name.Namespace == XmlSchema.Namespace)
System\Xml\Serialization\SoapReflectionImporter.cs (8)
188TypeDesc td = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 190throw new InvalidOperationException(Res.GetString(Res.XmlInvalidXsdDataType, dataType, "SoapElementAttribute.DataType", new XmlQualifiedName(dataType, XmlSchema.Namespace).ToString())); 220TypeDesc valueTypeDesc = string.IsNullOrEmpty(dataType) ? model.TypeDesc.BaseTypeDesc : typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 243mapping.Namespace = XmlSchema.Namespace; 456itemTypeNamespace = itemTypeMapping.TypeDesc.IsXsdType ? XmlSchema.Namespace : UrtTypes.Namespace; 462itemTypeNamespace = XmlSchema.Namespace; 504mapping.TypeDesc = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 517mapping.Namespace = mapping.TypeDesc.IsXsdType ? XmlSchema.Namespace : UrtTypes.Namespace;
System\Xml\Serialization\SoapSchemaExporter.cs (5)
187return new XmlQualifiedName(mapping.TypeDesc.DataType.Name, XmlSchema.Namespace); 216qname = new XmlQualifiedName(Soap.UrType, XmlSchema.Namespace); 230if (qname.Namespace != XmlSchema.Namespace) 273return new XmlQualifiedName(Soap.UrType, XmlSchema.Namespace); 360restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace);
System\Xml\Serialization\SoapSchemaImporter.cs (2)
229if (name.Name == Soap.UrType && name.Namespace == XmlSchema.Namespace) 635if (name.Namespace == XmlSchema.Namespace)
System\Xml\Serialization\Types.cs (31)
486AddNonXsdPrimitive(typeof(Guid), "guid", UrtTypes.Namespace, "Guid", new XmlQualifiedName("string", XmlSchema.Namespace), new XmlSchemaFacet[] { guidPattern }, TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.IgnoreDefault); 487AddNonXsdPrimitive(typeof(char), "char", UrtTypes.Namespace, "Char", new XmlQualifiedName("unsignedShort", XmlSchema.Namespace), new XmlSchemaFacet[0], TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.IgnoreDefault); 490AddNonXsdPrimitive(typeof(TimeSpan), "TimeSpan", UrtTypes.Namespace, "TimeSpan", new XmlQualifiedName("duration", XmlSchema.Namespace), new XmlSchemaFacet[0], TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 543AddSoapEncodedPrimitive(typeof(string), "normalizedString", ns, "String", new XmlQualifiedName("normalizedString", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.Reference | TypeFlags.HasDefaultConstructor); 545AddSoapEncodedPrimitive(typeof(string), unsupportedTypes[i], ns, "String", new XmlQualifiedName(unsupportedTypes[i], XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.Reference | TypeFlags.CollapseWhitespace); 548AddSoapEncodedPrimitive(typeof(string), "string", ns, "String", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.CanBeTextValue | TypeFlags.Reference); 549AddSoapEncodedPrimitive(typeof(int), "int", ns, "Int32", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 550AddSoapEncodedPrimitive(typeof(bool), "boolean", ns, "Boolean", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 551AddSoapEncodedPrimitive(typeof(short), "short", ns, "Int16", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 552AddSoapEncodedPrimitive(typeof(long), "long", ns, "Int64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 553AddSoapEncodedPrimitive(typeof(float), "float", ns, "Single", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 554AddSoapEncodedPrimitive(typeof(double), "double", ns, "Double", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 555AddSoapEncodedPrimitive(typeof(decimal), "decimal", ns, "Decimal", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 556AddSoapEncodedPrimitive(typeof(DateTime), "dateTime", ns, "DateTime", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 557AddSoapEncodedPrimitive(typeof(XmlQualifiedName), "QName", ns, "XmlQualifiedName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.HasCustomFormatter | TypeFlags.HasIsEmpty | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.Reference); 558AddSoapEncodedPrimitive(typeof(byte), "unsignedByte", ns, "Byte", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 559AddSoapEncodedPrimitive(typeof(SByte), "byte", ns, "SByte", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 560AddSoapEncodedPrimitive(typeof(UInt16), "unsignedShort", ns, "UInt16", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 561AddSoapEncodedPrimitive(typeof(UInt32), "unsignedInt", ns, "UInt32", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 562AddSoapEncodedPrimitive(typeof(UInt64), "unsignedLong", ns, "UInt64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 565AddSoapEncodedPrimitive(typeof(DateTime), "date", ns, "Date", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 566AddSoapEncodedPrimitive(typeof(DateTime), "time", ns, "Time", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 568AddSoapEncodedPrimitive(typeof(string), "Name", ns, "XmlName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 569AddSoapEncodedPrimitive(typeof(string), "NCName", ns, "XmlNCName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 570AddSoapEncodedPrimitive(typeof(string), "NMTOKEN", ns, "XmlNmToken", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 571AddSoapEncodedPrimitive(typeof(string), "NMTOKENS", ns, "XmlNmTokens", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 573AddSoapEncodedPrimitive(typeof(byte[]), "base64Binary", ns, "ByteArrayBase64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference | TypeFlags.IgnoreDefault | TypeFlags.XmlEncodingNotRequired); 574AddSoapEncodedPrimitive(typeof(byte[]), "hexBinary", ns, "ByteArrayHex", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference | TypeFlags.IgnoreDefault | TypeFlags.XmlEncodingNotRequired); 576AddSoapEncodedPrimitive(typeof(string), "arrayCoordinate", ns, "String", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue); 577AddSoapEncodedPrimitive(typeof(byte[]), "base64", ns, "ByteArrayBase64", new XmlQualifiedName("base64Binary", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.IgnoreDefault | TypeFlags.Reference); 587primitiveNames.Add(dataTypeName, XmlSchema.Namespace, typeDesc);
System\Xml\Serialization\XmlReflectionImporter.cs (8)
355TypeDesc td = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 357throw new InvalidOperationException(Res.GetString(Res.XmlInvalidXsdDataType, dataType, "XmlElementAttribute.DataType", new XmlQualifiedName(dataType, XmlSchema.Namespace).ToString())); 390TypeDesc valueTypeDesc = string.IsNullOrEmpty(dataType) ? model.TypeDesc.BaseTypeDesc : typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 519if (baseQname.Namespace == XmlSchema.Namespace) return; 565mapping.Namespace = XmlSchema.Namespace; 915ns = itemTypeMapping.Namespace == XmlSchema.Namespace ? defaultNs : itemTypeMapping.Namespace; 1016mapping.TypeDesc = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace); 1029mapping.Namespace = mapping.TypeDesc.IsXsdType ? XmlSchema.Namespace : UrtTypes.Namespace;
System\Xml\Serialization\XmlSchemaExporter.cs (6)
429if (schema.TargetNamespace != XmlSchema.Namespace) { 445if (schema.TargetNamespace != XmlSchema.Namespace) { 488schemaElement.RefName = new XmlQualifiedName("schema", XmlSchema.Namespace); 493AddSchemaImport(XmlSchema.Namespace, ns); 532qname = new XmlQualifiedName(mapping.TypeDesc.DataType.Name, XmlSchema.Namespace); 1018restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace);
System\Xml\Serialization\XmlSchemaImporter.cs (11)
80mapping.TypeDesc = Scope.GetTypeDesc("string", XmlSchema.Namespace, flags); 82mapping.Namespace = XmlSchema.Namespace; 464if (name.Name == Soap.UrType && name.Namespace == XmlSchema.Namespace) 482if (addref && name.Namespace != XmlSchema.Namespace) 1561if (restriction.BaseTypeName.Namespace != XmlSchema.Namespace) 1684mapping.Namespace = mapping.TypeDesc.IsXsdType ? XmlSchema.Namespace : UrtTypes.Namespace; 1697mapping.Namespace = mapping.TypeDesc.IsXsdType ? XmlSchema.Namespace : ns; 1732return new XmlQualifiedName("string", XmlSchema.Namespace); 1744if (qname.Namespace != XmlSchema.Namespace) 1761if (name.Namespace == XmlSchema.Namespace) 1762return (XmlSchemaSimpleType)Scope.GetTypeDesc("string", XmlSchema.Namespace, flags).DataType;
System\Xml\Serialization\XmlSchemas.cs (3)
571ns.Add("xs", XmlSchema.Namespace); 629if (!SchemaSet.Contains(XmlSchema.Namespace)) { 687xsd = CreateFakeXsdSchema(XmlSchema.Namespace, "schema");
System\Xml\Serialization\XmlSerializationReader.cs (5)
143schemaNsID = r.NameTable.Add(XmlSchema.Namespace); 209object ns = r.NameTable.Add(XmlSchema.Namespace); 1620typens = XmlSchema.Namespace; 1719XmlQualifiedName urType = new XmlQualifiedName(urTypeID, r.NameTable.Add(XmlSchema.Namespace)); 3052Writer.WriteLine("return ReadTypedPrimitive(new System.Xml.XmlQualifiedName(\"" + Soap.UrType + "\", \"" + XmlSchema.Namespace + "\"));");
System\Xml\Serialization\XmlSerializationReaderILGen.cs (1)
1478ilg.Ldstr(XmlSchema.Namespace);
System\Xml\Serialization\XmlSerializationWriter.cs (5)
178string typeNs = XmlSchema.Namespace; 222string typeNs = XmlSchema.Namespace; 320w.WriteStartElement(Soap.UrType, XmlSchema.Namespace); 1071typeNs = XmlSchema.Namespace; 1098typeNs = XmlSchema.Namespace;
System\Xml\Serialization\XmlSerializer.cs (1)
119nss.AddInternal("xsd", XmlSchema.Namespace);