namespace Google.Apis.Http { /// /// 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. /// /// The buffer containing the data. /// The offset into the buffer. /// The number of bytes being read/written. public delegate void StreamInterceptor(byte[] buffer, int offset, int count); }