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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 UTC."],[[["The `StreamInterceptor` delegate intercepts stream data without altering it, using a byte array buffer, offset, and count to specify the data location and size."],["It is a delegate within the `Google.Apis.Http` namespace, found in the `Google.Apis.Core.dll` assembly."],["The latest version of `StreamInterceptor` is `1.69.0`."],["The delegate's parameters are validated prior to invocation, eliminating the need for validation within the delegate itself."],["The parameters it utilizes include a byte array buffer, an integer offset, and an integer count, which are used to define the data and its position."]]],[]]