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