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;

/// <summary>
/// Represents an event for which processing may be stopped by the consumer
/// </summary>
public partial interface IStopProcessingEvent
{
    /// <summary>
    /// Gets or sets a value whether processing of event publishing should be stopped
    /// </summary>
    bool StopProcessing { get; set; }
}