10 instantiations of EncodedContentType
System.ServiceModel.NetFramingBase (10)
System\ServiceModel\Channels\FramingEncoders.cs (10)
136return new EncodedContentType(FramingEncodingType.BinarySession); 140return new EncodedContentType(FramingEncodingType.Binary); 144return new EncodedContentType(FramingEncodingType.Soap12Utf8); 148return new EncodedContentType(FramingEncodingType.Soap11Utf8); 152return new EncodedContentType(FramingEncodingType.Soap12Utf16); 156return new EncodedContentType(FramingEncodingType.Soap11Utf16); 160return new EncodedContentType(FramingEncodingType.Soap12Utf16FFFE); 164return new EncodedContentType(FramingEncodingType.Soap11Utf16FFFE); 168return new EncodedContentType(FramingEncodingType.MTOM); 172return new EncodedContentType(contentType);
9 references to EncodedContentType
System.ServiceModel.NetFramingBase (9)
System\ServiceModel\Channels\FramingChannels.cs (2)
165EncodedContentType encodedContentType = EncodedContentType.Create(MessageEncoder.ContentType);
System\ServiceModel\Channels\FramingEncoders.cs (5)
132public static EncodedContentType Create(string contentType) 212public static int CalcStartSize(EncodedVia via, EncodedContentType contentType) 217public static void EncodeStart(Memory<byte> buffer, EncodedVia via, EncodedContentType contentType) 346public static int CalcStartSize(EncodedVia via, EncodedContentType contentType) 351public static void EncodeStart(Memory<byte> buffer, EncodedVia via, EncodedContentType contentType)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (2)
48EncodedContentType encodedContentType = EncodedContentType.Create(_settings.MessageEncoderFactory.Encoder.ContentType);