IStorageProviderStatusSource.Changed 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.
Note
Scenarios for this API are not supported. Use the IStorageProviderStatusUISource.StatusUIChanged event instead.
// Register
event_token Changed(TypedEventHandler<IStorageProviderStatusSource, IInspectable const&> const& handler) const;
// Revoke with event_token
void Changed(event_token const* cookie) const;
// Revoke with event_revoker
IStorageProviderStatusSource::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<IStorageProviderStatusSource, IInspectable const&> const& handler) const;
event TypedEventHandler<IStorageProviderStatusSource,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
iStorageProviderStatusSource.addEventListener("changed", onChanged);
iStorageProviderStatusSource.removeEventListener("changed", onChanged);
- or -
iStorageProviderStatusSource.onchanged = onChanged;
Event Changed As TypedEventHandler(Of IStorageProviderStatusSource, Object)
Event Type
TypedEventHandler<IStorageProviderStatusSource,IInspectable>