Skip to content

Commit

Permalink
store terminology updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mijacobs committed Oct 26, 2017
1 parent c84bb9b commit 2e74dec
Show file tree
Hide file tree
Showing 647 changed files with 796 additions and 796 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ A [CachedFileUpdaterActivatedEventArgs](cachedfileupdateractivatedeventargs.md)
Apps written in JavaScript must listen for and handle [Windows.UI.WebUI.WebUIApplication.activated](../windows.ui.webui/webuiapplication_activated.md) events.


Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnCachedFileUpdaterActivated](../windows.ui.xaml/application_oncachedfileupdateractivated.md) is up to your app code.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnCachedFileUpdaterActivated](../windows.ui.xaml/application_oncachedfileupdateractivated.md) is up to your app code.

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Enables a camera settings app to handle the activation parameters for the app.
## -examples

## -see-also
[Windows.UI.Core.CoreApplicationView.Activated](../windows.applicationmodel.core/coreapplicationview_activated.md), [CameraCaptureUI](../windows.media.capture/cameracaptureui.md), [Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?LinkID=249442), [Developing device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=226802)
[Windows.UI.Core.CoreApplicationView.Activated](../windows.applicationmodel.core/coreapplicationview_activated.md), [CameraCaptureUI](../windows.media.capture/cameracaptureui.md), [Microsoft Store device app for camera sample](http://go.microsoft.com/fwlink/p/?LinkID=249442), [Developing device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=226802)
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ If [Kind](camerasettingsactivatedeventargs_kind.md) is **CameraSettings**, the a


> [!NOTE]
> Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your Windows Store app.
> Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your UWP app.
## -examples

## -see-also
[Windows Store device app for camera sample](http://go.microsoft.com/fwlink/p/?LinkID=249442), [Developing device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=226802)
[Microsoft Store device app for camera sample](http://go.microsoft.com/fwlink/p/?LinkID=249442), [Developing device apps for cameras](http://go.microsoft.com/fwlink/p/?LinkId=226802)
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gets the object that controls device settings on the camera.
The object that controls device settings on the camera.

## -remarks
Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your Windows Store app.
Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your UWP app.

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gets the object that implements additional extended settings for the camera.
An object implementing extended settings for the camera.

## -remarks
Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your Windows Store app.
Do not declare device capabilities for webcam or location. Those capabilities will cause a prompt for permissions to appear, which will obstruct the UI in your UWP app.

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Provides data when an app is activated because it is the app associated with a f
## -remarks
This object is accessed when you implement an event handler to respond to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **File**.

Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileActivated](../windows.ui.xaml/application_onfileactivated.md) is up to your app code.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileActivated](../windows.ui.xaml/application_onfileactivated.md) is up to your app code.

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Apps written in JavaScript must listen for and handle [Windows.UI.WebUI.webUIApp



Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileOpenPickerActivated](../windows.ui.xaml/application_onfileopenpickeractivated.md) is up to your app code.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileOpenPickerActivated](../windows.ui.xaml/application_onfileopenpickeractivated.md) is up to your app code.

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Provides information about an activated event that fires after the app was suspe
## -remarks
You access a [FileOpenPickerContinuationEventArgs](fileopenpickercontinuationeventargs.md) object when you implement an event handler that responds to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **PickFileContinuation**.

For an example that uses the [FileOpenPickerContinuationEventArgs](fileopenpickercontinuationeventargs.md) class, see [How to continue your Windows Phone Store app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).
For an example that uses the [FileOpenPickerContinuationEventArgs](fileopenpickercontinuationeventargs.md) class, see [How to continue your Windows Phone 8.x app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Apps written in JavaScript must listen for and handle [Windows.UI.WebUI.webUIApp



Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileSavePickerActivated](../windows.ui.xaml/application_onfilesavepickeractivated.md) is up to your app code.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnFileSavePickerActivated](../windows.ui.xaml/application_onfilesavepickeractivated.md) is up to your app code.

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Provides information about an activated event that fires after the app was suspe
## -remarks
You access a [FileSavePickerContinuationEventArgs](filesavepickercontinuationeventargs.md) object when you implement an event handler that responds to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **PickSaveFileContinuation**.

For an example that uses the [FileSavePickerContinuationEventArgs](filesavepickercontinuationeventargs.md) class, see [How to continue your Windows Phone Store app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).
For an example that uses the [FileSavePickerContinuationEventArgs](filesavepickercontinuationeventargs.md) class, see [How to continue your Windows Phone 8.x app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Provides information about an activated event that fires after the app was suspe
## -remarks
You access a [FolderPickerContinuationEventArgs](folderpickercontinuationeventargs.md) object when you implement an event handler that responds to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **PickFolderContinuation**.

For an example that uses the [FolderPickerContinuationEventArgs](folderpickercontinuationeventargs.md) class, see [How to continue your Windows Phone Store app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).
For an example that uses the [FolderPickerContinuationEventArgs](folderpickercontinuationeventargs.md) class, see [How to continue your Windows Phone 8.x app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Provides event information when an app is launched.
## -remarks
This object is accessed when you respond to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **Launch**.

Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md). The default implementation includes initial navigation support and state management through the SuspensionManager helper class.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md). The default implementation includes initial navigation support and state management through the SuspensionManager helper class.
<!--Maybe need some polite way of saying do not mess w the default implementation of OnLaunched unless you actually know what you are doing-->

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Indicates whether the app was pre-launched.
Indicates whether the app was pre-launched. **TRUE** indicates it was; otherwise, **FALSE**.

