C# Class Telerik.Web.Mvc.UI.Fluent.TreeViewBindingSettingsBuilder

Defines the fluent interface for building TreeViewBindingSettingsBuilder
Inheritance: IHideObjectMembers
Show file Open project: juanplopes/simple-telerik Class Usage Examples

Public Methods

Method Description
Enabled ( bool value ) : TreeViewBindingSettingsBuilder

Enables or disables binding.

The Enabled method is useful when you need to enable binding based on certain conditions.

Select ( string routeName ) : TreeViewBindingSettingsBuilder

Sets the route name for the select operation

Select ( string routeName, RouteValueDictionary routeValues ) : TreeViewBindingSettingsBuilder

Sets the route and values for the select operation

Select ( string routeName, object routeValues ) : TreeViewBindingSettingsBuilder

Sets the route and values for the select operation

Select ( string actionName, string controllerName ) : TreeViewBindingSettingsBuilder

Sets the action, controller and route values for the select operation

Select ( string actionName, string controllerName, RouteValueDictionary routeValues ) : TreeViewBindingSettingsBuilder

Sets the action, controller and route values for the select operation

Select ( string actionName, string controllerName, object routeValues ) : TreeViewBindingSettingsBuilder

Sets the action, controller and route values for the select operation

TreeViewBindingSettingsBuilder ( TreeViewBindingSettings settings ) : System.Web.Routing

Initializes a new instance of the TreeViewBindingSettingsBuilder class.

Method Details

Enabled() public method

Enables or disables binding.
The Enabled method is useful when you need to enable binding based on certain conditions.
public Enabled ( bool value ) : TreeViewBindingSettingsBuilder
value bool
return TreeViewBindingSettingsBuilder

Select() public method

Sets the route name for the select operation
public Select ( string routeName ) : TreeViewBindingSettingsBuilder
routeName string Name of the route.
return TreeViewBindingSettingsBuilder

Select() public method

Sets the route and values for the select operation
public Select ( string routeName, RouteValueDictionary routeValues ) : TreeViewBindingSettingsBuilder
routeName string Name of the route.
routeValues RouteValueDictionary The route values.
return TreeViewBindingSettingsBuilder

Select() public method

Sets the route and values for the select operation
public Select ( string routeName, object routeValues ) : TreeViewBindingSettingsBuilder
routeName string Name of the route.
routeValues object The route values.
return TreeViewBindingSettingsBuilder

Select() public method

Sets the action, controller and route values for the select operation
public Select ( string actionName, string controllerName ) : TreeViewBindingSettingsBuilder
actionName string Name of the action.
controllerName string Name of the controller.
return TreeViewBindingSettingsBuilder

Select() public method

Sets the action, controller and route values for the select operation
public Select ( string actionName, string controllerName, RouteValueDictionary routeValues ) : TreeViewBindingSettingsBuilder
actionName string Name of the action.
controllerName string Name of the controller.
routeValues RouteValueDictionary The route values.
return TreeViewBindingSettingsBuilder

Select() public method

Sets the action, controller and route values for the select operation
public Select ( string actionName, string controllerName, object routeValues ) : TreeViewBindingSettingsBuilder
actionName string Name of the action.
controllerName string Name of the controller.
routeValues object The route values.
return TreeViewBindingSettingsBuilder

TreeViewBindingSettingsBuilder() public method

Initializes a new instance of the TreeViewBindingSettingsBuilder class.
public TreeViewBindingSettingsBuilder ( TreeViewBindingSettings settings ) : System.Web.Routing
settings TreeViewBindingSettings The settings.
return System.Web.Routing