Table of Contents

KVSKBAOperationResponse

Summary: Holder object for holding for client operations result.

Procedures

IsSuccessful() : Boolean

Summary: Checks whether the operation was successful.

procedure IsSuccessful(): Boolean

Returns: True if the operation was successful; otherwise - false.

Remarks: Operation is considered successful if the status code of the response is in range 200-299.

GetErrorText() : Text

Summary: Gets the error (if any) of the response.

procedure GetErrorText(): Text

Returns: Text representation of the error that occurred during the operation.

Remarks: In case there is no error, empty text is returned.

GetError() : ErrorInfo

Summary: Gets the error (if any) of the response.

procedure GetError(): ErrorInfo

Returns: ErrorInfo object defines the error that occurred during the operation.

Remarks: In case there is no error, an empty ErrorInfo object is returned.

GetHttpResponseMessage() : HttpResponseMessage

Summary: Gets the http Response Message of the response.

procedure GetHttpResponseMessage(): HttpResponseMessage

Returns: Return value of type HttpResponseMessage.

Remarks: In case there is no response message, an empty HttpResponseMessage object is returned.