Ext.Net.StoreBase.Filter C# (CSharp) Method

Filter() private method

private Filter ( string field, string value, bool anyMatch, bool caseSensitive ) : void
field string
value string
anyMatch bool
caseSensitive bool
return void
        public virtual void Filter(string field, string value, bool anyMatch, bool caseSensitive)
        {
            if (TokenUtils.IsRawToken(value))
            {
                value = TokenUtils.ReplaceRawToken(value);
            }

            this.Call("filter", field, value, anyMatch, caseSensitive);
        }