IStorageProviderStatusUISource.StatusUIChanged Event
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.
This change notification event notifies the client side to update the storage provider status UI flyout.
// Register
event_token StatusUIChanged(TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
// Revoke with event_token
void StatusUIChanged(event_token const* cookie) const;
// Revoke with event_revoker
IStorageProviderStatusUISource::StatusUIChanged_revoker StatusUIChanged(auto_revoke_t, TypedEventHandler<IStorageProviderStatusUISource, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageProviderStatusUISource,object> StatusUIChanged;
function onStatusUIChanged(eventArgs) { /* Your code */ }
iStorageProviderStatusUISource.addEventListener("statusuichanged", onStatusUIChanged);
iStorageProviderStatusUISource.removeEventListener("statusuichanged", onStatusUIChanged);
- or -
iStorageProviderStatusUISource.onstatusuichanged = onStatusUIChanged;
Event StatusUIChanged As TypedEventHandler(Of IStorageProviderStatusUISource, Object)
Event Type
TypedEventHandler<IStorageProviderStatusUISource,IInspectable>