Example #1
0
 private static string Format(string Format, GruntEncryptedMessage Message)
 {
     return(String.Format(Format,
                          Utilities.MessageTransform.Transform(Common.GruntEncoding.GetBytes(GruntEncryptedMessage.ToJson(Message)))
                          ));
 }
Example #2
0
 public string FormatPostResponse(GruntEncryptedMessage Message)
 {
     return(Format(this.PostResponse, Message));
 }
Example #3
0
 public string FormatWrite(GruntEncryptedMessage Message)
 {
     return(Format(this.WriteFormat, this.Guid, Message));
 }
Example #4
0
 public string FormatPostRequest(GruntEncryptedMessage Message)
 {
     return(Format(this.PostRequest, Message));
 }
Example #5
0
 public string FormatRead(GruntEncryptedMessage Message)
 {
     return(Format(this.ReadFormat, this.Guid, Message));
 }