/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
- // <copyright>
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
-
- namespace Microsoft.ApplicationServer.Http.Test
- {
- using System;
- using System.Collections.Generic;
-
- internal interface ITolerantTextReader
- {
- Exception Exception { get; }
-
- bool Read();
-
- IEnumerable<string> GetExpectedItems();
- }
- }