C# Class Adf.Web.Process.WebViewProvider

Represents a manager for view i.e. web page in an web application related activities. Provides methods to activate a view i.e. to open a web page of an web application corresponding to a ITask and deactivate a view.
Inheritance: IViewProvider
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
ActivateView ( ITask task ) : void

Activates a view i.e. opens a web page of an web application corresponding to the specified ITask.

ActivateView ( ITask task, bool newView ) : void

Activates a view i.e. opens a web page of an web application corresponding to the specified ITask.

DeactivateView ( ITask task ) : void

Deactivates a view. Currently nothing is being done.

Method Details

ActivateView() public method

Activates a view i.e. opens a web page of an web application corresponding to the specified ITask.
public ActivateView ( ITask task ) : void
task ITask The , the corresponding web page /// of which is to open.
return void

ActivateView() public method

Activates a view i.e. opens a web page of an web application corresponding to the specified ITask.
public ActivateView ( ITask task, bool newView ) : void
task ITask The , the corresponding web page /// of which is to open.
newView bool The value to indicate whether a new web page is to open. /// Currently not being used.
return void

DeactivateView() public method

Deactivates a view. Currently nothing is being done.
public DeactivateView ( ITask task ) : void
task ITask The , the corresponding view /// of which is to deactivate.
return void