//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { /// /// Allows a TypeConverter to access schema information stored on an object /// public interface IDataSourceViewSchemaAccessor { /// /// Returns the schema associated with the object implementing this interface. /// object DataSourceViewSchema { get; set; } } }