RemovingCommentEventArgs
Provides data for the RemovingComment event.
using AngleSharp.Dom;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Ganss.XSS
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public class RemovingCommentEventArgs : CancelEventArgs
{
public IComment Comment { get; set; }
public RemovingCommentEventArgs(IComment comment)
{
Comment = comment;
}
}
}