BTDB.FieldHandler.SimpleFieldHandlerJustOrderableBase.IsCompatibleWith C# (CSharp) Method

IsCompatibleWith() public method

public IsCompatibleWith ( Type type, FieldHandlerOptions options ) : bool
type System.Type
options FieldHandlerOptions
return bool
        public override bool IsCompatibleWith(Type type, FieldHandlerOptions options)
        {
            if ((options & FieldHandlerOptions.Orderable) == 0) return false;
            return base.IsCompatibleWith(type, options);
        }