14 references to Namespace
System.ServiceModel (4)
System\ServiceModel\Description\MessageContractExporter.cs (1)
1231AddMessagePart(message, partName, new XmlQualifiedName(member.XsdElementName, member.Namespace), XmlQualifiedName.Empty);
System\ServiceModel\Description\MessageContractImporter.cs (2)
2017MessagePartDescription part = new MessagePartDescription(xmlName, member.Namespace == null ? string.Empty : member.Namespace);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
462headerNs = memberMapping.Namespace;
System.Web.Services (9)
System\Web\Services\Description\SoapProtocolImporter.cs (3)
123if (requestMapping.Namespace != responseMapping.Namespace) return false; 786string ns = soapBindingStyle == SoapBindingStyle.Rpc ? parameter.mapping.Namespace : parameter.IsOut ? response.Namespace : request.Namespace;
System\Web\Services\Description\SoapProtocolReflector.cs (5)
122part.Element = new XmlQualifiedName(member.XsdElementName, member.Namespace); 128ServiceDescriptionFormatExtension soapHeaderBinding = CreateSoapHeaderBinding(new XmlQualifiedName(message.Name, Binding.ServiceDescription.TargetNamespace), part.Name, rpc ? member.Namespace : null, use); 177string typeName = SchemaExporter.ExportAnyType(members[0].Namespace); 180part.Type = new XmlQualifiedName(typeName, members[0].Namespace); 205part.Element = new XmlQualifiedName(member.XsdElementName, member.Namespace);
System\Web\Services\Protocols\SoapReflector.cs (1)
384elementNamespace = soapMethod.requestMappings[0].Namespace;
System.Xml (1)
System\Xml\Serialization\XmlSchemaExporter.cs (1)
175string ns = member.Namespace;