StreamingResponse.AddStream(HttpContent) Method

Definition

Adds a new stream to the passed in StreamingResponse containing the passed in content. Throws ArgumentNullException if content is null.

public void AddStream (System.Net.Http.HttpContent content);
member this.AddStream : System.Net.Http.HttpContent -> unit
Public Sub AddStream (content As HttpContent)

Parameters

content
HttpContent

An HttpContent instance containing the data to insert into the stream.

Applies to