Beispiel #1
0
 internal PopCommandResult(PopCommandResultCode code, PopResponseText responseText)
     : this(code, null, responseText.GetTextAsString())
 {
 }
Beispiel #2
0
 private PopCommandResult(PopCommandResultCode code, string description, string responseText)
 {
     this.code = code;
       this.description = description;
       this.responseText = responseText;
 }
Beispiel #3
0
 internal PopCommandResult(PopCommandResultCode code, string description)
     : this(code, description, null)
 {
 }