internal ImapTaggedStatusResponse(string tag, ImapResponseCondition condition, ImapResponseText responseText)
     : base(condition, responseText)
 {
     this.Tag = tag;
 }
Example #2
0
 protected internal ImapStatusResponse(ImapResponseCondition condition, ImapResponseText responseText)
 {
     this.Condition = condition;
       this.ResponseText = responseText;
 }
 internal ImapUntaggedStatusResponse(ImapResponseCondition condition, ImapResponseText responseText)
     : base(condition, responseText)
 {
 }