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

Matches() public method

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