public string ToQueryStringValue() { return(MessageUtil.SubstituteVariables(MessageFormatString, EventMessage, true)); }
public string ToJSONStringValue() { return(MessageUtil.SubstituteVariables(MessageFormatString, EventMessage, false).Replace("\"", "\\\"")); }
public WebhookMessage(string message, string eventMessage) { MessageFormatString = message; EventMessage = MessageUtil.StripTags(eventMessage); // Remove tags like <Tell> }