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.
Namespace:
Google.GData.Client
Assembly:
Google.GData.Client (in Google.GData.Client.dll)
Version: 1.4.0.2
Syntax
| C# |
|---|
public void QueryFeedAync(
Uri queryUri,
DateTime ifModifiedSince,
Object userData
) |
| Visual Basic (Declaration) |
|---|
Public Sub QueryFeedAync ( _
queryUri As Uri, _
ifModifiedSince As DateTime, _
userData As Object _
) |
| Visual C++ |
|---|
public:
void QueryFeedAync(
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