Version 0.5 hAPI Command. For more info, see Hubiquitus reference
Inheritance: Newtonsoft.Json.Linq.JObject
Example #1
0
        /// <summary>
        /// If payload type is HCommand.
        /// </summary>
        /// <returns>The payload of HCommand type.</returns>
        public HCommand GetPayloadAsHCommand()
        {
            HCommand payload = null;

            try
            {
                payload = new HCommand(JObject.Parse(this["payload"].ToString()));
            }
            catch (Exception e)
            {
                Debug.WriteLine("{0} : Can not fetch the payload attribute", e.ToString());
            }
            return(payload);
        }
Example #2
0
 public void SetPayload(HCommand payload)
 {
     try
     {
         if (payload == null)
         {
             this.Remove("payload");
         }
         else
         {
             this["payload"] = payload;
         }
     }
     catch (Exception e)
     {
         Debug.WriteLine("{0} : Can not update the payload attribute", e.ToString());
     }
 }
Example #3
0
 public HMessage BuildMessage(string actor, string type, HCommand payload, HMessageOptions mOptions)
 {
     return InnerBuildMessage(actor, type, payload, mOptions);
 }
Example #4
0
        /// <summary>
        /// since v0.5
        /// The client MUST be connected to access to this service.
        /// Allow a hubapp client to create a hMessage with a hCommand payload.
        /// </summary>
        /// <param name="actor"></param>
        /// <param name="cmd"></param>
        /// <param name="params"></param>
        /// <param name="filter"></param>
        /// <param name="mOptions"></param>
        /// <returns></returns>
        public HMessage BuildCommand(string actor, string cmd, JToken @params, HCondition filter, HMessageOptions mOptions)
        {
            if (actor == null || actor.Length <= 0)
                throw new MissingAttrException("actor");
            if (cmd == null || cmd.Length <= 0)
                throw new MissingAttrException("cmd");

            HCommand hcommand = new HCommand(cmd, @params, filter);

            HMessage hmessage = BuildMessage(actor, "hCommand", hcommand, mOptions);
            return hmessage;
        }
Example #5
0
 public void SetPayload(HCommand payload)
 {
     try
     {
         if (payload == null)
         {
             this.Remove("payload");
         }
         else
         {
             this["payload"] = payload;
         }
     }
     catch (Exception e)
     {
         Debug.WriteLine("{0} : Can not update the payload attribute", e.ToString());
     }
 }
Example #6
0
 /// <summary>
 /// If payload type is HCommand.
 /// </summary>
 /// <returns>The payload of HCommand type.</returns>
 public HCommand GetPayloadAsHCommand()
 {
     HCommand payload = null;
     try
     {
         payload = new HCommand(JObject.Parse(this["payload"].ToString()));
     }
     catch (Exception e)
     {
         Debug.WriteLine("{0} : Can not fetch the payload attribute", e.ToString());
     }
     return payload;
 }