DataSourceProvider Members
.NET Framework 3.5
Common base class and contract for DataSourceProvider objects, which are factories that execute some queries to produce a single object or a list of objects that you can use as binding source objects.
The DataSourceProvider type exposes the following members.
| Name | Description | |
|---|---|---|
|
DataSourceProvider | Initializes a new instance of the DataSourceProvider class. This is a protected constructor. |
| Name | Description | |
|---|---|---|
|
BeginInit | Indicates that initialization of this object is about to begin; no implicit Refresh occurs until the matched EndInit method is called. |
|
BeginQuery | When overridden in a derived class, this base class calls this method when InitialLoad or Refresh has been called. The base class delays the call if refresh is deferred or initial load is disabled. |
|
DeferRefresh | Enters a defer cycle that you can use to change properties of the provider and delay automatic refresh. |
|
EndInit | Indicates that the initialization of this object has completed; this causes a Refresh if no other DeferRefresh is outstanding. |
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
InitialLoad | Starts the initial query to the underlying data model. The result is returned on the Data property. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
OnPropertyChanged | Raises the PropertyChanged event with the provided arguments. |
|
OnQueryFinished | Overloaded. Derived classes call this method to indicate that a query has finished. |
|
Refresh | Initiates a refresh operation to the underlying data model. The result is returned on the Data property. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
|
Data | Gets the underlying data object. |
|
Dispatcher | Gets or sets the current Dispatcher object to the UI thread to use. |
|
Error | Gets the error of the last query operation. |
|
IsInitialLoadEnabled | Gets or sets a value that indicates whether to prevent or delay the automatic loading of data. |
|
IsRefreshDeferred | Gets a value that indicates whether there is an outstanding DeferRefresh in use. |
| Name | Description | |
|---|---|---|
|
DataChanged | Occurs when the Data property has a new value. |
|
PropertyChanged | Occurs when a property value changes. |
| Name | Description | |
|---|---|---|
|
ISupportInitialize.BeginInit | This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended to be used directly from your code. |
|
ISupportInitialize.EndInit | This member supports the Windows Presentation Foundation (WPF) infrastructure and is not intended to be used directly from your code. |
|
INotifyPropertyChanged.PropertyChanged | Occurs when a property value changes. |