Example #1
0
 /// <summary>Create a new instance of a cache message based on the response type</summary>
 public CacheMessage(CacheResponseTypes responseType)
 {
     this.MessageType = (byte)responseType;
 }
Example #2
0
 /// <summary></summary>
 public CacheMessageException(CacheResponseTypes responseType) : base()
 {
     this.ResponseType = (byte)responseType;
 }
Example #3
0
 /// <summary></summary>
 public CacheMessageException(CacheResponseTypes responseType, string msg) : base(msg)
 {
     this.ResponseType = (byte)responseType;
 }