e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
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; }
|
|
}
|
|
}
|
|
|
|
|