ObjectDataSource.GetViewNames 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.
Retrieves a collection of names representing the list of view objects that are associated with the ObjectDataSource object.
protected:
override System::Collections::ICollection ^ GetViewNames();
protected override System.Collections.ICollection GetViewNames ();
override this.GetViewNames : unit -> System.Collections.ICollection
Protected Overrides Function GetViewNames () As ICollection
Returns
An ICollection that contains the names of the views associated with the ObjectDataSource.
Remarks
The ObjectDataSource control supports only one view, named DefaultView
, on its underlying data. The GetViewNames method returns a single-element collection of this one view name.
The GetViewNames method is intended to be called by data-bound controls, not by page code.