11 private readonly
byte[] data;
12 private readonly
string streamId;
13 private readonly
bool last;
14 private readonly
bool constantBuffer;
15 private readonly
object state;
31 this.response = Response;
53 public byte[]
Data => this.data;
63 public bool Last => this.last;
68 public object State => this.state;
Event arguments for HTTPX data responses.
object State
State object passed to the original request.
HttpxResponseDataEventArgs(HttpxResponseEventArgs Response, bool ConstantBuffer, byte[] Data, string StreamId, bool Last, object State)
Event arguments for HTTPX data responses.
string StreamId
Stream ID.
bool Last
If it is the last data block.
HttpxResponseEventArgs HttpxResponse
HTTPX Response.
byte[] Data
Data response, possibly partial.
bool ConstantBuffer
If the contents of the buffer remains constant (true), or if the contents in the buffer may change af...
Event arguments for HTTPX responses.