1 type derived from SoapAddressBinding
dotnet-svcutil-lib (1)
FrameworkFork\System.Web.Services\Services\Description\Soap12FormatExtensions.cs (1)
58
public sealed class Soap12AddressBinding :
SoapAddressBinding
3 instantiations of SoapAddressBinding
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (2)
266
WsdlNS.SoapAddressBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12AddressBinding() : new WsdlNS.
SoapAddressBinding
();
459
soapAddressBinding = new WsdlNS.
SoapAddressBinding
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
5569
o = new global::System.Web.Services.Description.
SoapAddressBinding
();
22 references to SoapAddressBinding
dotnet-svcutil-lib (22)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (11)
43
internal static WsdlNS.
SoapAddressBinding
GetOrCreateSoapAddressBinding(WsdlNS.Binding wsdlBinding, WsdlNS.Port wsdlPort, WsdlExporter exporter)
48
WsdlNS.
SoapAddressBinding
existingSoapAddressBinding = GetSoapAddressBinding(wsdlPort);
54
WsdlNS.
SoapAddressBinding
soapAddressBinding = CreateSoapAddressBinding(version, wsdlPort);
250
WsdlNS.
SoapAddressBinding
binding = src as WsdlNS.
SoapAddressBinding
;
266
WsdlNS.
SoapAddressBinding
dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12AddressBinding() : new WsdlNS.SoapAddressBinding();
449
private static WsdlNS.
SoapAddressBinding
CreateSoapAddressBinding(EnvelopeVersion version, WsdlNS.Port wsdlPort)
451
WsdlNS.
SoapAddressBinding
soapAddressBinding = null;
559
internal static WsdlNS.
SoapAddressBinding
GetSoapAddressBinding(WsdlNS.Port wsdlPort)
563
if (o is WsdlNS.
SoapAddressBinding
)
564
return (WsdlNS.
SoapAddressBinding
)o;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
354
WsdlNS.
SoapAddressBinding
addressBinding = SoapHelper.GetOrCreateSoapAddressBinding(wsdlBinding, wsdlPort, this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (3)
1079
WsdlNS.
SoapAddressBinding
soapAddressBinding = (WsdlNS.
SoapAddressBinding
)wsdlPort.Extensions.Find(typeof(WsdlNS.
SoapAddressBinding
));
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (1)
132
typeof(
SoapAddressBinding
),
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
260
else if (ai is global::System.Web.Services.Description.
SoapAddressBinding
)
262
Write119_SoapAddressBinding(@"address", @"http://schemas.xmlsoap.org/wsdl/soap/", ((global::System.Web.Services.Description.
SoapAddressBinding
)ai), false, false);
290
private void Write119_SoapAddressBinding(string n, string ns, global::System.Web.Services.Description.
SoapAddressBinding
o, bool isNullable, bool needType)
300
if (t == typeof(global::System.Web.Services.Description.
SoapAddressBinding
))
5554
private global::System.Web.Services.Description.
SoapAddressBinding
Read119_SoapAddressBinding(bool isNullable, bool checkType)
5568
global::System.Web.Services.Description.
SoapAddressBinding
o;