Class DataEventArgs
Wraps the data sent/received event argument.
Inherited Members
Namespace: Titanium.Web.Proxy.StreamExtended.Network
Assembly: Titanium.Web.Proxy.dll
Syntax
public class DataEventArgs : EventArgs
Constructors
| Edit this page View SourceDataEventArgs(byte[], int, int)
Declaration
public DataEventArgs(byte[] buffer, int offset, int count)
Parameters
| Type | Name | Description |
|---|---|---|
| byte[] | buffer | |
| int | offset | |
| int | count |
Properties
| Edit this page View SourceBuffer
The buffer with data.
Declaration
public byte[] Buffer { get; }
Property Value
| Type | Description |
|---|---|
| byte[] |
Count
Length from offset in buffer with valid data.
Declaration
public int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
Offset
Offset in buffer from which valid data begins.
Declaration
public int Offset { get; }
Property Value
| Type | Description |
|---|---|
| int |