Method | Description | |
---|---|---|
GetResult ( ) : object |
If we don't know the type of result.
|
|
GetResultASJArray ( ) : Newtonsoft.Json.Linq.JArray |
If result type is JArray.
|
|
GetResultAsBoolean ( ) : bool? |
If the result type is bool.
|
|
GetResultAsDouble ( ) : double? |
If the result type is double.
|
|
GetResultAsInt ( ) : int? |
If the result type is int.
|
|
GetResultAsJObject ( ) : Newtonsoft.Json.Linq.JObject |
If result type is JObject.
|
|
GetResultAsString ( ) : string |
If result type is string.
|
|
GetStatus ( ) : ResultStatus? |
Get the status of the result. Null if undefined.
|
|
HResult ( ) : System | ||
HResult ( Newtonsoft.Json.Linq.JObject jsonObj ) : System | ||
SetResult ( Newtonsoft.Json.Linq.JArray result ) : void | ||
SetResult ( Newtonsoft.Json.Linq.JObject result ) : void | ||
SetResult ( JToken result ) : void |
The result type could be JObject, JArray, String, Boolean, Number.
|
|
SetResult ( bool result ) : void | ||
SetResult ( double result ) : void | ||
SetResult ( int result ) : void | ||
SetResult ( string result ) : void | ||
SetStatus ( ResultStatus status ) : void |
public GetResultASJArray ( ) : Newtonsoft.Json.Linq.JArray | ||
return | Newtonsoft.Json.Linq.JArray |
public GetResultAsJObject ( ) : Newtonsoft.Json.Linq.JObject | ||
return | Newtonsoft.Json.Linq.JObject |
public HResult ( Newtonsoft.Json.Linq.JObject jsonObj ) : System | ||
jsonObj | Newtonsoft.Json.Linq.JObject | |
return | System |
public SetResult ( Newtonsoft.Json.Linq.JArray result ) : void | ||
result | Newtonsoft.Json.Linq.JArray | |
return | void |
public SetResult ( Newtonsoft.Json.Linq.JObject result ) : void | ||
result | Newtonsoft.Json.Linq.JObject | |
return | void |
public SetStatus ( ResultStatus status ) : void | ||
status | ResultStatus | |
return | void |