Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IStopProcessingEvent.cs

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; }
}