ClientActionResult
string Result - A property which returns the result as a string value, if it is available.
Object GetResultObject() - a method which returns the result as a request type specific object (such as PageInfo).
NameSpace: StarMicronics.CloudPrnt.CpMessage
Syntax
public class ClientActionResult
Properties
Request
Declaration
public string Request { get; }
Property Value
Type |
Description |
---|---|
System.String |
Result
Declaration
public string Result { get; }
Property Value
Type |
Description |
---|---|
System.String |
Type
Declaration
public ClientActions Type { get; }
Property Value
Type |
Description |
---|---|
Methods
GetResultObject()
Declaration
public object GetResultObject()
Returns
Type |
Description |
---|---|
System.Object |
An opject representing the result. In most cases with object will always be a string type. If the ClientActionResult is a response to a ClientActions.PageInfo request, then the returned object will be a CpMessage.PageInfo object. |