File: UI\RegisteredScriptType.cs
Project: ndp\fx\src\xsp\system\Extensions\System.Web.Extensions.csproj (System.Web.Extensions)
//------------------------------------------------------------------------------
// <copyright file="RegisteredScriptType.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
 
namespace System.Web.UI {
    public enum RegisteredScriptType {
        ClientScriptInclude,
        ClientScriptBlock,
        ClientStartupScript,
        OnSubmitStatement
    }
}