Skip to content

Commit

Permalink
stylecop
Browse files Browse the repository at this point in the history
  • Loading branch information
hakenr committed Feb 19, 2025
1 parent daddcc1 commit 9ede4cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ public interface ICascadeEnabledComponent
/// <summary>
/// Form state cascading parameter.
/// </summary>
public FormState FormState { get; set; }
FormState FormState { get; set; }

/// <summary>
/// When <c>null</c> (default), the Enabled value is received from the cascading <see cref="FormState" />.
/// When the value is <c>false</c>, the input is rendered as disabled.
/// To set multiple controls as disabled, use <seealso cref="HxFormState" />.
/// </summary>
public bool? Enabled { get; set; }
bool? Enabled { get; set; }
}
8 changes: 4 additions & 4 deletions Havit.Blazor.Components.Web/Messenger/IHxMessengerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ public interface IHxMessengerService
/// <summary>
/// Subscription seam for the HxMessenger component to be able to receive messages.
/// </summary>
public event Action<MessengerMessage> OnMessage;
event Action<MessengerMessage> OnMessage;

/// <summary>
/// Subscription seam for the HxMessenger component to be able to receive the Clear() command.
/// </summary>
public event Action OnClear;
event Action OnClear;

/// <summary>
/// Adds and shows a message.
/// </summary>
public void AddMessage(MessengerMessage message);
void AddMessage(MessengerMessage message);

/// <summary>
/// Removes all messages.
/// </summary>
public void Clear();
void Clear();
}

0 comments on commit 9ede4cc

Please sign in to comment.