1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
//------------------------------------------------------------------------------
// <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; }
}
}
|