22 lines
706 B
C#
22 lines
706 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="IDataSourceViewSchemaAccessor.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.UI {
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// Allows a TypeConverter to access schema information stored on an object
|
||
|
/// </devdoc>
|
||
|
public interface IDataSourceViewSchemaAccessor {
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// Returns the schema associated with the object implementing this interface.
|
||
|
/// </devdoc>
|
||
|
object DataSourceViewSchema { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|