Beispiel #1
0
 private ChunkedReplicatedContent(sbyte contentType, ChunkedInput <ByteBuf> byteBufAwareMarshal)
 {
     this._byteBufAwareMarshal = byteBufAwareMarshal;
     this._contentType         = contentType;
 }
Beispiel #2
0
 internal static ChunkedInput <ByteBuf> Chunked(sbyte contentType, ChunkedInput <ByteBuf> chunkedInput)
 {
     return(new ChunkedReplicatedContent(contentType, chunkedInput));
 }