/WCFWebApi/src/Microsoft.ApplicationServer.Http/Microsoft/ApplicationServer/Http/Test/ITolerantTextReader.cs

# · C# · 18 lines · 11 code · 4 blank · 3 comment · 0 complexity · fcd118c509f61a4ebb567768e9b41578 MD5 · raw file

  1. // <copyright>
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace Microsoft.ApplicationServer.Http.Test
  5. {
  6. using System;
  7. using System.Collections.Generic;
  8. internal interface ITolerantTextReader
  9. {
  10. Exception Exception { get; }
  11. bool Read();
  12. IEnumerable<string> GetExpectedItems();
  13. }
  14. }