TypeSchema.GetViews Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an array of schema descriptors for views into a data source.
public:
virtual cli::array <System::Web::UI::Design::IDataSourceViewSchema ^> ^ GetViews();
public System.Web.UI.Design.IDataSourceViewSchema[] GetViews ();
abstract member GetViews : unit -> System.Web.UI.Design.IDataSourceViewSchema[]
override this.GetViews : unit -> System.Web.UI.Design.IDataSourceViewSchema[]
Public Function GetViews () As IDataSourceViewSchema()
Returns
An array of instances of IDataSourceViewSchema, or of instances of a class that implements the IDataSourceViewSchema interface.
Implements
Remarks
Although the GetViews method always returns an array of IDataSourceViewSchema objects that implement the IDataSourceViewSchema interface, the exact return value is dependent on the object that is provided when creating the instance of the TypeSchema class.
The following table provides examples of return values.
Underlying Type | Return Value |
---|---|
A DataSet | An array of type DataSetViewSchema, one for each DataTable. |
A DataTable | A one-item array containing a DataSetViewSchema. |
An IEnumerable type | A one-item array containing an IDataSourceViewSchema. |
Any other type | A one-item array containing an IDataSourceViewSchema. |