Example #1
0
 public TextReaderResponse(TextReaderStatus status, Token token)
 {
     _status = status ?? throw new ArgumentNullException(nameof(status));
     _token  = token ?? throw new ArgumentNullException(nameof(token));
 }
Example #2
0
 public TextReaderResponse(TextReaderStatus status)
 {
     _status = status ?? throw new ArgumentNullException(nameof(status));
 }