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

IsCompatibleWith() public method

public IsCompatibleWith ( Type type, FieldHandlerOptions options ) : bool
type System.Type
options FieldHandlerOptions
return bool
        public virtual bool IsCompatibleWith(Type type, FieldHandlerOptions options)
        {
            return typeof(byte[]) == type || typeof(ByteBuffer) == type;
        }