ServiceProviderOptions.ValidateOnBuild Property

Definition

Gets or sets a value that indicates whether validation is performed to ensure all services can be created when BuildServiceProvider(IServiceCollection, ServiceProviderOptions) is called.

public:
 property bool ValidateOnBuild { bool get(); void set(bool value); };
public bool ValidateOnBuild { get; set; }
member this.ValidateOnBuild : bool with get, set
Public Property ValidateOnBuild As Boolean

Property Value

true if validation is performed to ensure all services can be created during a BuildServiceProvider(IServiceCollection, ServiceProviderOptions) call; otherwise, false. The default is the value of IsDevelopment(IHostingEnvironment).

Remarks

Open generics services aren't validated.

Applies to