ICommandLimiter<TSettings> Interface

Represents a command limiter.
public interface ICommandLimiter<out TSettings> : ICommand where TSettings : CommandSettings

Parameters

TSettings
The type of the settings to limit to.

Extension Methods

T And<ICommandLimiter<TSettings>>(Action<ICommandLimiter<TSettings>>)
Performs the specified action on the given object and then returns the object. Useful for fluent testing patterns where additional assertions or operations are chained together in a readable manner.

See Also