Skip to content

Commit cd7538b

Browse files
committed
Updated reference assembly
1 parent 0229019 commit cd7538b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Http/WebUtilities/ref/Microsoft.AspNetCore.WebUtilities.netcoreapp.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,12 @@ protected override void Dispose(bool disposing) { }
145145
public override int Peek() { throw null; }
146146
public override int Read() { throw null; }
147147
public override int Read(char[] buffer, int index, int count) { throw null; }
148-
[System.Diagnostics.DebuggerStepThroughAttribute]
148+
public override int Read(System.Span<char> buffer) { throw null; }
149149
public override System.Threading.Tasks.Task<int> ReadAsync(char[] buffer, int index, int count) { throw null; }
150+
[System.Diagnostics.DebuggerStepThroughAttribute]
151+
public override System.Threading.Tasks.ValueTask<int> ReadAsync(System.Memory<char> buffer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
152+
[System.Diagnostics.DebuggerStepThroughAttribute]
153+
public override System.Threading.Tasks.Task<string> ReadLineAsync() { throw null; }
150154
}
151155
public partial class HttpResponseStreamWriter : System.IO.TextWriter
152156
{

0 commit comments

Comments
 (0)