## -remarks
When available system resources allow, the startup performance of Windows Store app is improved by proactively launching the user’s most frequently used apps in the background. See [Handle app prelaunch](http://msdn.microsoft.com/library/a4838ac2-22d7-46ba-9eb2-f3c248e22f52) for details.
When available system resources allow, the startup performance of UWP app is improved by proactively launching the user’s most frequently used apps in the background. See [Handle app prelaunch](http://msdn.microsoft.com/library/a4838ac2-22d7-46ba-9eb2-f3c248e22f52) for details.

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Provides data when an app is activated because it is the app associated with a U
## -remarks
This object is accessed when you implement an event handler to respond to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **Protocol**.

Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnActivated](../windows.ui.xaml/application_onactivated.md) is up to your app code. If [ActivationKind](activationkind.md) is **Protocol** then the interface-typed [IActivatedEventArgs](iactivatedeventargs.md) from [OnActivated](../windows.ui.xaml/application_onactivated.md) can be cast to [ProtocolActivatedEventArgs](protocolactivatedeventargs.md).
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnActivated](../windows.ui.xaml/application_onactivated.md) is up to your app code. If [ActivationKind](activationkind.md) is **Protocol** then the interface-typed [IActivatedEventArgs](iactivatedeventargs.md) from [OnActivated](../windows.ui.xaml/application_onactivated.md) can be cast to [ProtocolActivatedEventArgs](protocolactivatedeventargs.md).

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Provides information for an application that is a target for share operations.
## -remarks
This object is accessed when you implement an event handler to respond to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **ShareTarget**.

Windows Store app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnShareTargetActivated](../windows.ui.xaml/application_onsharetargetactivated.md) is up to your app code.
UWP app using C++, C#, or Visual Basic typically implement activation points by overriding methods of the [Application](../windows.ui.xaml/application.md) object. The default template app.xaml code-behind files always include an override for [OnLaunched](../windows.ui.xaml/application_onlaunched.md), but defining overrides for other activation points such as [OnShareTargetActivated](../windows.ui.xaml/application_onsharetargetactivated.md) is up to your app code.

All [Application](../windows.ui.xaml/application.md) overrides involved in an activation scenario should call [Window.Activate](../windows.ui.xaml/window_activate.md) in their implementations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Provides information to an app that was launched after being suspended for a web
## -remarks
You access a [WebAuthenticationBrokerContinuationEventArgs](webauthenticationbrokercontinuationeventargs.md) object when you implement an event handler that responds to [Activated](../windows.applicationmodel.core/coreapplicationview_activated.md) events when [ActivationKind](activationkind.md) is **WebAuthenticationBrokerContinuation**.

For an example that uses the [WebAuthenticationBrokerContinuationEventArgs](webauthenticationbrokercontinuationeventargs.md) class, see [How to continue your Windows Phone Store app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).
For an example that uses the [WebAuthenticationBrokerContinuationEventArgs](webauthenticationbrokercontinuationeventargs.md) class, see [How to continue your Windows Phone 8.x app after calling an AndContinue method](http://msdn.microsoft.com/library/3398d631-ff80-4336-be45-8ee3ea96fbdb).

## -examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Windows.ApplicationModel.AppExtensions

## -description
Enable your Windows Store app to host content provided by other Windows Store apps. Discover, enumerate, and access read-only content from those apps.
Enable your UWP app to host content provided by other UWP apps. Discover, enumerate, and access read-only content from those apps.

## -remarks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The [Rect](../windows.foundation/rect.md) is the rectangular area of user select
When this method completes, it returns a **String** object that represents the [RoamingId](appointment_roamingid.md) of the appointment. If the appointment identifier returned is an empty string, the appointment was not added to the Appointments provider app.

## -remarks
> For Windows Phone Store app, this method behaves the same as [ShowEditNewAppointmentAsync](appointmentmanager_showeditnewappointmentasync.md), in that the fields in the Add Appointment UI are editable by the user.
> For Windows Phone 8.x apps, this method behaves the same as [ShowEditNewAppointmentAsync](appointmentmanager_showeditnewappointmentasync.md), in that the fields in the Add Appointment UI are editable by the user.
## -examples

Expand Down
Loading

0 comments on commit 2e74dec

Please sign in to comment.