C# 클래스 TonyBaloney.St2.Client.Apis.ExecutionsApi

The executions API.
상속: IExecutionsApi
파일 보기 프로젝트 열기: tonybaloney/St2Client

공개 메소드들

메소드 설명
ExecuteActionAsync ( string actionName, object>.Dictionary parameters ) : Task

Executes the action.

ExecuteActionAsync ( string actionName, string>.Dictionary parameters ) : Task

Executes the action.

ExecutionsApi ( ISt2Client host ) : System

Initializes a new instance of the TonyBaloney.St2.Client.Apis.ExecutionsApi class.

GetExecutionAsync ( string id ) : Task

Gets execution.

GetExecutionsAsync ( int limit = 5 ) : Task>

Gets a list of executions.

GetExecutionsForActionAsync ( string actionName, int limit = 5 ) : Task>

Gets executions for action.

메소드 상세

ExecuteActionAsync() 공개 메소드

Executes the action.
public ExecuteActionAsync ( string actionName, object>.Dictionary parameters ) : Task
actionName string Name of the action.
parameters object>.Dictionary The parameters for the given action.
리턴 Task

ExecuteActionAsync() 공개 메소드

Executes the action.
public ExecuteActionAsync ( string actionName, string>.Dictionary parameters ) : Task
actionName string Name of the action.
parameters string>.Dictionary The parameters for the given action.
리턴 Task

ExecutionsApi() 공개 메소드

Initializes a new instance of the TonyBaloney.St2.Client.Apis.ExecutionsApi class.
Thrown when one or more required arguments are null.
public ExecutionsApi ( ISt2Client host ) : System
host ISt2Client The host.
리턴 System

GetExecutionAsync() 공개 메소드

Gets execution.
public GetExecutionAsync ( string id ) : Task
id string The identifier.
리턴 Task

GetExecutionsAsync() 공개 메소드

Gets a list of executions.
public GetExecutionsAsync ( int limit = 5 ) : Task>
limit int The number of items to return (default 5).
리턴 Task>

GetExecutionsForActionAsync() 공개 메소드

Gets executions for action.
public GetExecutionsForActionAsync ( string actionName, int limit = 5 ) : Task>
actionName string Name of the action.
limit int The number of items to return (default 5).
리턴 Task>