Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
HealthCheckPublisherOptions.Predicate Property
Definition
- Assembly:
- Microsoft.Extensions.Diagnostics.HealthChecks.dll
- Package:
- Microsoft.Extensions.Diagnostics.HealthChecks v11.0.0-preview.5.26302.115
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a predicate that is used to filter the set of health checks executed.
public:
property Func<Microsoft::Extensions::Diagnostics::HealthChecks::HealthCheckRegistration ^, bool> ^ Predicate { Func<Microsoft::Extensions::Diagnostics::HealthChecks::HealthCheckRegistration ^, bool> ^ get(); void set(Func<Microsoft::Extensions::Diagnostics::HealthChecks::HealthCheckRegistration ^, bool> ^ value); };
public Func<Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration,bool>? Predicate { get; set; }
member this.Predicate : Func<Microsoft.Extensions.Diagnostics.HealthChecks.HealthCheckRegistration, bool> with get, set
Public Property Predicate As Func(Of HealthCheckRegistration, Boolean)
Property Value
Remarks
If Predicate is null, the health check publisher service will run all registered health checks - this is the default behavior. To run a subset of health checks, provide a function that filters the set of checks. The predicate will be evaluated each period.
Applies to
Feedback
Was this page helpful?
