6 writes to Style
System.ServiceModel (2)
System\ServiceModel\Description\MessageContractExporter.cs (1)
677soapOperationBinding.Style = isRpc ? WsdlNS.SoapBindingStyle.Rpc : WsdlNS.SoapBindingStyle.Document;
System\ServiceModel\Description\SoapHelper.cs (1)
303dest.Style = binding.Style;
System.Web.Services (4)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
5940o.@Style = Read82_SoapBindingStyle(Reader.Value); 6006o.@Style = Read79_SoapBindingStyle(Reader.Value);
System\Web\Services\Description\Soap12ProtocolReflector.cs (1)
99soapOperation.Style = style;
System\Web\Services\Description\SoapProtocolReflector.cs (1)
294soapOperation.Style = style;
15 references to Style
System.ServiceModel (6)
System\ServiceModel\Description\MessageContractExporter.cs (1)
681soapBinding.Style = soapOperationBinding.Style;
System\ServiceModel\Description\MessageContractImporter.cs (2)
1211if (soapOperationBinding.Style != WsdlNS.SoapBindingStyle.Default) 1212style = soapOperationBinding.Style;
System\ServiceModel\Description\SoapHelper.cs (3)
303dest.Style = binding.Style; 629if (soapOperationBinding.Style != WsdlNS.SoapBindingStyle.Default) 630style = soapOperationBinding.Style;
System.Web.Services (9)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (4)
1213if (((global::System.Web.Services.Description.SoapBindingStyle)o.@Style) != global::System.Web.Services.Description.SoapBindingStyle.@Default) { 1214WriteAttribute(@"style", @"", Write79_SoapBindingStyle(((global::System.Web.Services.Description.SoapBindingStyle)o.@Style))); 1270if (((global::System.Web.Services.Description.SoapBindingStyle)o.@Style) != global::System.Web.Services.Description.SoapBindingStyle.@Default) { 1271WriteAttribute(@"style", @"", Write82_SoapBindingStyle(((global::System.Web.Services.Description.SoapBindingStyle)o.@Style)));
System\Web\Services\Description\SoapProtocolImporter.cs (1)
642SoapBindingStyle soapBindingStyle = soapOperationBinding.Style;
System\Web\Services\Description\WebServicesInteroperability.cs (4)
156style = soapOpBinding.Style; 157inconsistentStyle |= (style != soapOpBinding.Style); 158opStyle = soapOpBinding.Style != SoapBindingStyle.Default ? soapOpBinding.Style : bindingStyle;