File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/OrchardCore/OrchardCore.Setup.Abstractions/Events Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,21 +9,21 @@ namespace OrchardCore.Setup.Events;
99public interface ISetupEventHandler
1010{
1111 /// <summary>
12- /// Performs asynchronous setup operations using the specified context .
12+ /// Occurs during the setup operation .
1313 /// </summary>
1414 /// <param name="context">An object that provides configuration and state information required for the setup process. Cannot be null.</param>
1515 /// <returns>A task that represents the asynchronous setup operation.</returns>
1616 Task SetupAsync ( SetupContext context ) => Task . CompletedTask ;
1717
1818 /// <summary>
19- /// Marks the setup operation as failed within the provided context .
19+ /// Occurs when the setup operation failed.
2020 /// </summary>
2121 /// <param name="context">The setup context in which the failure is recorded. Cannot be null.</param>
2222 /// <returns>A completed task that represents the asynchronous operation.</returns>
2323 Task FailedAsync ( SetupContext context ) => Task . CompletedTask ;
2424
2525 /// <summary>
26- /// Returns a completed task that represents a successful asynchronous operation .
26+ /// Occurs when the setup operation is succeed .
2727 /// </summary>
2828 /// <returns>A <see cref="Task"/> that has already completed successfully.</returns>
2929 Task SucceededAsync ( ) => Task . CompletedTask ;
You can’t perform that action at this time.
0 commit comments