Takes a byte array and applies HTTP Chunked Transfer Encoding to it
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static byte[] doChunk(
byte[] writeData,
int iSuggestedChunkCount
)
Public Shared Function doChunk (
writeData As Byte(),
iSuggestedChunkCount As Integer
) As Byte()
public:
static array<unsigned char>^ doChunk(
array<unsigned char>^ writeData,
int iSuggestedChunkCount
)
Parameters
- writeData
- Type: SystemByte
The byte array to convert - iSuggestedChunkCount
- Type: SystemInt32
The number of chunks to try to create
Return Value
Type:
ByteThe byte array with Chunked Transfer Encoding applied
See Also