@@ -6,7 +6,7 @@ namespace Microsoft.Extensions.Diagnostics.HealthChecks
6
6
public sealed partial class HealthCheckContext
7
7
{
8
8
public HealthCheckContext ( ) { }
9
- public Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckRegistration Registration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
9
+ public Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckRegistration Registration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
10
10
}
11
11
public sealed partial class HealthCheckRegistration
12
12
{
@@ -15,9 +15,9 @@ public HealthCheckRegistration(string name, Microsoft.Extensions.Diagnostics.Hea
15
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
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
- public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus FailureStatus { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
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 { } }
20
- public System . Collections . Generic . ISet < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
20
+ public System . Collections . Generic . ISet < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
21
21
public System . TimeSpan Timeout { get { throw null ; } set { } }
22
22
}
23
23
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
@@ -26,20 +26,20 @@ public partial struct HealthCheckResult
26
26
private object _dummy ;
27
27
private int _dummyPrimitive ;
28
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
- 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 ; } }
32
- public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
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 ; } }
32
+ public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
33
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
34
public static Microsoft . Extensions . Diagnostics . HealthChecks . HealthCheckResult Healthy ( string description = null , System . Collections . Generic . IReadOnlyDictionary < string , object > data = null ) { throw null ; }
35
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
{
39
39
public HealthReport ( System . Collections . Generic . IReadOnlyDictionary < string , Microsoft . Extensions . Diagnostics . HealthChecks . HealthReportEntry > entries , System . TimeSpan totalDuration ) { }
40
- public System . Collections . Generic . IReadOnlyDictionary < string , Microsoft . Extensions . Diagnostics . HealthChecks . HealthReportEntry > Entries { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
41
- public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
42
- public System . TimeSpan TotalDuration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
40
+ public System . Collections . Generic . IReadOnlyDictionary < string , Microsoft . Extensions . Diagnostics . HealthChecks . HealthReportEntry > Entries { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
41
+ public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
42
+ public System . TimeSpan TotalDuration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
43
43
}
44
44
[ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
45
45
public partial struct HealthReportEntry
@@ -48,12 +48,12 @@ public partial struct HealthReportEntry
48
48
private int _dummyPrimitive ;
49
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
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
- 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 ; } }
53
- public System . TimeSpan Duration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
54
- public System . Exception Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
55
- public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
56
- public System . Collections . Generic . IEnumerable < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
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 ; } }
53
+ public System . TimeSpan Duration { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
54
+ public System . Exception Exception { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
55
+ public Microsoft . Extensions . Diagnostics . HealthChecks . HealthStatus Status { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
56
+ public System . Collections . Generic . IEnumerable < string > Tags { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
57
57
}
58
58
public enum HealthStatus
59
59
{
0 commit comments