System\ServiceModel\Channels\FramingEncoders.cs (23)
54internal EncodedFramingRecord(FramingRecordType recordType, string value)
123base(new byte[] { (byte)FramingRecordType.KnownEncoding, (byte)encodingType })
128: base(FramingRecordType.ExtensibleEncoding, contentType)
180: base(FramingRecordType.Via, via)
188: base(FramingRecordType.UpgradeRequest, contentType)
196: base(FramingRecordType.Fault, fault)
208public static ReadOnlyMemory<byte> PreambleEndBytes = new byte[] { (byte)FramingRecordType.PreambleEnd };
210public static ReadOnlyMemory<byte> EndBytes = new byte[] { (byte)FramingRecordType.End };
234buffer[offset++] = (byte)FramingRecordType.SizedEnvelope;
246(byte)FramingRecordType.PreambleAck
249(byte)FramingRecordType.UpgradeResponse
264(byte)FramingRecordType.Version,
267(byte)FramingRecordType.Mode,
282(byte)FramingRecordType.Version,
285(byte)FramingRecordType.Mode,
297(byte)FramingRecordType.UnsizedEnvelope };
303(byte)0, (byte)FramingRecordType.End };
306(byte)FramingRecordType.End };
336(byte)FramingRecordType.PreambleEnd
340(byte)FramingRecordType.Version,
343(byte)FramingRecordType.Mode,
365(byte)FramingRecordType.PreambleAck
369(byte)FramingRecordType.UpgradeResponse