ByChance.Configuration.Parameters.DiscardOpenContextsRestriction.ShouldDiscardContext C# (CSharp) Method

ShouldDiscardContext() public method

Used by DiscardOpenContextsPolicy to check whether to discard the passed open context, or not. Returns true.
public ShouldDiscardContext ( Context context ) : bool
context ByChance.Core.Context Context to be discarded.
return bool
        public bool ShouldDiscardContext(Context context)
        {
            return true;
        }
DiscardOpenContextsRestriction