1 namespace System.Web.UI.WebControls.Expressions {
2     using System;
3 
4     public enum SearchType {
5         Contains,
6         StartsWith,
7         EndsWith
8     }
9 }
10