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."],[[["This webpage details the `StreamInterceptor` delegate within the `Google.Apis.Http` namespace, used for intercepting stream data."],["The `StreamInterceptor` delegate accepts three parameters: `buffer` (a byte array), `offset` (an integer), and `count` (an integer), representing the data, the starting position, and the number of bytes being read/written respectively."],["The delegate is designed to intercept data without needing to perform parameter validation, as this is done prior to calling the delegate."],["The information on the page is shown for a range of versions from 1.50.0 to 1.69.0, with the latest version being 1.69.0."]]],[]]