You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates a <see cref="Stream"/> that can be used to write streaming responses back to callers of the Lambda function. Once
34
+
/// Creates a <see cref="LambdaResponseStream"/> a subclass of <see cref="Stream"/> that can be used to write streaming responses back to callers of the Lambda function. Once
35
35
/// a Lambda function creates a response stream all output must be returned by writing to the stream; the Lambda function's handler
36
36
/// return value will be ignored. The stream is write-only and non-seekable.
@@ -46,7 +46,7 @@ public static Stream CreateStream()
46
46
}
47
47
48
48
/// <summary>
49
-
/// Create a <see cref="Stream"/> for writing streaming responses, with an HTTP response prelude containing status code and headers. This should be used for
49
+
/// Creates a <see cref="LambdaResponseStream"/> a subclass of <see cref="Stream"/> for writing streaming responses, with an HTTP response prelude containing status code and headers. This should be used for
50
50
/// Lambda functions using response streaming that are invoked via the Lambda Function URLs or API Gateway HTTP APIs, where the response format is expected to be an HTTP response.
51
51
/// The prelude will be serialized and sent as the first chunk of the response stream, and should contain any necessary HTTP status code and headers.
52
52
/// <para>
@@ -56,7 +56,7 @@ public static Stream CreateStream()
56
56
/// </summary>
57
57
/// <param name="prelude">The HTTP response prelude including status code and headers.</param>
0 commit comments