refactor: delegate names updated to have no "On" prefix
This commit is contained in:
@@ -8,12 +8,12 @@ public interface IInitializable
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="Initialize"/> method is called successfully.
|
||||
/// </summary>
|
||||
event OnInitializedEventHandler? OnInitialized;
|
||||
event InitializedEventHandler? OnInitialized;
|
||||
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="IInitializable"/> method is called successfully.
|
||||
/// </summary>
|
||||
event OnFinalizedEventHandler? OnFinalized;
|
||||
event FinalizedEventHandler? OnFinalized;
|
||||
|
||||
/// <summary>
|
||||
/// The value indicating whether the entity has been initialized.
|
||||
@@ -32,6 +32,6 @@ public interface IInitializable
|
||||
/// <returns><see cref="true"/> if finalization is successful, otherwise <see cref="false"/>.</returns>
|
||||
bool Finalize();
|
||||
|
||||
delegate void OnInitializedEventHandler(IInitializable sender);
|
||||
delegate void OnFinalizedEventHandler(IInitializable sender);
|
||||
delegate void InitializedEventHandler(IInitializable sender);
|
||||
delegate void FinalizedEventHandler(IInitializable sender);
|
||||
}
|
||||
|
Reference in New Issue
Block a user