|
#region Assembly System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Web.Extensions.Design.dll
#endregion
namespace System.Web.UI.Design.WebControls
{
internal interface ILinqDataSourcePropertyItem : IComparable<ILinqDataSourcePropertyItem>
{
string DisplayName { get; set; }
bool IsIdentity { get; }
bool IsNullable { get; }
bool IsPrimaryKey { get; }
bool IsProperty { get; }
bool IsReadOnly { get; }
bool IsUnique { get; }
int Length { get; }
string Name { get; }
Type Type { get; }
}
} |