StorageProviderStatusUI.ProviderState Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides the current sync status of the storage provider status UI.
public:
property StorageProviderState ProviderState { StorageProviderState get(); void set(StorageProviderState value); };
StorageProviderState ProviderState();
void ProviderState(StorageProviderState value);
public StorageProviderState ProviderState { get; set; }
var storageProviderState = storageProviderStatusUI.providerState;
storageProviderStatusUI.providerState = storageProviderState;
Public Property ProviderState As StorageProviderState
Property Value
The current sync status of the storage provider status UI as a StorageProviderState.
Examples
Please refer to the CloudMirror sample app for more details.
Remarks
Possible StorageProviderState
values are:
State | Description |
---|---|
Error |
The storage provider has encountered errors. |
InSync |
The storage provider is currently in-sync. |
Offline |
The storage provider is currently offline. |
Paused |
The storage provider has paused syncing. |
Syncing |
The storage provider is currently syncing. |
Warning |
The storage provider would like to display a warning message to the user. |