46 references to SoapBindingStyle
dotnet-svcutil-lib (46)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (6)
1179
private static WsdlNS.
SoapBindingStyle
GetStyle(WsdlNS.Binding binding)
1181
WsdlNS.
SoapBindingStyle
style = WsdlNS.
SoapBindingStyle
.Default;
1193
WsdlNS.
SoapBindingStyle
style = GetStyle(operationBinding.Binding);
1199
if (soapOperationBinding.Style != WsdlNS.
SoapBindingStyle
.Default)
1203
return (style == WsdlNS.
SoapBindingStyle
.Rpc) ? OperationFormatStyle.Rpc : OperationFormatStyle.Document;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (7)
606
internal static WsdlNS.
SoapBindingStyle
GetStyle(WsdlNS.Binding binding)
608
WsdlNS.
SoapBindingStyle
style = WsdlNS.
SoapBindingStyle
.Default;
618
internal static WsdlNS.
SoapBindingStyle
GetStyle(WsdlNS.OperationBinding operationBinding, WsdlNS.
SoapBindingStyle
defaultBindingStyle)
620
WsdlNS.
SoapBindingStyle
style = defaultBindingStyle;
626
if (soapOperationBinding.Style != WsdlNS.
SoapBindingStyle
.Default)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (26)
1552
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) != global::System.Web.Services.Description.
SoapBindingStyle
.@Default)
1554
WriteAttribute(@"style", @"", Write79_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1559
private string Write79_SoapBindingStyle(global::System.Web.Services.Description.
SoapBindingStyle
v)
1564
case global::System.Web.Services.Description.
SoapBindingStyle
.@Document: s = @"document"; break;
1565
case global::System.Web.Services.Description.
SoapBindingStyle
.@Rpc: s = @"rpc"; break;
1624
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) != global::System.Web.Services.Description.
SoapBindingStyle
.@Default)
1626
WriteAttribute(@"style", @"", Write82_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1635
private string Write82_SoapBindingStyle(global::System.Web.Services.Description.
SoapBindingStyle
v)
1640
case global::System.Web.Services.Description.
SoapBindingStyle
.@Document: s = @"document"; break;
1641
case global::System.Web.Services.Description.
SoapBindingStyle
.@Rpc: s = @"rpc"; break;
1672
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) != global::System.Web.Services.Description.
SoapBindingStyle
.@Document)
1674
WriteAttribute(@"style", @"", Write79_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1732
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) != global::System.Web.Services.Description.
SoapBindingStyle
.@Document)
1734
WriteAttribute(@"style", @"", Write82_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
7466
private global::System.Web.Services.Description.
SoapBindingStyle
Read82_SoapBindingStyle(string s)
7470
case @"document": return global::System.Web.Services.Description.
SoapBindingStyle
.@Document;
7471
case @"rpc": return global::System.Web.Services.Description.
SoapBindingStyle
.@Rpc;
7472
default: throw CreateUnknownConstantException(s, typeof(global::System.Web.Services.Description.
SoapBindingStyle
));
7542
private global::System.Web.Services.Description.
SoapBindingStyle
Read79_SoapBindingStyle(string s)
7546
case @"document": return global::System.Web.Services.Description.
SoapBindingStyle
.@Document;
7547
case @"rpc": return global::System.Web.Services.Description.
SoapBindingStyle
.@Rpc;
7548
default: throw CreateUnknownConstantException(s, typeof(global::System.Web.Services.Description.
SoapBindingStyle
));
FrameworkFork\System.Web.Services\Services\Description\SoapFormatExtensions.cs (7)
21
private
SoapBindingStyle
_style =
SoapBindingStyle
.Document;
39
[XmlAttribute("style"), DefaultValue(
SoapBindingStyle
.Document)]
40
public
SoapBindingStyle
Style
82
private
SoapBindingStyle
_style;
93
[XmlAttribute("style"), DefaultValue(
SoapBindingStyle
.Default)]
94
public
SoapBindingStyle
Style