4 instantiations of Soap12Binding
System.ServiceModel (2)
System\ServiceModel\Description\SoapHelper.cs (2)
238
WsdlNS.SoapBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.
Soap12Binding
() : new WsdlNS.SoapBinding();
477
soapBinding = new WsdlNS.
Soap12Binding
();
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
6106
o = new global::System.Web.Services.Description.
Soap12Binding
();
System\Web\Services\Description\Soap12ProtocolReflector.cs (1)
77
Soap12Binding soapBinding = new
Soap12Binding
();
24 references to Soap12Binding
System.ServiceModel (5)
System\ServiceModel\Description\SoapHelper.cs (5)
154
return o is WsdlNS.
Soap12Binding
? EnvelopeVersion.Soap12 : EnvelopeVersion.Soap11;
228
else if (GetBindingVersion<WsdlNS.
Soap12Binding
>(src) == version)
378
if (src.NamespaceURI == WsdlNS.
Soap12Binding
.Namespace)
549
ns = WsdlNS.
Soap12Binding
.Namespace;
638
return (element != null && element.LocalName == "fault" && (element.NamespaceURI == WsdlNS.
Soap12Binding
.Namespace || element.NamespaceURI == WsdlNS.SoapBinding.Namespace));
System.Web.Services (19)
System\Web\Services\Configuration\WebServicesSection.cs (1)
501
typeof(
Soap12Binding
),
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
331
if (ai is global::System.Web.Services.Description.
Soap12Binding
) {
332
Write84_Soap12Binding(@"binding", @"http://schemas.xmlsoap.org/wsdl/soap12/", ((global::System.Web.Services.Description.
Soap12Binding
)ai), false, false);
1336
void Write84_Soap12Binding(string n, string ns, global::System.Web.Services.Description.
Soap12Binding
o, bool isNullable, bool needType) {
1343
if (t == typeof(global::System.Web.Services.Description.
Soap12Binding
)) {
6094
global::System.Web.Services.Description.
Soap12Binding
Read84_Soap12Binding(bool isNullable, bool checkType) {
6105
global::System.Web.Services.Description.
Soap12Binding
o;
System\Web\Services\Description\Soap12FormatExtensions.cs (7)
16
[XmlFormatExtension("binding",
Soap12Binding
.Namespace, typeof(Binding))]
17
[XmlFormatExtensionPrefix("soap12",
Soap12Binding
.Namespace)]
27
[XmlFormatExtension("operation",
Soap12Binding
.Namespace, typeof(OperationBinding))]
59
[XmlFormatExtension("body",
Soap12Binding
.Namespace, typeof(InputBinding), typeof(OutputBinding), typeof(MimePart))]
64
[XmlFormatExtension("fault",
Soap12Binding
.Namespace, typeof(FaultBinding))]
69
[XmlFormatExtension("header",
Soap12Binding
.Namespace, typeof(InputBinding), typeof(OutputBinding))]
74
[XmlFormatExtension("address",
Soap12Binding
.Namespace, typeof(Port))]
System\Web\Services\Description\Soap12ProtocolImporter.cs (3)
33
Soap12Binding
soapBinding = (
Soap12Binding
)Binding.Extensions.Find(typeof(
Soap12Binding
));
System\Web\Services\Description\Soap12ProtocolReflector.cs (2)
77
Soap12Binding
soapBinding = new Soap12Binding();
78
soapBinding.Transport =
Soap12Binding
.HttpTransport;