6 references to SessionContentType
System.ServiceModel (6)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (3)
429
this.normalContentType = isSession ? factory.binaryVersion.
SessionContentType
: factory.binaryVersion.ContentType;
430
this.gzipCompressedContentType = isSession ? BinaryVersion.GZipVersion1.
SessionContentType
: BinaryVersion.GZipVersion1.ContentType;
431
this.deflateCompressedContentType = isSession ? BinaryVersion.DeflateVersion1.
SessionContentType
: BinaryVersion.DeflateVersion1.ContentType;
System\ServiceModel\Channels\HttpChannelHelpers.cs (3)
3923
(isSession = string.Equals(BinaryVersion.GZipVersion1.
SessionContentType
, contentType, StringComparison.OrdinalIgnoreCase)) ||
3925
(isSession = string.Equals(BinaryVersion.DeflateVersion1.
SessionContentType
, contentType, StringComparison.OrdinalIgnoreCase)))))
3927
contentType = isSession ? BinaryVersion.Version1.
SessionContentType
: BinaryVersion.Version1.ContentType;