StreamingRequest.AddStream 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.
Overloads
AddStream(HttpContent) |
Adds a new stream attachment to this StreamingRequest. |
AddStream(HttpContent, Guid) |
Adds a new stream attachment to this StreamingRequest. |
AddStream(HttpContent)
- Source:
- StreamingRequest.cs
Adds a new stream attachment to this StreamingRequest.
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
The HttpContent to include in the new stream attachment.
Applies to
AddStream(HttpContent, Guid)
- Source:
- StreamingRequest.cs
Adds a new stream attachment to this StreamingRequest.
public void AddStream (System.Net.Http.HttpContent content, Guid streamId);
member this.AddStream : System.Net.Http.HttpContent * Guid -> unit
Public Sub AddStream (content As HttpContent, streamId As Guid)
Parameters
- content
- HttpContent
The HttpContent to include in the new stream attachment.
- streamId
- Guid
The id to assign to this stream attachment.