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

GetResultAsString() public méthode

If result type is string.
public GetResultAsString ( ) : string
Résultat string
        public string GetResultAsString()
        {
            string result = null;
            try
            {
                result = this["result"].ToString();
            }
            catch (Exception e)
            {
                Debug.WriteLine("{0} : Can not fetch the result attribute", e.ToString());
            }
            return result;
        }