MonoTouch.Dialog.StringElement.Matches C# (CSharp) Méthode

Matches() public méthode

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