@@ -52,7 +52,7 @@ public FileBufferingReadStream(System.IO.Stream inner, int memoryThreshold, long
52
52
public bool InMemory { get { throw null ; } }
53
53
public override long Length { get { throw null ; } }
54
54
public override long Position { get { throw null ; } set { } }
55
- public string TempFileName { get { throw null ; } }
55
+ public string ? TempFileName { get { throw null ; } }
56
56
protected override void Dispose ( bool disposing ) { }
57
57
[ System . Diagnostics . DebuggerStepThroughAttribute ]
58
58
public override System . Threading . Tasks . ValueTask DisposeAsync ( ) { throw null ; }
@@ -67,7 +67,7 @@ public override void Write(byte[] buffer, int offset, int count) { }
67
67
}
68
68
public sealed partial class FileBufferingWriteStream : System . IO . Stream
69
69
{
70
- public FileBufferingWriteStream ( int memoryThreshold = 32768 , long ? bufferLimit = default ( long ? ) , System . Func < string > tempFileDirectoryAccessor = null ) { }
70
+ public FileBufferingWriteStream ( int memoryThreshold = 32768 , long ? bufferLimit = default ( long ? ) , System . Func < string > ? tempFileDirectoryAccessor = null ) { }
71
71
public override bool CanRead { get { throw null ; } }
72
72
public override bool CanSeek { get { throw null ; } }
73
73
public override bool CanWrite { get { throw null ; } }
@@ -91,16 +91,16 @@ public override void Write(byte[] buffer, int offset, int count) { }
91
91
public partial class FileMultipartSection
92
92
{
93
93
public FileMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { }
94
- public FileMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section , Microsoft . Net . Http . Headers . ContentDispositionHeaderValue header ) { }
94
+ public FileMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section , Microsoft . Net . Http . Headers . ContentDispositionHeaderValue ? header ) { }
95
95
public string FileName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
96
- public System . IO . Stream FileStream { get { throw null ; } }
96
+ public System . IO . Stream ? FileStream { get { throw null ; } }
97
97
public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
98
98
public Microsoft . AspNetCore . WebUtilities . MultipartSection Section { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
99
99
}
100
100
public partial class FormMultipartSection
101
101
{
102
102
public FormMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { }
103
- public FormMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section , Microsoft . Net . Http . Headers . ContentDispositionHeaderValue header ) { }
103
+ public FormMultipartSection ( Microsoft . AspNetCore . WebUtilities . MultipartSection section , Microsoft . Net . Http . Headers . ContentDispositionHeaderValue ? header ) { }
104
104
public string Name { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
105
105
public Microsoft . AspNetCore . WebUtilities . MultipartSection Section { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
106
106
public System . Threading . Tasks . Task < string > GetValueAsync ( ) { throw null ; }
@@ -149,9 +149,9 @@ protected override void Dispose(bool disposing) { }
149
149
public override System . Threading . Tasks . Task < int > ReadAsync ( char [ ] buffer , int index , int count ) { throw null ; }
150
150
[ System . Diagnostics . DebuggerStepThroughAttribute ]
151
151
public override System . Threading . Tasks . ValueTask < int > ReadAsync ( System . Memory < char > buffer , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
152
- public override string ReadLine ( ) { throw null ; }
152
+ public override string ? ReadLine ( ) { throw null ; }
153
153
[ System . Diagnostics . DebuggerStepThroughAttribute ]
154
- public override System . Threading . Tasks . Task < string > ReadLineAsync ( ) { throw null ; }
154
+ public override System . Threading . Tasks . Task < string ? > ReadLineAsync ( ) { throw null ; }
155
155
[ System . Diagnostics . DebuggerStepThroughAttribute ]
156
156
public override System . Threading . Tasks . Task < string > ReadToEndAsync ( ) { throw null ; }
157
157
}
@@ -169,11 +169,11 @@ public override void Flush() { }
169
169
public override void Write ( char value ) { }
170
170
public override void Write ( char [ ] values , int index , int count ) { }
171
171
public override void Write ( System . ReadOnlySpan < char > value ) { }
172
- public override void Write ( string value ) { }
172
+ public override void Write ( string ? value ) { }
173
173
public override System . Threading . Tasks . Task WriteAsync ( char value ) { throw null ; }
174
174
public override System . Threading . Tasks . Task WriteAsync ( char [ ] values , int index , int count ) { throw null ; }
175
175
public override System . Threading . Tasks . Task WriteAsync ( System . ReadOnlyMemory < char > value , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
176
- public override System . Threading . Tasks . Task WriteAsync ( string value ) { throw null ; }
176
+ public override System . Threading . Tasks . Task WriteAsync ( string ? value ) { throw null ; }
177
177
public override void WriteLine ( System . ReadOnlySpan < char > value ) { }
178
178
public override System . Threading . Tasks . Task WriteLineAsync ( System . ReadOnlyMemory < char > value , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
179
179
}
@@ -198,22 +198,22 @@ public MultipartReader(string boundary, System.IO.Stream stream, int bufferSize)
198
198
public int HeadersCountLimit { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
199
199
public int HeadersLengthLimit { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
200
200
[ System . Diagnostics . DebuggerStepThroughAttribute ]
201
- public System . Threading . Tasks . Task < Microsoft . AspNetCore . WebUtilities . MultipartSection > ReadNextSectionAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
201
+ public System . Threading . Tasks . Task < Microsoft . AspNetCore . WebUtilities . MultipartSection ? > ReadNextSectionAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) { throw null ; }
202
202
}
203
203
public partial class MultipartSection
204
204
{
205
205
public MultipartSection ( ) { }
206
206
public long ? BaseStreamOffset { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
207
- public System . IO . Stream Body { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
208
- public string ContentDisposition { get { throw null ; } }
209
- public string ContentType { get { throw null ; } }
210
- public System . Collections . Generic . Dictionary < string , Microsoft . Extensions . Primitives . StringValues > Headers { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
207
+ public System . IO . Stream ? Body { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
208
+ public string ? ContentDisposition { get { throw null ; } }
209
+ public string ? ContentType { get { throw null ; } }
210
+ public System . Collections . Generic . Dictionary < string , Microsoft . Extensions . Primitives . StringValues > ? Headers { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
211
211
}
212
212
public static partial class MultipartSectionConverterExtensions
213
213
{
214
- public static Microsoft . AspNetCore . WebUtilities . FileMultipartSection AsFileSection ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
215
- public static Microsoft . AspNetCore . WebUtilities . FormMultipartSection AsFormDataSection ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
216
- public static Microsoft . Net . Http . Headers . ContentDispositionHeaderValue GetContentDispositionHeader ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
214
+ public static Microsoft . AspNetCore . WebUtilities . FileMultipartSection ? AsFileSection ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
215
+ public static Microsoft . AspNetCore . WebUtilities . FormMultipartSection ? AsFormDataSection ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
216
+ public static Microsoft . Net . Http . Headers . ContentDispositionHeaderValue ? GetContentDispositionHeader ( this Microsoft . AspNetCore . WebUtilities . MultipartSection section ) { throw null ; }
217
217
}
218
218
public static partial class MultipartSectionStreamExtensions
219
219
{
@@ -222,11 +222,11 @@ public static partial class MultipartSectionStreamExtensions
222
222
}
223
223
public static partial class QueryHelpers
224
224
{
225
- public static string AddQueryString ( string uri , System . Collections . Generic . IDictionary < string , string > queryString ) { throw null ; }
225
+ public static string AddQueryString ( string uri , System . Collections . Generic . IDictionary < string , string ? > queryString ) { throw null ; }
226
226
public static string AddQueryString ( string uri , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , Microsoft . Extensions . Primitives . StringValues > > queryString ) { throw null ; }
227
- public static string AddQueryString ( string uri , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , string > > queryString ) { throw null ; }
227
+ public static string AddQueryString ( string uri , System . Collections . Generic . IEnumerable < System . Collections . Generic . KeyValuePair < string , string ? > > queryString ) { throw null ; }
228
228
public static string AddQueryString ( string uri , string name , string value ) { throw null ; }
229
- public static System . Collections . Generic . Dictionary < string , Microsoft . Extensions . Primitives . StringValues > ParseNullableQuery ( string queryString ) { throw null ; }
229
+ public static System . Collections . Generic . Dictionary < string , Microsoft . Extensions . Primitives . StringValues > ? ParseNullableQuery ( string queryString ) { throw null ; }
230
230
public static System . Collections . Generic . Dictionary < string , Microsoft . Extensions . Primitives . StringValues > ParseQuery ( string queryString ) { throw null ; }
231
231
}
232
232
public static partial class ReasonPhrases
0 commit comments