Skip to content
This repository was archived by the owner on Aug 26, 2022. It is now read-only.

Commit ac4e779

Browse files
committed
Event.HashedState should be public.
A user cannot override an internal field.
1 parent b4e1a6f commit ac4e779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Core/Library/Events/Event.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public abstract class Event
4141
/// User-defined hash of the event payload. Override to improve the
4242
/// accuracy of liveness checking when state-caching is enabled.
4343
/// </summary>
44-
protected internal virtual int HashedState => 0;
44+
public virtual int HashedState => 0;
4545

4646
#endregion
4747

0 commit comments

Comments
 (0)