ObjectDataSourceDesigner.GetView(String) Method

Definition

Returns a data source view with the specified name.

public:
 override System::Web::UI::Design::DesignerDataSourceView ^ GetView(System::String ^ viewName);
public override System.Web.UI.Design.DesignerDataSourceView GetView (string viewName);
override this.GetView : string -> System.Web.UI.Design.DesignerDataSourceView
Public Overrides Function GetView (viewName As String) As DesignerDataSourceView

Parameters

viewName
String

A string containing the name of the ObjectDesignerDataSourceView.

Returns

An ObjectDesignerDataSourceView with the name specified by viewName.

Remarks

The GetView method returns an ObjectDesignerDataSourceView object with the specified name. If viewName is null or an empty string (""), the first view name in the array of names that is returned by GetViewNames is used as the specified name. If no view names are returned by the GetViewNames, GetView generates an unnamed ObjectDesignerDataSourceView.

Applies to

See also