31 references to SoapBindingStyle
System.Web.Services.Description (31)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (26)
1438
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) !=
SoapBindingStyle
.@Default) {
1439
WriteAttribute(@"style", @"", Write79_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1444
private string Write79_SoapBindingStyle(global::System.Web.Services.Description.
SoapBindingStyle
v) {
1447
case
SoapBindingStyle
.@Document: s = @"document"; break;
1448
case
SoapBindingStyle
.@Rpc: s = @"rpc"; break;
1511
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) !=
SoapBindingStyle
.@Default) {
1512
WriteAttribute(@"style", @"", Write82_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1520
private string Write82_SoapBindingStyle(global::System.Web.Services.Description.
SoapBindingStyle
v) {
1523
case
SoapBindingStyle
.@Document: s = @"document"; break;
1524
case
SoapBindingStyle
.@Rpc: s = @"rpc"; break;
1557
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) !=
SoapBindingStyle
.@Document) {
1558
WriteAttribute(@"style", @"", Write79_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
1620
if (((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style) !=
SoapBindingStyle
.@Document) {
1621
WriteAttribute(@"style", @"", Write82_SoapBindingStyle(((global::System.Web.Services.Description.
SoapBindingStyle
)o.@Style)));
7292
private global::System.Web.Services.Description.
SoapBindingStyle
Read82_SoapBindingStyle(string s) {
7294
case @"document": return
SoapBindingStyle
.@Document;
7295
case @"rpc": return
SoapBindingStyle
.@Rpc;
7296
default: throw CreateUnknownConstantException(s, typeof(global::System.Web.Services.Description.
SoapBindingStyle
));
7364
private global::System.Web.Services.Description.
SoapBindingStyle
Read79_SoapBindingStyle(string s) {
7366
case @"document": return
SoapBindingStyle
.@Document;
7367
case @"rpc": return
SoapBindingStyle
.@Rpc;
7368
default: throw CreateUnknownConstantException(s, typeof(global::System.Web.Services.Description.
SoapBindingStyle
));
System\Web\Services\Description\SoapFormatExtensions.cs (5)
30
[XmlAttribute("style"), DefaultValue(
SoapBindingStyle
.Document)]
31
public
SoapBindingStyle
Style { get; set; } =
SoapBindingStyle
.Document;
66
[XmlAttribute("style"), DefaultValue(
SoapBindingStyle
.Default)]
67
public
SoapBindingStyle
Style { get; set; }