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()); } }
public HMessage BuildMessage(string actor, string type, HCommand payload, HMessageOptions mOptions) { return InnerBuildMessage(actor, type, payload, mOptions); }
/// <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; }
/// <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; }