MonoDroid.Dialog.EntryElement.Matches C# (CSharp) Method

Matches() public method

public Matches ( string text ) : bool
text string
return bool
		public override bool Matches(string text)
		{
			return (Value != null ? Value.IndexOf(text, StringComparison.CurrentCultureIgnoreCase) != -1 : false) || base.Matches(text);
		}