Exemplo n.º 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;
 }
Exemplo n.º 2
0
 /// <summary></summary>
 public CacheMessageException(CacheResponseTypes responseType) : base()
 {
     this.ResponseType = (byte)responseType;
 }
Exemplo n.º 3
0
 /// <summary></summary>
 public CacheMessageException(CacheResponseTypes responseType, string msg) : base(msg)
 {
     this.ResponseType = (byte)responseType;
 }