Skip to content

Commit 7fd60e4

Browse files
committed
Update refs
1 parent 2036f06 commit 7fd60e4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/Http/WebUtilities/ref/Microsoft.AspNetCore.WebUtilities.netcoreapp3.0.cs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,28 @@ public override void SetLength(long value) { }
6262
public override void Write(byte[] buffer, int offset, int count) { }
6363
public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
6464
}
65+
public sealed partial class FileBufferingWriteStream : System.IO.Stream
66+
{
67+
public FileBufferingWriteStream(System.IO.Stream writeStream, int memoryThreshold = 30720, long? bufferLimit = default(long?), System.Func<string> tempFileDirectoryAccessor = null) { }
68+
public override bool CanRead { get { throw null; } }
69+
public override bool CanSeek { get { throw null; } }
70+
public override bool CanWrite { get { throw null; } }
71+
public override long Length { get { throw null; } }
72+
public override long Position { get { throw null; } set { } }
73+
protected override void Dispose(bool disposing) { }
74+
[System.Diagnostics.DebuggerStepThroughAttribute]
75+
public override System.Threading.Tasks.ValueTask DisposeAsync() { throw null; }
76+
public override void Flush() { }
77+
[System.Diagnostics.DebuggerStepThroughAttribute]
78+
public override System.Threading.Tasks.Task FlushAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
79+
public override int Read(byte[] buffer, int offset, int count) { throw null; }
80+
public override System.Threading.Tasks.Task<int> ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
81+
public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
82+
public override void SetLength(long value) { }
83+
public override void Write(byte[] buffer, int offset, int count) { }
84+
[System.Diagnostics.DebuggerStepThroughAttribute]
85+
public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
86+
}
6587
public partial class FileMultipartSection
6688
{
6789
public FileMultipartSection(Microsoft.AspNetCore.WebUtilities.MultipartSection section) { }
@@ -129,6 +151,8 @@ public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding en
129151
public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize, System.Buffers.ArrayPool<byte> bytePool, System.Buffers.ArrayPool<char> charPool) { }
130152
public override System.Text.Encoding Encoding { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
131153
protected override void Dispose(bool disposing) { }
154+
[System.Diagnostics.DebuggerStepThroughAttribute]
155+
public override System.Threading.Tasks.ValueTask DisposeAsync() { throw null; }
132156
public override void Flush() { }
133157
public override System.Threading.Tasks.Task FlushAsync() { throw null; }
134158
public override void Write(char value) { }

0 commit comments

Comments
 (0)