GetRequestStream abstract method

Future<StreamConsumer<List<int>>> GetRequestStream()
Begins an asynchronous request for a The

Implementation

//        IAsyncResult BeginGetRequestStream(AsyncCallback callback, Object state);

/// <summary>
/// Begins an asynchronous request to an Internet resource.
/// </summary>
/// <param name="callback">The <see cref="T:System.AsyncCallback"/> delegate</param>
/// <param name="state">The state object for this request.</param>
/// <returns>
/// An <see cref="T:System.IAsyncResult"/> that references the asynchronous request for a response.
/// </returns>
//        IAsyncResult BeginGetResponse(AsyncCallback callback, Object state);

/// <summary>
/// Ends an asynchronous request for a <see cref="T:System.IO.Stream"/> object to use to write data.
/// </summary>
/// <param name="asyncResult">The pending request for a stream.</param>
/// <returns>
/// A <see cref="T:System.IO.Stream"/> to use to write request data.
/// </returns>
//        Stream EndGetRequestStream(IAsyncResult asyncResult);

/// <summary>
/// Ends an asynchronous request to an Internet resource.
/// </summary>
/// <param name="asyncResult">The pending request for a response.</param>
/// <returns>
/// A <see cref="T:System.Net.WebResponse"/> that contains the response from the Internet resource.
/// </returns>
//        IEwsHttpWebResponse EndGetResponse(IAsyncResult asyncResult);

/// <summary>
/// Gets a <see cref="T:System.IO.Stream"/> object to use to write request data.
/// </summary>
/// <returns>
/// A <see cref="T:System.IO.Stream"/> to use to write request data.
/// </returns>
Future<StreamConsumer<List<int>>> GetRequestStream();