Share via


StreamingRequest.AddStream Method

Definition

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.

Applies to