Skip to content

Commit 759b8a1

Browse files
authored
Replace legacy Code Gallery link with new Samples browser (#4166)
* Replace legacy Code Gallery link with new Samples browser * Corrected link, using aka.ms to encapsulate query string. * Fix & usage
1 parent f7c3dd1 commit 759b8a1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

xml/System.Threading.Tasks/Parallel.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
</remarks>
5050
<threadsafe>All public and protected members of <see cref="T:System.Threading.Tasks.Parallel" /> are thread-safe and may be used concurrently from multiple threads.</threadsafe>
5151
<related type="Article" href="~/docs/standard/parallel-programming/data-parallelism-task-parallel-library.md">Data Parallelism (Task Parallel Library)</related>
52-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
52+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
5353
</Docs>
5454
<Members>
5555
<MemberGroup MemberName="For">

xml/System.Threading.Tasks/Task.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
<altmember cref="T:System.Threading.Tasks.Task`1" />
166166
<related type="Article" href="~/docs/standard/parallel-programming/task-parallel-library-tpl.md">Task Parallel Library (TPL)</related>
167167
<related type="Article" href="~/docs/standard/parallel-programming/task-based-asynchronous-programming.md">Task-based Asynchronous Programming</related>
168-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
168+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
169169
</Docs>
170170
<Members>
171171
<MemberGroup MemberName=".ctor">

xml/System.Threading.Tasks/TaskCreationOptions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
6767
]]></format>
6868
</remarks>
69-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
69+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
7070
</Docs>
7171
<Members>
7272
<Member MemberName="AttachedToParent">

xml/System.Threading.Tasks/TaskFactory.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</remarks>
8484
<threadsafe>All public and protected members of <see cref="T:System.Threading.Tasks.TaskFactory" /> are thread-safe and may be used concurrently from multiple threads.</threadsafe>
8585
<related type="Article" href="~/docs/standard/parallel-programming/task-parallel-library-tpl.md">Task Parallel Library (TPL)</related>
86-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
86+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
8787
</Docs>
8888
<Members>
8989
<MemberGroup MemberName=".ctor">
@@ -456,7 +456,7 @@
456456
</AssemblyInfo>
457457
<Docs>
458458
<summary>Creates a continuation task that starts when a set of specified tasks has completed.</summary>
459-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
459+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
460460
</Docs>
461461
</MemberGroup>
462462
<Member MemberName="ContinueWhenAll">
@@ -1586,7 +1586,7 @@ The NotOn\* and OnlyOn\* <xref:System.Threading.Tasks.TaskContinuationOptions>,
15861586
<related type="Article" href="~/docs/standard/parallel-programming/task-parallel-library-tpl.md">Task Parallel Library (TPL)</related>
15871587
<related type="Article" href="~/docs/standard/parallel-programming/chaining-tasks-by-using-continuation-tasks.md">Chaining Tasks by Using Continuation Tasks</related>
15881588
<related type="Article" href="~/docs/standard/parallel-programming/task-cancellation.md">Task Cancellation</related>
1589-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
1589+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
15901590
</Docs>
15911591
</MemberGroup>
15921592
<Member MemberName="ContinueWhenAny">
@@ -4458,7 +4458,7 @@ The NotOn\* and OnlyOn\* <xref:System.Threading.Tasks.TaskContinuationOptions>,
44584458
44594459
]]></format>
44604460
</remarks>
4461-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
4461+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
44624462
</Docs>
44634463
</MemberGroup>
44644464
<Member MemberName="StartNew">

xml/System.Threading.Tasks/Task`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ For operations that do not return a value, you use the <xref:System.Threading.Ta
8282
<altmember cref="T:System.Threading.Tasks.Task" />
8383
<related type="Article" href="~/docs/standard/parallel-programming/task-parallel-library-tpl.md">Task Parallel Library (TPL)</related>
8484
<related type="Article" href="~/docs/standard/parallel-programming/task-based-asynchronous-programming.md">Task-based Asynchronous Programming</related>
85-
<related type="ExternalDocumentation" href="https://code.msdn.microsoft.com/Samples-for-Parallel-b4b76364">Samples for Parallel Programming with the .NET Framework</related>
85+
<related type="ExternalDocumentation" href="https://aka.ms/dotnet-parallel-samples">Samples for Parallel Programming with the .NET Core and .NET Standard</related>
8686
</Docs>
8787
<Members>
8888
<MemberGroup MemberName=".ctor">

0 commit comments

Comments
 (0)