[]
Configurates ItemsSource. Sets ItemsSource settings.
public virtual TBuilder Bind(Action<CollectionViewServiceBuilder<T>> build)
Public Overridable Function Bind(build As Action(Of CollectionViewServiceBuilder(Of T))) As TBuilder
| Type | Name | Description |
|---|---|---|
| Action<CollectionViewServiceBuilder<T>> | build | An action to build the items source. |
| Type | Description |
|---|---|
| TBuilder | Current builder. |
Configurates ItemsSource. Sets ItemsSource settings with a collection.
public virtual TBuilder Bind(IEnumerable<T> value)
Public Overridable Function Bind(value As IEnumerable(Of T)) As TBuilder
| Type | Name | Description |
|---|---|---|
| IEnumerable<T> | value | A collection to specify the source collection. |
| Type | Description |
|---|---|
| TBuilder | Current builder. |
Configurates ItemsSource. Sets ItemsSource settings with the specified action url.
public virtual TBuilder Bind(string value)
Public Overridable Function Bind(value As String) As TBuilder
| Type | Name | Description |
|---|---|---|
| string | value | An action url to read the data. |
| Type | Description |
|---|---|
| TBuilder | Current builder. |