Delegate StreamInterceptor (1.60.0)

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

GoogleApisHttp

Assembly

Google.Apis.Core.dll

Parameters

Name Description
buffer byte

The buffer containing the data.

offset int

The offset into the buffer.

count int

The number of bytes being read/written.

Extension Method