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