IWebApiAccess ExecuteCommand TResultEntity  Method CkSoftware GroupMe SDK - Documentation
Executes the given command asynchronousely and returns an awaitable task containing the expected result.

Namespace: CkSoftware.GroupMe.Sdk.Core
Assembly: CkSoftware.GroupMe.Sdk.Core (in CkSoftware.GroupMe.Sdk.Core.dll) Version: 1.0.1.35397 (1.0.1.0)
Syntax

Task<TResultEntity> ExecuteCommand<TResultEntity>(
	IWebApiCommand<TResultEntity> command
)
where TResultEntity : new(), IWebApiResult

Parameters

command
Type: CkSoftware.GroupMe.Sdk.Core IWebApiCommand TResultEntity 
The command to execute.
Type Parameters

TResultEntity
Result entity which will be deserialized from the WebApi / REST service.

Return Value

Type: Task TResultEntity 
Awaitable task returning the given result entity.
See Also