Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Events;
///
/// Represents an event for which processing may be stopped by the consumer
///
public partial interface IStopProcessingEvent
{
///
/// Gets or sets a value whether processing of event publishing should be stopped
///
bool StopProcessing { get; set; }
}