19 references to Soap12
System.Web.Services (19)
System\Web\Services\Description\SoapHttpTransportImporter.cs (1)
28
CodeFieldReferenceExpression versionEnumFieldReference = new CodeFieldReferenceExpression(versionEnumTypeReference, Enum.Format(typeof(SoapProtocolVersion), SoapProtocolVersion.
Soap12
, "G"));
System\Web\Services\Protocols\Soap12ServerProtocol.cs (1)
29
get { return SoapProtocolVersion.
Soap12
; }
System\Web\Services\Protocols\SoapClientProtocol.cs (7)
265
Encoding enc = message.SoapVersion == SoapProtocolVersion.
Soap12
? RequestResponseUtils.GetEncoding2(message.ContentType) : RequestResponseUtils.GetEncoding(message.ContentType);
486
return this.version == SoapProtocolVersion.
Soap12
? Soap12.Namespace : Soap.Namespace;
492
return this.version == SoapProtocolVersion.
Soap12
? Soap12.Encoding : Soap.Encoding;
498
return this.version == SoapProtocolVersion.
Soap12
? ContentType.ApplicationSoap : ContentType.TextXml;
520
if (this.version == SoapProtocolVersion.
Soap12
)
534
if (this.version != SoapProtocolVersion.
Soap12
&& request.Headers[Soap.Action] == null) {
570
if (isEncoded && version != SoapProtocolVersion.
Soap12
) // don't write encodingStyle on soap:Body for soap 1.2
System\Web\Services\Protocols\SoapException.cs (1)
295
soapVersion == SoapProtocolVersion.
Soap12
System\Web\Services\Protocols\SoapHeader.cs (3)
43
get { return version != SoapProtocolVersion.
Soap12
&& MustUnderstand ? "1" : "0"; }
92
get { return version != SoapProtocolVersion.
Soap12
? InternalActor : ""; }
297
version = SoapProtocolVersion.
Soap12
;
System\Web\Services\Protocols\SoapServerProtocol.cs (5)
610
bool checkRequiredHeaders = (this.serverMethod.wsiClaims & WsiProfiles.BasicProfile1_1) != 0 && version != SoapProtocolVersion.
Soap12
;
697
if (serverMethod.rpc && version == SoapProtocolVersion.
Soap12
) {
704
if (isEncoded && version != SoapProtocolVersion.
Soap12
) // don't write encodingStyle on soap:Body for soap 1.2
730
else if (serverMethod != null && serverMethod.rpc && helper.Version == SoapProtocolVersion.
Soap12
&& e is ArgumentException)
860
bool checkEncoding = serverMethod != null && (serverMethod.wsiClaims & WsiProfiles.BasicProfile1_1) != 0 && Version != SoapProtocolVersion.
Soap12
;
System\Web\Services\Protocols\SoapUnknownHeader.cs (1)
33
if (version == SoapProtocolVersion.
Soap12
) {