hubiquitus4w8.hapi.hStructures.HResult.GetResultASJArray C# (CSharp) Méthode

GetResultASJArray() public méthode

If result type is JArray.
public GetResultASJArray ( ) : Newtonsoft.Json.Linq.JArray
Résultat Newtonsoft.Json.Linq.JArray
        public JArray GetResultASJArray()
        {
            JArray result = null;
            try
            {
                result = this["result"].ToObject<JArray>();
            }
            catch (Exception e)
            {
                Debug.WriteLine("{0} : Can not fetch the result attribute", e.ToString());
            }
            return result;
        }