DataServiceClientRequestMessage.BeginGetRequestStream Method
Begins an asynchronous request for a System.IO.Stream object to use to write data.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Public MustOverride Function BeginGetRequestStream ( _
callback As AsyncCallback, _
state As Object _
) As IAsyncResult
'Usage
Dim instance As DataServiceClientRequestMessage
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
returnValue = instance.BeginGetRequestStream(callback, _
state)
public abstract IAsyncResult BeginGetRequestStream(
AsyncCallback callback,
Object state
)
public:
virtual IAsyncResult^ BeginGetRequestStream(
AsyncCallback^ callback,
Object^ state
) abstract
abstract BeginGetRequestStream :
callback:AsyncCallback *
state:Object -> IAsyncResult
public abstract function BeginGetRequestStream(
callback : AsyncCallback,
state : Object
) : IAsyncResult
Parameters
- callback
Type: System.AsyncCallback
The System.AsyncCallback delegate.
- state
Type: System.Object
The state object for this request.
Return Value
Type: System.IAsyncResult
An System.IAsyncResult that references the asynchronous request.