Click or drag to resize

KeeperEndpointExtensionsExecuteV2Command(IKeeperEndpoint, KeeperApiCommand, Type) Method

Executes JSON request.

Namespace: KeeperSecurity.Authentication
Assembly: KeeperSdk (in KeeperSdk.dll) Version: 1.0.5-beta11
Syntax
C#
public static Task<KeeperApiResponse> ExecuteV2Command(
	this IKeeperEndpoint endpoint,
	KeeperApiCommand command,
	Type responseType
)

Parameters

endpoint  IKeeperEndpoint
Keeper endpoint interface.
command  KeeperApiCommand
Keeper JSON command.
responseType  Type
Keeper JSON response type.

Return Value

TaskKeeperApiResponse
Task returning Keeper JSON response.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IKeeperEndpoint. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also