the basic interface as an async version. This call will return directly
and you need to rely on the events fired to figure out what happened.
this version does not parse the response from the webserver but
provides it to you in the event
Namespace:
Google.GData.Client
Assembly:
Google.GData.Client (in Google.GData.Client.dll)
Version: 1.4.0.2
Syntax
| C# |
|---|
public void QueryStreamAync(
Uri queryUri,
DateTime ifModifiedSince,
Object userData
) |
| Visual Basic (Declaration) |
|---|
Public Sub QueryStreamAync ( _
queryUri As Uri, _
ifModifiedSince As DateTime, _
userData As Object _
) |
| Visual C++ |
|---|
public:
void QueryStreamAync(
Uri^ queryUri,
DateTime ifModifiedSince,
Object^ userData
) |
Parameters
- queryUri
- Type: System..::.Uri
the Uri to Query
- ifModifiedSince
- Type: System..::.DateTime
The ifmodifiedsince date, use DateTime.MinValue if you want everything
- userData
- Type: System..::.Object
The userData token. this must be unique if you make several async requests at once
Return Value
nothing
See Also