Android.Dialog.Element.Matches C# (CSharp) Method

Matches() public method

public Matches ( string text ) : bool
text string
return bool
        public virtual bool Matches(string text)
        {
            return Caption != null && Caption.IndexOf(text, StringComparison.CurrentCultureIgnoreCase) != -1;
        }