DataSourceBuilder
Methods
Ajax()
Use it to configure Ajax binding.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .Ajax()
            )
             
WebApi()
Use it to configure WebApi binding.
RETURNS
An instance of WebApiDataSourceBuilder for method chaining.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .WebApi()
            )
             
Custom()
Use it to configure Custom binding.
RETURNS
An instance of CustomDataSourceBuilder for method chaining.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .Custom()
            )
             
SignalR()
Use it to configure SignalR binding.
RETURNS
An instance of SignalRDataSourceBuilder for method chaining.
Example
Razor
 
            .DataSource(dataSource => dataSource
                    .SignalR()
            )