public delegate void BatchRequest.OnResponse<in TResponse>(TResponse content, RequestError error, int index, HttpResponseMessage message) where TResponse : class
A concrete type callback for an individual response.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["This webpage provides documentation for the `BatchRequest.OnResponse` delegate within the `Google.Apis.Requests` namespace, showing the method signature and parameter details."],["`BatchRequest.OnResponse` is a callback delegate used for handling individual responses in a batch request, and its type parameter `TResponse` specifies the response type."],["The delegate receives four parameters: `content` (the parsed response), `error` (any request error), `index` (the request's index), and `message` (the raw HTTP response)."],["The parameter `content` within `BatchRequest.OnResponse` can be null if the request fails or the response cannot be parsed, and error can also be null if the request succeeds and the content was parsed successfully."],["The documentation also provides links to previous versions of the `BatchRequest.OnResponse` delegate, as well as a link to the extension method `Utilities.ThrowIfNull\u003cT\u003e(T, string)`."]]],[]]