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

NameDescription
bufferbyte

The buffer containing the data.

offsetint

The offset into the buffer.

countint

The number of bytes being read/written.

Extension Method