You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Interface implemented by commands that could fail to execute. Commands that would fail do not have their execute method invoked and are not recorded in the CommandStream's history
/// </summary>
public interface IFailable
{
/// <summary>
/// Determine if the implementing command would be able to be executed or if it would fail
/// </summary>
/// <returns> True if the implementing command would fail, false if it would execute successfully. </returns>