File: UI\WebControls\Expressions\SearchType.cs
Project: ndp\fx\src\xsp\system\Extensions\System.Web.Extensions.csproj (System.Web.Extensions)
namespace System.Web.UI.WebControls.Expressions {
    using System;        
    
    public enum SearchType {
        Contains,
        StartsWith,
        EndsWith
    }
}