GetChildAsync Method
Overloads
| GetChildAsync(AsyncHandle, String) |
Returns the type of the object and the corresponding handle. |
|
| GetChildAsync(String) |
Returns the type of the object and the corresponding handle. |
|
| GetChildAsync<T>(AsyncHandle, Func<Response, T>, String) |
Returns the type of the object and the corresponding handle. |
GetChildAsync(AsyncHandle, String)
Returns the type of the object and the corresponding handle.
Declaration
public Task<GenericObject> GetChildAsync(AsyncHandle asyncHandle, [QixName("qId")] string id)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.String | id |
Identifier of the object. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<GenericObject> |
Implements
GetChildAsync(String)
Returns the type of the object and the corresponding handle.
Declaration
public Task<GenericObject> GetChildAsync([QixName("qId")] string id)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | id |
Identifier of the object. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<GenericObject> |
Implements
GetChildAsync<T>(AsyncHandle, Func<Response, T>, String)
Returns the type of the object and the corresponding handle.
Declaration
public Task<T> GetChildAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qId")] string id)
Parameters
| Type | Name | Description |
|---|---|---|
| AsyncHandle | asyncHandle |
Handle to asynchronous method request |
| System.Func<Response, T> | onResult |
Continuation function |
| System.String | id |
Identifier of the object. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
Type Parameters
| Name | Description |
|---|---|
| T |