1 type derived from SoapBinding
dotnet-svcutil-lib (1)
FrameworkFork\System.Web.Services\Services\Description\Soap12FormatExtensions.cs (1)
15public sealed class Soap12Binding : SoapBinding
3 instantiations of SoapBinding
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (2)
236WsdlNS.SoapBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12Binding() : new WsdlNS.SoapBinding(); 478soapBinding = new WsdlNS.SoapBinding();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
7694o = new global::System.Web.Services.Description.SoapBinding();
47 references to SoapBinding
dotnet-svcutil-lib (47)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (4)
52WsdlNS.SoapBinding soapBinding = (WsdlNS.SoapBinding)context.WsdlBinding.Extensions.Find(typeof(WsdlNS.SoapBinding)); 100private static void CreateLegacyTransportBindingElement(WsdlImporter importer, WsdlNS.SoapBinding soapBinding, WsdlEndpointConversionContext context)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (3)
29WsdlNS.SoapBinding soapBinding = (WsdlNS.SoapBinding)wsdlBinding.Extensions.Find(typeof(WsdlNS.SoapBinding));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (4)
106if (ext is WsdlNS.SoapBinding 1184WsdlNS.SoapBinding soapBinding = binding.Extensions.Find(typeof(WsdlNS.SoapBinding)) as WsdlNS.SoapBinding;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (18)
58internal static WsdlNS.SoapBinding GetOrCreateSoapBinding(WsdlEndpointConversionContext endpointContext, WsdlExporter exporter) 63WsdlNS.SoapBinding existingSoapBinding = GetSoapBinding(endpointContext); 70WsdlNS.SoapBinding soapBinding = CreateSoapBinding(version, endpointContext.WsdlBinding); 153if (o is WsdlNS.SoapBinding) 220WsdlNS.SoapBinding binding = src as WsdlNS.SoapBinding; 236WsdlNS.SoapBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12Binding() : new WsdlNS.SoapBinding(); 381if (src.NamespaceURI == WsdlNS.SoapBinding.Namespace) 468private static WsdlNS.SoapBinding CreateSoapBinding(EnvelopeVersion version, WsdlNS.Binding wsdlBinding) 470WsdlNS.SoapBinding soapBinding = null; 551ns = WsdlNS.SoapBinding.Namespace; 568private static WsdlNS.SoapBinding GetSoapBinding(WsdlEndpointConversionContext endpointContext) 572if (o is WsdlNS.SoapBinding) 573return (WsdlNS.SoapBinding)o; 611WsdlNS.SoapBinding soapBinding = binding.Extensions.Find(typeof(WsdlNS.SoapBinding)) as WsdlNS.SoapBinding; 635return (element != null && element.LocalName == "fault" && (element.NamespaceURI == WsdlNS.Soap12Binding.Namespace || element.NamespaceURI == WsdlNS.SoapBinding.Namespace));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (3)
1490WsdlNS.SoapBinding soapBinding = (WsdlNS.SoapBinding)wsdlBinding.Extensions.Find(typeof(WsdlNS.SoapBinding));
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (1)
127typeof(System.Web.Services.Description.SoapBinding),
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (1)
401readerSettings.Schemas.Add(SoapBinding.Schema);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
431else if (ai is global::System.Web.Services.Description.SoapBinding) 433Write80_SoapBinding(@"binding", @"http://schemas.xmlsoap.org/wsdl/soap/", ((global::System.Web.Services.Description.SoapBinding)ai), false, false); 1647private void Write80_SoapBinding(string n, string ns, global::System.Web.Services.Description.SoapBinding o, bool isNullable, bool needType) 1657if (t == typeof(global::System.Web.Services.Description.SoapBinding)) 7679private global::System.Web.Services.Description.SoapBinding Read80_SoapBinding(bool isNullable, bool checkType) 7693global::System.Web.Services.Description.SoapBinding o;
FrameworkFork\System.Web.Services\Services\Description\SoapFormatExtensions.cs (7)
16[XmlFormatExtension("binding", SoapBinding.Namespace, typeof(Binding))] 17[XmlFormatExtensionPrefix("soap", SoapBinding.Namespace)] 78[XmlFormatExtension("operation", SoapBinding.Namespace, typeof(OperationBinding))] 102[XmlFormatExtension("body", SoapBinding.Namespace, typeof(InputBinding), typeof(OutputBinding), typeof(MimePart))] 183[XmlFormatExtension("fault", SoapBinding.Namespace, typeof(FaultBinding))] 224[XmlFormatExtension("header", SoapBinding.Namespace, typeof(InputBinding), typeof(OutputBinding))] 343[XmlFormatExtension("address", SoapBinding.Namespace, typeof(Port))]