Delegate StreamInterceptor
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.Http
Assembly: Google.Apis.Core.dll
Syntax
public delegate void StreamInterceptor(byte[] buffer, int offset, int count);
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | buffer | The buffer containing the data. |
System.Int32 | offset | The offset into the buffer. |
System.Int32 | count | The number of bytes being read/written. |