Skip to content

Commit 9493720

Browse files
Mike JacobsMike Jacobs
authored andcommitted
Merged PR 15492: More link fixes
1 parent e951adb commit 9493720

File tree

187 files changed

+214
-214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+214
-214
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ After you create the pull request, a member of the Windows docs team will review
2525

2626
To make substantial changes to an existing article, add or change images, or contribute a new article, we recommend forking the official repo into your GitHub account, and then creating a local clone.
2727

28-
For more info, see [Fork a Repo](https://help.github.com/articles/fork-a-repo/).
28+
For more info, see [Fork a Repo](https://help.github.com/articles/fork-a-repo).
2929

3030
## Resources
3131

windows.applicationmodel.activation/printtasksettingsactivatedeventargs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Provides information in response to the event that is raised when print task set
2222
## -examples
2323

2424
## -see-also
25-
[Windows.UI.Core.CoreApplicationView.Activated](../windows.applicationmodel.core/coreapplicationview_activated.md), [ device apps for printers](https://msdn.microsoft.com/library/windows/hardware/dn265150(v=vs.85).aspx)
25+
[Windows.UI.Core.CoreApplicationView.Activated](../windows.applicationmodel.core/coreapplicationview_activated.md), [ device apps for printers](https://docs.microsoft.com/windows-hardware/drivers/devapps/windows-store-device-apps-for-printers)

windows.applicationmodel.background/backgroundtaskbuilder_taskentrypoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The name of an application-defined class that performs the work of a background
2020
> The task entry point class must implement the [IBackgroundTask](ibackgroundtask.md) interface. The system calls [IBackgroundTask::Run ](ibackgroundtask_run_2017283929.md) when the background task is triggered. In addition, the class must be specified in the `<Extensions>` section of the application's manifest as `<Extension Category="windows.backgroundTasks" EntryPoint="appNamespace.appClassName">`.The task entry point class can be implemented in the same process as the application's foreground component (in-proc); however, it cannot run on any of the application's foreground threads because the application might be suspended when the background task is triggered. For best results, implement the class in a separate process (out-of-proc) to decouple it from the application's foreground components and allow the system to manage the application's processes more efficiently.
2121
2222
> **UWP app using JavaScript**
23-
> The entry point for a JavaScript background task is a JavaScript start page. See [WebUIBackgroundTaskInstance.current](../windows.ui.webui/webuibackgroundtaskinstance_current.md) for more information.Note that JavaScript background tasks must call [close()](https://msdn.microsoft.com/library/hh673568(v=vs.85).aspx) to terminate when they are done, so they don't continue to consume the user's memory and battery.
23+
> The entry point for a JavaScript background task is a JavaScript start page. See [WebUIBackgroundTaskInstance.current](../windows.ui.webui/webuibackgroundtaskinstance_current.md) for more information.Note that JavaScript background tasks must call [close()](https://docs.microsoft.com/previous-versions/windows/internet-explorer/ie-developer/dev-guides/hh673568(v=vs.85)) to terminate when they are done, so they don't continue to consume the user's memory and battery.
2424
2525

2626

windows.applicationmodel.background/bluetoothleadvertisementwatchertrigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following advertisement types are not allowed to be filtered for in the back
3131

3232
A background filter for a raw section of type manufacturer specific data (0xFF) that only matches for the second byte of the section with 0x00 will be rejected, as it corresponds to the most significant byte of the company identifier field. All SIG-assigned company identifiers currently have this byte set to 0x00 and performing a partial match with only a single byte can potentially result in an excess of received advertisements when in presence of multiple advertisers. This could significantly impact the battery life of the system.
3333

34-
Use of a BluetoothLEAdvertisementWatcherTrigger is limited by the hardware offload resources available. New Windows devices with [HCI Extensions](https://msdn.microsoft.com/library/windows/hardware/dn917903(v=vs.85).aspx) support in the local Bluetooth radio provide lower power advertisement scanning, improving battery life for long term scenarios such as beacons. The amount of hardware resources available is dependent on the radio and current system-wide usage, and attempts to register for this trigger will return [BluetoothError.ResourceInUse](../windows.devices.bluetooth/bluetootherror.md) when no more resources are available. Apps should use these resources sparingly to provide a focused, power efficient scenario in watching for the unique advertisement data for only the specific remote advertisers which are needed.
34+
Use of a BluetoothLEAdvertisementWatcherTrigger is limited by the hardware offload resources available. New Windows devices with [HCI Extensions](https://docs.microsoft.com/windows-hardware/drivers/ddi/content/index) support in the local Bluetooth radio provide lower power advertisement scanning, improving battery life for long term scenarios such as beacons. The amount of hardware resources available is dependent on the radio and current system-wide usage, and attempts to register for this trigger will return [BluetoothError.ResourceInUse](../windows.devices.bluetooth/bluetootherror.md) when no more resources are available. Apps should use these resources sparingly to provide a focused, power efficient scenario in watching for the unique advertisement data for only the specific remote advertisers which are needed.
3535

3636
While many new Windows devices have HCI Extensions support, some may not, especially in cases of upgrades on older devices from older Windows versions. In these cases, Windows will emulate the hardware filtering in software, providing a maximum of 20 trigger conditions per device, across all apps on the system. When using this software emulation, attempts to register for trigger resources once the maximum has been reached will cause an exception to be thrown, with error **ERROR_NO_SYSTEM_RESOURCES (0x800705AA)**.
3737

windows.applicationmodel.calls/phonecallhistoryentryreader_readbatchasync_888788553.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public Windows.Foundation.IAsyncOperation<Windows.Foundation.Collections.IVector
1313
Returns a list of the [PhoneCallHistoryEntry](phonecallhistoryentry.md) objects.
1414

1515
## -returns
16-
An asynchronous operation that returns an [IVectorView](https://docs.microsoft.com/previous-versions//br224594(v=vs.85)) upon successful completion.
16+
An asynchronous operation that returns an [IVectorView](https://docs.microsoft.com/previous-versions/br224594(v=vs.85)) upon successful completion.
1717

1818
## -remarks
1919

windows.applicationmodel.chat/chatmessagechangereader_readbatchasync_888788553.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Returns a batch list of chat message change objects from the message store’s c
1717
An asynchronous operation that returns a list of changes.
1818

1919
## -remarks
20-
This method returns an IReadOnlyList of [ChatMessageChange class](chatmessagechange.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions//bb776309(v=vs.85)) as shown in the following example:
20+
This method returns an IReadOnlyList of [ChatMessageChange class](chatmessagechange.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions/bb776309(v=vs.85)) as shown in the following example:
2121

2222
```
2323
ChatMessageChangeTracker tracker = messageStore.ChangeTracker;

windows.applicationmodel.chat/chatmessagemanager_requeststoreasync_428591920.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Returns the SMS messaging store for the phone.
1717
An asynchronous operation that returns a [ChatMessageStore](chatmessagestore.md) on successful completion.
1818

1919
## -remarks
20-
This method returns an [IReadOnlyList](https://docs.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1?redirectedfrom=MSDN) of [ChatMessageStore class](chatmessagestore.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions//bb776309(v=vs.85)) as shown in the following example:
20+
This method returns an [IReadOnlyList](https://docs.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1?redirectedfrom=MSDN) of [ChatMessageStore class](chatmessagestore.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions/bb776309(v=vs.85)) as shown in the following example:
2121

2222
```
2323
ChatMessageStore store = await ChatMessageManager.RequestStoreAsync();

windows.applicationmodel.chat/chatmessagereader_readbatchasync_888788553.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Returns a batch list of chat messages from the message store.
1717
An asynchronous operation that returns a list of chat messages upon successful completion.
1818

1919
## -remarks
20-
This method returns an [IReadOnlyList](https://docs.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1?redirectedfrom=MSDN) of [ChatMessage class](chatmessage.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions//bb776309(v=vs.85)) as shown in the following example:
20+
This method returns an [IReadOnlyList](https://docs.microsoft.com/dotnet/api/system.collections.generic.ireadonlylist-1?redirectedfrom=MSDN) of [ChatMessage class](chatmessage.md) objects. The method is invoked as an [IAsyncOperation](https://docs.microsoft.com/previous-versions/bb776309(v=vs.85)) as shown in the following example:
2121

2222
```
2323
IReadOnlyList<ChatMessage> msgList = await messageStore.GetMessageReader.ReadBatchAsync();

windows.applicationmodel.contacts/contactdate_year.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public Windows.Foundation.IReference<int> Year { get; set; }
1010
# Windows.ApplicationModel.Contacts.ContactDate.Year
1111

1212
## -description
13-
Gets and sets the year for an important date for a contact. This value must be convertible to a [FILETIME](https://msdn.microsoft.com/library/windows/desktop/ms724284(v=vs.85).aspx) structure.
13+
Gets and sets the year for an important date for a contact. This value must be convertible to a [FILETIME](https://docs.microsoft.com/windows/desktop/api/minwinbase/ns-minwinbase-filetime) structure.
1414

1515
## -property-value
1616
The year for an important date for a contact.

windows.applicationmodel.contacts/contactmanager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ For info about how to manage contacts, see [Managing contact cards ](https://doc
2828
## -examples
2929

3030
## -see-also
31-
[Contact manager API sample](https://go.microsoft.com/fwlink/p/?LinkID=310079), [IContactManagerInterop](https://docs.microsoft.com/previous-versions//dn302109(v=vs.85)), [Contact cards sample (Windows 10)](https://go.microsoft.com/fwlink/p/?LinkId=624040)
31+
[Contact manager API sample](https://go.microsoft.com/fwlink/p/?LinkID=310079), [IContactManagerInterop](https://docs.microsoft.com/previous-versions/dn302109(v=vs.85)), [Contact cards sample (Windows 10)](https://go.microsoft.com/fwlink/p/?LinkId=624040)
3232
## -capabilities
3333
contactsSystem

0 commit comments

Comments
 (0)