refactor: Renamed Delegate Declarations as EventHandler
This commit is contained in:
@@ -8,12 +8,12 @@ public interface IInitialize
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="Initialize"/> method is called successfully.
|
||||
/// </summary>
|
||||
event OnInitializedDelegate? OnInitialized;
|
||||
event OnInitializedEventHandler? OnInitialized;
|
||||
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="Finalize"/> method is called successfully.
|
||||
/// </summary>
|
||||
event OnFinalizedDelegate? OnFinalized;
|
||||
event OnFinalizedEventHandler? OnFinalized;
|
||||
|
||||
/// <summary>
|
||||
/// The value indicating whether the entity has been initialized.
|
||||
@@ -32,6 +32,6 @@ public interface IInitialize
|
||||
/// <returns><see cref="true"/> if finalization is successful, otherwise <see cref="false"/>.</returns>
|
||||
bool Finalize();
|
||||
|
||||
delegate void OnInitializedDelegate(IInitialize sender);
|
||||
delegate void OnFinalizedDelegate(IInitialize sender);
|
||||
delegate void OnInitializedEventHandler(IInitialize sender);
|
||||
delegate void OnFinalizedEventHandler(IInitialize sender);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user