DataSourceBuilder
Methods
Ajax()
Use it to configure Ajax binding.
Example
.DataSource(dataSource => dataSource
.Ajax()
)
Server()
Use it to configure Server binding.
Example
.DataSource(dataSource => dataSource
.Server()
)
WebApi()
Use it to configure WebApi binding.
Example
.DataSource(dataSource => dataSource
.WebApi()
)
Custom()
Use it to configure Custom binding.
Example
.DataSource(dataSource => dataSource
.Custom()
)
SignalR()
Use it to configure SignalR binding.
Example
.DataSource(dataSource => dataSource
.SignalR()
)