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