@@ -62,6 +62,28 @@ public override void SetLength(long value) { }
62
62
public override void Write ( byte [ ] buffer , int offset , int count ) { }
63
63
public override System . Threading . Tasks . Task WriteAsync ( byte [ ] buffer , int offset , int count , System . Threading . CancellationToken cancellationToken ) { throw null ; }
64
64
}
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
+ }
65
87
public partial class FileMultipartSection
66
88
{
67
89
public FileMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { }
@@ -129,6 +151,8 @@ public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding en
129
151
public HttpResponseStreamWriter ( System . IO . Stream stream , System . Text . Encoding encoding , int bufferSize , System . Buffers . ArrayPool < byte > bytePool , System . Buffers . ArrayPool < char > charPool ) { }
130
152
public override System . Text . Encoding Encoding { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
131
153
protected override void Dispose ( bool disposing ) { }
154
+ [ System . Diagnostics . DebuggerStepThroughAttribute ]
155
+ public override System . Threading . Tasks . ValueTask DisposeAsync ( ) { throw null ; }
132
156
public override void Flush ( ) { }
133
157
public override System . Threading . Tasks . Task FlushAsync ( ) { throw null ; }
134
158
public override void Write ( char value ) { }
0 commit comments