1 //------------------------------------------------------------------------------
2 // <copyright file="ClientIDModes.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 
7 namespace System.Web.UI {
8 
9     using System;
10     using System.Diagnostics.CodeAnalysis;
11 
12 
13     [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase")]
14     public enum ClientIDMode {
15 
16         Inherit = 0,
17 
18         [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase")]
19         AutoID = 1,
20 
21         Predictable = 2,
22 
23         Static = 3,
24     }
25 }
26