SignalRCrudOperationsBuilderBase
Methods
Read(System.String)
The name of the method of the SignalR hub responsible for reading data items.
Parameters
method - System.String
Method name
Example
@(Html.Kendo().DataSource<OrderViewModel>()
.Name("ds")
.SignalR(s=>s.Transport(t=> {
t.Client(c => c.Read("methodName"));
}))
)