Udostępnij za pośrednictwem


StreamContent Konstruktory

Definicja

Tworzy nowe wystąpienie klasy StreamContent.

Przeciążenia

StreamContent(Stream)

Tworzy nowe wystąpienie klasy StreamContent.

StreamContent(Stream, Int32)

Tworzy nowe wystąpienie klasy StreamContent.

StreamContent(Stream)

Źródło:
StreamContent.cs
Źródło:
StreamContent.cs
Źródło:
StreamContent.cs

Tworzy nowe wystąpienie klasy StreamContent.

public:
 StreamContent(System::IO::Stream ^ content);
public StreamContent (System.IO.Stream content);
new System.Net.Http.StreamContent : System.IO.Stream -> System.Net.Http.StreamContent
Public Sub New (content As Stream)

Parametry

content
Stream

Zawartość używana do inicjowania obiektu StreamContent.

Uwagi

Obiekt StreamContent wywołuje Dispose() obiekt podany Stream , gdy StreamContent.Dispose jest wywoływany.

Dotyczy

StreamContent(Stream, Int32)

Źródło:
StreamContent.cs
Źródło:
StreamContent.cs
Źródło:
StreamContent.cs

Tworzy nowe wystąpienie klasy StreamContent.

public:
 StreamContent(System::IO::Stream ^ content, int bufferSize);
public StreamContent (System.IO.Stream content, int bufferSize);
new System.Net.Http.StreamContent : System.IO.Stream * int -> System.Net.Http.StreamContent
Public Sub New (content As Stream, bufferSize As Integer)

Parametry

content
Stream

Zawartość używana do inicjowania obiektu StreamContent.

bufferSize
Int32

Rozmiar w bajtach buforu dla .StreamContent

Wyjątki

Element content to null.

Wartość bufferSize była mniejsza lub równa zero.

Uwagi

Obiekt StreamContent wywołuje Dispose() obiekt podany Stream , gdy StreamContent.Dispose jest wywoływany.

Dotyczy