Interface ISkipPolicy
Interface representing a policy to determine if certain tasks can be skipped during initialization.
Namespace: Serenity.InitializationPipeline.Application.Interfaces
Assembly: Serenity.InitializationPipeline.Application.dll
Syntax
public interface ISkipPolicy
Methods
CanSkip(string)
Determines if a task with the given ID can be skipped.
Declaration
bool CanSkip(string taskId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | taskId | The ID of the task to check. |
Returns
| Type | Description |
|---|---|
| bool | True if the task can be skipped; otherwise, false. |