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