C# Class BuildIt.CognitiveServices.Models.OperationResult

Datei anzeigen Open project: builttoroam/BuildIt

Private Properties

Property Type Description

Public Methods

Method Description
OperationResult ( ) : System.Linq

Initializes a new instance of the OperationResult class.

OperationResult ( string status = default(string), System createdDateTime = default(System.DateTime?), System lastActionDateTime = default(System.DateTime?), string operationType = default(string), OperationProcessingResult operationProcessingResult = default(OperationProcessingResult), string message = default(string) ) : System.Linq

Initializes a new instance of the OperationResult class.

Method Details

OperationResult() public method

Initializes a new instance of the OperationResult class.
public OperationResult ( ) : System.Linq
return System.Linq

OperationResult() public method

Initializes a new instance of the OperationResult class.
public OperationResult ( string status = default(string), System createdDateTime = default(System.DateTime?), System lastActionDateTime = default(System.DateTime?), string operationType = default(string), OperationProcessingResult operationProcessingResult = default(OperationProcessingResult), string message = default(string) ) : System.Linq
status string Operation status. Possible values include: /// 'notStarted', 'running', 'failed', 'cancelled', /// 'succeeded'
createdDateTime System Operation creation date time (ISO /// 8601 literal).
lastActionDateTime System Operation last status change date /// time (ISO 8601 literal).
operationType string Name of API endpoint that created the /// operation.
operationProcessingResult OperationProcessingResult Operation result. Specific /// format varies according to the operation type. Exists only in /// case the operation has reached a 'Succeeded' state.
message string Error message. Exists only in case the /// operation has reached a 'Failed' state.
return System.Linq