4 instantiations of Soap12Binding
System.ServiceModel (2)
System\ServiceModel\Description\SoapHelper.cs (2)
238WsdlNS.SoapBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12Binding() : new WsdlNS.SoapBinding(); 477soapBinding = new WsdlNS.Soap12Binding();
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
6106o = new global::System.Web.Services.Description.Soap12Binding();
System\Web\Services\Description\Soap12ProtocolReflector.cs (1)
77Soap12Binding soapBinding = new Soap12Binding();
24 references to Soap12Binding
System.ServiceModel (5)
System\ServiceModel\Description\SoapHelper.cs (5)
154return o is WsdlNS.Soap12Binding ? EnvelopeVersion.Soap12 : EnvelopeVersion.Soap11; 228else if (GetBindingVersion<WsdlNS.Soap12Binding>(src) == version) 378if (src.NamespaceURI == WsdlNS.Soap12Binding.Namespace) 549ns = WsdlNS.Soap12Binding.Namespace; 638return (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)
501typeof(Soap12Binding),
System\Web\Services\Description\ServiceDescriptionSerializer.cs (6)
331if (ai is global::System.Web.Services.Description.Soap12Binding) { 332Write84_Soap12Binding(@"binding", @"http://schemas.xmlsoap.org/wsdl/soap12/", ((global::System.Web.Services.Description.Soap12Binding)ai), false, false); 1336void Write84_Soap12Binding(string n, string ns, global::System.Web.Services.Description.Soap12Binding o, bool isNullable, bool needType) { 1343if (t == typeof(global::System.Web.Services.Description.Soap12Binding)) { 6094global::System.Web.Services.Description.Soap12Binding Read84_Soap12Binding(bool isNullable, bool checkType) { 6105global::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)
33Soap12Binding soapBinding = (Soap12Binding)Binding.Extensions.Find(typeof(Soap12Binding));
System\Web\Services\Description\Soap12ProtocolReflector.cs (2)
77Soap12Binding soapBinding = new Soap12Binding(); 78soapBinding.Transport = Soap12Binding.HttpTransport;