| Name | Description |
| ActualSchema | Gets the resolved schema for the data provider. Represents which properties are available for the items. |
| DeferAutoRefresh | Gets or sets whether the auto refresh mechanism of the data provider is currently defered. The data provider will not react to most setting changes while this is set to true an will instead defer processing. Setting this value to false will queue a new refresh. |
| ExecutionContext | Gets or sets the execution context that the data provider should synchronize asynchronous actions with, or use to defer delayed actions. |
| FilterExpressions | Gets a collection to add filter expressions to. Changing the filter expressions in this collection will adjust the filter applied to the data provider. |
| GroupDescriptions | Gets a collection to add grouping descriptions to. Changing the grouping descriptions in this collection will adjust the grouping applied to the data provider. |
| IsFilteringSupported | Gets if filtering is supported on the data provider. |
| IsGroupingSupported | Gets if grouping is supported on the data provider. |
| IsItemIndexLookupSupported | Gets whether lookup of an index for a provided item is supported. |
| IsKeyIndexLookupSupported | Gets whether lookup of an index for a provided primary key value is supported. |
| IsSortingSupported | Gets if sorting is supported on the data provider. |
| NotifyUsingSourceIndexes | Gets whether, when manually notifying the data source of changes, one should use indexes relative to the actual source data, or relative to the view the data source is maintaining into the data. |
| PropertiesRequested | Gets or sets a list of property references for the properties desired by the consumer of the data provider. If known, the data provider may take steps to request only those properties, or to ensure that those properties are included, rather than the default behavior for this type of data provider. |
| SchemaIncludedProperties | Gets or sets what properties should be included when resolving the datasource schema. If null, all properties are included. |
| SortDescriptions | Gets a collection to add sort descriptions to. Changing the sort descriptions in this collection will adjust the sort applied to the data provider. |
| SummaryDescriptions | Gets a collection to add summary descriptions to. Changing the summary descriptions in this collection will adjust the summaries applied to the data provider. |
| SummaryScope | Gets or sets the scope which summaries are calculated for. |
| UpdateNotifier | Gets or sets an DataSource update notifier that the data provider should invoke methods on to indicate various changes have occurred. |