@@ -10,10 +10,10 @@ public HealthCheckContext() { }
10
10
}
11
11
public sealed partial class HealthCheckRegistration
12
12
{
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 ) { }
17
17
public System . Func < System . IServiceProvider , Microsoft . Extensions . Diagnostics . HealthChecks . IHealthCheck > Factory { get { throw null ; } set { } }
18
18
public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus FailureStatus { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
19
19
public string Name { get { throw null ; } set { } }
@@ -25,14 +25,14 @@ public partial struct HealthCheckResult
25
25
{
26
26
private object _dummy ;
27
27
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 ; }
29
29
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 ; } }
32
32
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 ; }
36
36
}
37
37
public sealed partial class HealthReport
38
38
{
@@ -46,12 +46,12 @@ public partial struct HealthReportEntry
46
46
{
47
47
private object _dummy ;
48
48
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 ; }
51
51
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 ; } }
53
53
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 ; } }
55
55
public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
56
56
public System . Collections . Generic . IEnumerable < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
57
57
}
0 commit comments