Welcome to mirror list, hosted at ThFree Co, Russian Federation.

InsertionMode.cs « Ajax « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e0affc98495f7a6f0a046524992719a8b5c94d3 (plain)
1
2
3
4
5
6
7
8
9
namespace System.Web.Mvc.Ajax
{
    public enum InsertionMode
    {
        Replace = 0,
        InsertBefore = 1,
        InsertAfter = 2
    }
}