1 //------------------------------------------------------------------------------
2 // <copyright file="IDataKeysControl.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //------------------------------------------------------------------------------
6 namespace System.Web.UI {
7 
8     using System.Diagnostics.CodeAnalysis;
9     using System.Web.UI.WebControls;
10 
11     public interface IDataKeysControl {
12         [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays",
13                          Justification="Required by ASP.NET Parser.")]
14         [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId = "Member")]
15         string[] ClientIDRowSuffix { get; }
16 
17         [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId = "Member")]
18         DataKeyArray ClientIDRowSuffixDataKeys { get; }
19     }
20 }
21