StreamingResponse.AddStream(HttpContent) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.