HttpClient.GetStreamAsync Method (String)
Sends a GET request to the specified Uri and returns the response body as a stream in an asynchronous operation.
Namespace: System.Net.Http
Assembly: System.Net.Http (in System.Net.Http.dll)
Syntax
'Declaration
Public Function GetStreamAsync ( _
requestUri As String _
) As Task(Of Stream)
'Usage
Dim instance As HttpClient
Dim requestUri As String
Dim returnValue As Task(Of Stream)
returnValue = instance.GetStreamAsync(requestUri)
public Task<Stream> GetStreamAsync(
string requestUri
)
public:
Task<Stream^>^ GetStreamAsync(
String^ requestUri
)
member GetStreamAsync :
requestUri:string -> Task<Stream>
public function GetStreamAsync(
requestUri : String
) : Task<Stream>
Parameters
- requestUri
Type: System.String
The Uri the request is sent to.
Return Value
Type: System.Threading.Tasks.Task<Stream>
The task object representing the asynchronous operation.
Remarks
This operation will not block. The returned task object will complete after the whole response body is read. This method does not buffer the stream.
For a complete example of using the HttpClient class, see Calling a Web API From a .NET Client