@@ -14,7 +14,7 @@ protected EndpointBuilder() { }
14
14
public partial interface IApplicationBuilder
15
15
{
16
16
System . IServiceProvider ApplicationServices { get ; set ; }
17
- System . Collections . Generic . IDictionary < string , object > Properties { get ; }
17
+ System . Collections . Generic . IDictionary < string , object ? > Properties { get ; }
18
18
Microsoft . AspNetCore . Http . Features . IFeatureCollection ServerFeatures { get ; }
19
19
Microsoft . AspNetCore . Http . RequestDelegate Build ( ) ;
20
20
Microsoft . AspNetCore . Builder . IApplicationBuilder New ( ) ;
@@ -108,13 +108,13 @@ public BadHttpRequestException(string message, int statusCode, System.Exception
108
108
public abstract partial class ConnectionInfo
109
109
{
110
110
protected ConnectionInfo ( ) { }
111
- public abstract System . Security . Cryptography . X509Certificates . X509Certificate2 ClientCertificate { get ; set ; }
111
+ public abstract System . Security . Cryptography . X509Certificates . X509Certificate2 ? ClientCertificate { get ; set ; }
112
112
public abstract string Id { get ; set ; }
113
- public abstract System . Net . IPAddress LocalIpAddress { get ; set ; }
113
+ public abstract System . Net . IPAddress ? LocalIpAddress { get ; set ; }
114
114
public abstract int LocalPort { get ; set ; }
115
- public abstract System . Net . IPAddress RemoteIpAddress { get ; set ; }
115
+ public abstract System . Net . IPAddress ? RemoteIpAddress { get ; set ; }
116
116
public abstract int RemotePort { get ; set ; }
117
- public abstract System . Threading . Tasks . Task < System . Security . Cryptography . X509Certificates . X509Certificate2 > GetClientCertificateAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
117
+ public abstract System . Threading . Tasks . Task < System . Security . Cryptography . X509Certificates . X509Certificate2 ? > GetClientCertificateAsync ( System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
118
118
}
119
119
public partial class CookieBuilder
120
120
{
@@ -231,7 +231,7 @@ protected HttpContext() { }
231
231
public abstract System . Threading . CancellationToken RequestAborted { get ; set ; }
232
232
public abstract System . IServiceProvider RequestServices { get ; set ; }
233
233
public abstract Microsoft . AspNetCore . Http . HttpResponse Response { get ; }
234
- public abstract Microsoft . AspNetCore . Http . ISession ? Session { get ; set ; }
234
+ public abstract Microsoft . AspNetCore . Http . ISession Session { get ; set ; }
235
235
public abstract string TraceIdentifier { get ; set ; }
236
236
public abstract System . Security . Claims . ClaimsPrincipal User { get ; set ; }
237
237
public abstract Microsoft . AspNetCore . Http . WebSocketManager WebSockets { get ; }
@@ -326,7 +326,7 @@ public static partial class HttpResponseWritingExtensions
326
326
}
327
327
public partial interface IHttpContextAccessor
328
328
{
329
- Microsoft . AspNetCore . Http . HttpContext HttpContext { get ; set ; }
329
+ Microsoft . AspNetCore . Http . HttpContext ? HttpContext { get ; set ; }
330
330
}
331
331
public partial interface IHttpContextFactory
332
332
{
0 commit comments