[]
Configurates ItemsSource. Sets ItemsSource settings.
public virtual TBuilder Bind(Action<CollectionViewServiceBuilder<T>> build)
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)
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)
Type | Name | Description |
---|---|---|
string | value | An action url to read the data. |
Type | Description |
---|---|
TBuilder | Current builder. |