@@ -10,10 +10,10 @@ public HealthCheckContext() { }
1010 }
1111 public sealed partial class HealthCheckRegistration
1212 {
13- public HealthCheckRegistration ( string name , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck instance , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > tags ) { }
14- public HealthCheckRegistration ( string name , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck instance , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > tags , System . TimeSpan ? timeout ) { }
15- public HealthCheckRegistration ( string name , System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > factory , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > tags ) { }
16- public HealthCheckRegistration ( string name , System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > factory , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > tags , System . TimeSpan ? timeout ) { }
13+ public HealthCheckRegistration ( string name , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck instance , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > ? tags ) { }
14+ public HealthCheckRegistration ( string name , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck instance , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > ? tags , System . TimeSpan ? timeout ) { }
15+ public HealthCheckRegistration ( string name , System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > factory , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > ? tags ) { }
16+ public HealthCheckRegistration ( string name , System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > factory , Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus ? failureStatus , System . Collections . Generic . IEnumerable < string > ? tags , System . TimeSpan ? timeout ) { }
1717 public System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > Factory { get { throw null ; } set { } }
1818 public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus FailureStatus { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
1919 public string Name { get { throw null ; } set { } }
@@ -25,14 +25,14 @@ public partial struct HealthCheckResult
2525 {
2626 private object _dummy ;
2727 private int _dummyPrimitive ;
28- public HealthCheckResult ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string description = null , System . Exception exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > data = null ) { throw null ; }
28+ public HealthCheckResult ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string ? description = null , System . Exception ? exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data = null ) { throw null ; }
2929 public System . Collections . Generic . IReadOnlyDictionary < string , object > Data { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
30- public string Description { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
31- public System . Exception Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
30+ public string ? Description { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
31+ public System . Exception ? Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
3232 public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
33- public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Degraded ( string description = null , System . Exception exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > data = null ) { throw null ; }
34- public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Healthy ( string description = null , System . Collections . Generic . IReadOnlyDictionary < string , object > data = null ) { throw null ; }
35- public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Unhealthy ( string description = null , System . Exception exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > data = null ) { throw null ; }
33+ public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Degraded ( string ? description = null , System . Exception ? exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data = null ) { throw null ; }
34+ public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Healthy ( string ? description = null , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data = null ) { throw null ; }
35+ public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Unhealthy ( string ? description = null , System . Exception ? exception = null , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data = null ) { throw null ; }
3636 }
3737 public sealed partial class HealthReport
3838 {
@@ -46,12 +46,12 @@ public partial struct HealthReportEntry
4646 {
4747 private object _dummy ;
4848 private int _dummyPrimitive ;
49- public HealthReportEntry ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string description , System . TimeSpan duration , System . Exception exception , System . Collections . Generic . IReadOnlyDictionary < string , object > data ) { throw null ; }
50- public HealthReportEntry ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string description , System . TimeSpan duration , System . Exception exception , System . Collections . Generic . IReadOnlyDictionary < string , object > data , System . Collections . Generic . IEnumerable < string > tags = null ) { throw null ; }
49+ public HealthReportEntry ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string ? description , System . TimeSpan duration , System . Exception ? exception , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data ) { throw null ; }
50+ public HealthReportEntry ( Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus status , string ? description , System . TimeSpan duration , System . Exception ? exception , System . Collections . Generic . IReadOnlyDictionary < string , object > ? data , System . Collections . Generic . IEnumerable < string > ? tags = null ) { throw null ; }
5151 public System . Collections . Generic . IReadOnlyDictionary < string , object > Data { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
52- public string Description { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
52+ public string ? Description { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
5353 public System . TimeSpan Duration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
54- public System . Exception Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
54+ public System . Exception ? Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
5555 public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
5656 public System . Collections . Generic . IEnumerable < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
5757 }
0 commit comments