public delegate void StreamInterceptor(byte[] buffer, int offset, int count)A delegate used to intercept stream data without modifying it. The parameters should always be validated before the delegate is called, so the delegate itself does not need to validate them again.
Namespace
Google.Apis.HttpAssembly
Google.Apis.Core.dll
Parameters |
|
|---|---|
| Name | Description |
buffer |
System.ByteThe buffer containing the data. |
offset |
intThe offset into the buffer. |
count |
intThe number of bytes being read/written. |