File: UI\WebControls\IDataBoundItemControl.cs
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web)
namespace System.Web.UI.WebControls {
    using System;    
    using System.Security.Permissions;
 
    public interface IDataBoundItemControl : IDataBoundControl {
        DataKey DataKey { 
            get; 
        }
 
        DataBoundControlMode Mode {
            get;
        }
    }
}