C# Class hubiquitus4w8.hapi.hStructures.HResult

Version 0.5 hAPI result. For more info, see Hubiquitus reference
Inheritance: Newtonsoft.Json.Linq.JObject
Afficher le fichier Open project: hubiquitus-old/hubiquitus4w8 Class Usage Examples

Méthodes publiques

Méthode 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

Method Details

GetResult() public méthode

If we don't know the type of result.
public GetResult ( ) : object
Résultat object

GetResultASJArray() public méthode

If result type is JArray.
public GetResultASJArray ( ) : Newtonsoft.Json.Linq.JArray
Résultat Newtonsoft.Json.Linq.JArray

GetResultAsBoolean() public méthode

If the result type is bool.
public GetResultAsBoolean ( ) : bool?
Résultat bool?

GetResultAsDouble() public méthode

If the result type is double.
public GetResultAsDouble ( ) : double?
Résultat double?

GetResultAsInt() public méthode

If the result type is int.
public GetResultAsInt ( ) : int?
Résultat int?

GetResultAsJObject() public méthode

If result type is JObject.
public GetResultAsJObject ( ) : Newtonsoft.Json.Linq.JObject
Résultat Newtonsoft.Json.Linq.JObject

GetResultAsString() public méthode

If result type is string.
public GetResultAsString ( ) : string
Résultat string

GetStatus() public méthode

Get the status of the result. Null if undefined.
public GetStatus ( ) : ResultStatus?
Résultat ResultStatus?

HResult() public méthode

public HResult ( ) : System
Résultat System

HResult() public méthode

public HResult ( Newtonsoft.Json.Linq.JObject jsonObj ) : System
jsonObj Newtonsoft.Json.Linq.JObject
Résultat System

SetResult() public méthode

public SetResult ( Newtonsoft.Json.Linq.JArray result ) : void
result Newtonsoft.Json.Linq.JArray
Résultat void

SetResult() public méthode

public SetResult ( Newtonsoft.Json.Linq.JObject result ) : void
result Newtonsoft.Json.Linq.JObject
Résultat void

SetResult() public méthode

The result type could be JObject, JArray, String, Boolean, Number.
public SetResult ( JToken result ) : void
result JToken
Résultat void

SetResult() public méthode

public SetResult ( bool result ) : void
result bool
Résultat void

SetResult() public méthode

public SetResult ( double result ) : void
result double
Résultat void

SetResult() public méthode

public SetResult ( int result ) : void
result int
Résultat void

SetResult() public méthode

public SetResult ( string result ) : void
result string
Résultat void

SetStatus() public méthode

public SetStatus ( ResultStatus status ) : void
status ResultStatus
Résultat void