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