Application.OnCachedFileUpdaterActivated Method
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.
Invoked when the application is activated due to an activation contract with ActivationKind as CachedFileUpdater.
protected:
virtual void OnCachedFileUpdaterActivated(CachedFileUpdaterActivatedEventArgs ^ args) = OnCachedFileUpdaterActivated;
void OnCachedFileUpdaterActivated(CachedFileUpdaterActivatedEventArgs const& args);
protected virtual void OnCachedFileUpdaterActivated(CachedFileUpdaterActivatedEventArgs args);
function onCachedFileUpdaterActivated(args)
Protected Overridable Sub OnCachedFileUpdaterActivated (args As CachedFileUpdaterActivatedEventArgs)
Parameters
Event data for the event.
Remarks
OnFileOpenPickerActivated is a pre-defined activation point handler that is invoked for a core Activated event when the ActivationKind is CachedFileUpdater. The default template app.xaml code-behind files always include an override for OnLaunched, but defining overrides for other activation points such as OnCachedFileUpdaterActivated is up to your app code.
All Application overrides involved in an activation scenario should call Window.Activate in their implementations.
For example code that overrides OnFileOpenPickerActivated, see File picker contracts sample.