19 references to Literal
System.ServiceModel (6)
System\ServiceModel\Description\MessageContractExporter.cs (2)
723bodyBinding.Use = isEncoded ? WsdlNS.SoapBindingUse.Encoded : WsdlNS.SoapBindingUse.Literal; 743headerBinding.Use = isEncoded ? WsdlNS.SoapBindingUse.Encoded : WsdlNS.SoapBindingUse.Literal;
System\ServiceModel\Description\MessageContractImporter.cs (4)
1125else if (body.Use == WsdlNS.SoapBindingUse.Literal) 1136else if (header.Use == WsdlNS.SoapBindingUse.Literal) 1152else if (body.Use == WsdlNS.SoapBindingUse.Literal) 1166else if (header.Use == WsdlNS.SoapBindingUse.Literal)
System.Web.Services (13)
System\Web\Services\Description\ServiceDescriptionImporter.cs (4)
353else if (body.Use == SoapBindingUse.Literal) 362else if (header.Use == SoapBindingUse.Literal) 374else if (body.Use == SoapBindingUse.Literal) 386else if (header.Use == SoapBindingUse.Literal)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (4)
543case global::System.Web.Services.Description.SoapBindingUse.@Literal: s = @"literal"; break; 582case global::System.Web.Services.Description.SoapBindingUse.@Literal: s = @"literal"; break; 4819case @"literal": return global::System.Web.Services.Description.SoapBindingUse.@Literal; 4889case @"literal": return global::System.Web.Services.Description.SoapBindingUse.@Literal;
System\Web\Services\Description\SoapProtocolImporter.cs (3)
710bool wrapperNamesMatter = (soapBindingStyle != SoapBindingStyle.Rpc && hasWrapper) || (soapRequestBinding.Use == SoapBindingUse.Literal && soapBindingStyle == SoapBindingStyle.Rpc); 1020soapBodyBinding.Use = SoapBindingUse.Literal; 1022if (soapBodyBinding.Use == SoapBindingUse.Literal) {
System\Web\Services\Description\SoapProtocolReflector.cs (1)
211messageBinding.Extensions.Add(CreateSoapBodyBinding(SoapBindingUse.Literal, rpc ? members.Namespace : null));
System\Web\Services\Protocols\SoapReflector.cs (1)
290soapMethod.use = SoapBindingUse.Literal;