10 instantiations of EncodedContentType
System.ServiceModel (10)
System\ServiceModel\Channels\FramingEncoders.cs (10)
126return new EncodedContentType(FramingEncodingType.BinarySession); 130return new EncodedContentType(FramingEncodingType.Binary); 134return new EncodedContentType(FramingEncodingType.Soap12Utf8); 138return new EncodedContentType(FramingEncodingType.Soap11Utf8); 142return new EncodedContentType(FramingEncodingType.Soap12Utf16); 146return new EncodedContentType(FramingEncodingType.Soap11Utf16); 150return new EncodedContentType(FramingEncodingType.Soap12Utf16FFFE); 154return new EncodedContentType(FramingEncodingType.Soap11Utf16FFFE); 158return new EncodedContentType(FramingEncodingType.MTOM); 162return new EncodedContentType(contentType);
15 references to EncodedContentType
System.ServiceModel (15)
System\ServiceModel\Channels\FramingChannels.cs (2)
205EncodedContentType encodedContentType = EncodedContentType.Create(this.MessageEncoder.ContentType);
System\ServiceModel\Channels\FramingEncoders.cs (7)
122public static EncodedContentType Create(string contentType) 206public static int CalcStartSize(EncodedVia via, EncodedContentType contentType) 211public static void EncodeStart(byte[] buffer, int offset, EncodedVia via, EncodedContentType contentType) 340public static int CalcStartSize(EncodedVia via, EncodedContentType contentType) 345public static void EncodeStart(byte[] buffer, int offset, EncodedVia via, EncodedContentType contentType) 376public static int CalcStartSize(EncodedVia via, EncodedContentType contentType) 381public static void EncodeStart(byte[] buffer, int offset, EncodedVia via, EncodedContentType contentType)
System\ServiceModel\Channels\MsmqOutputChannel.cs (2)
26EncodedContentType encodedContentType = EncodedContentType.Create(factory.MessageEncoderFactory.Encoder.ContentType);
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (2)
228EncodedContentType encodedContentType = EncodedContentType.Create(this.encoder.ContentType);
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (2)
58EncodedContentType encodedContentType = EncodedContentType.Create(settings.MessageEncoderFactory.Encoder.ContentType);