Skip to content

Commit a151131

Browse files
florinciubotariuRon Petrusha
authored andcommitted
FwLinks replacement in visual-basic-folder (5) (#5799)
* FwLinks replacement in visual-basic-folder (5) * Fixed .NET API Browser links * Fixed .NET API Browser links #2
1 parent b2d4bbb commit a151131

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/visual-basic/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ Visual Basic is engineered for productively building type-safe and object-orient
4747
[Get Started Developing with Visual Studio](/visualstudio/ide/get-started-developing-with-visual-studio)
4848
Provides links to topics that help you learn about the basics of Visual Studio.
4949

50-
[.NET Framework Class Library](http://go.microsoft.com/fwlink/?LinkID=227195)
50+
[.NET API Browser](../../api/index.md)
5151
Provides entry to the library of classes, interfaces, and value types that are included in the Microsoft [!INCLUDE[dnprdnshort](~/includes/dnprdnshort-md.md)] SDK.

docs/visual-basic/language-reference/operators/await-operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ End Function
3737
```
3838

3939
> [!IMPORTANT]
40-
> For the complete example, see [Walkthrough: Accessing the Web by Using Async and Await](../../../visual-basic/programming-guide/concepts/async/walkthrough-accessing-the-web-by-using-async-and-await.md). You can download the sample from [Developer Code Samples](http://go.microsoft.com/fwlink/?LinkID=255191&clcid=0x409) on the Microsoft website. The example is in the AsyncWalkthrough_HttpClient project.
40+
> For the complete example, see [Walkthrough: Accessing the Web by Using Async and Await](../../../visual-basic/programming-guide/concepts/async/walkthrough-accessing-the-web-by-using-async-and-await.md). You can download the sample from [Developer Code Samples](https://code.msdn.microsoft.com/Async-Sample-Accessing-the-9c10497f) on the Microsoft website. The example is in the AsyncWalkthrough_HttpClient project.
4141
4242
If `Await` is applied to the result of a method call that returns a `Task(Of TResult)`, the type of the `Await` expression is TResult. If `Await` is applied to the result of a method call that returns a `Task`, the `Await` expression doesn't return a value. The following example illustrates the difference.
4343

docs/visual-basic/programming-guide/language-features/linq/introduction-to-linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Language-Integrated Query (LINQ) adds query capabilities to Visual Basic and pro
184184
[How to: Assign stored procedures to perform updates, inserts, and deletes (O/R Designer)](http://msdn.microsoft.com/library/e88224ab-ff61-4a3a-b6b8-6f3694546cac)
185185

186186
## Featured Book Chapters
187-
[Chapter 17: LINQ](http://go.microsoft.com/fwlink/?LinkId=195277) in [Programming Visual Basic 2008](http://go.microsoft.com/fwlink/?LinkId=195383)
187+
[Chapter 17: LINQ](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2008/ff652502(v=orm.10)) in [Programming Visual Basic 2008](https://docs.microsoft.com/previous-versions/visualstudio/visual-studio-2008/ff652504(v=orm.10))
188188

189189
## See Also
190190
[LINQ (Language-Integrated Query)](http://msdn.microsoft.com/library/a73c4aec-5d15-4e98-b962-1274021ea93d)

docs/visual-basic/programming-guide/language-features/operators-and-expressions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ An *operator* is a code element that performs an operation on one or more code e
5656

5757
In the preceding example, Visual Basic performs the operations in the expression on the right side of the assignment operator (`=`), then assigns the resulting value to the variable `x` on the left. There is no practical limit to the number of operators that can be combined into an expression, but an understanding of [Operator Precedence in Visual Basic](../../../../visual-basic/language-reference/operators/operator-precedence.md) is necessary to ensure that you get the results you expect.
5858

59-
For more information and examples, see [Operator Overloading in Visual Basic 2005](http://go.microsoft.com/fwlink/?LinkId=101703).
59+
For more information and examples, see [Operator Overloading in Visual Basic 2005](https://msdn.microsoft.com/library/ms379613(v=vs.80).aspx).
6060

6161
## See Also
6262
[Operators](../../../../visual-basic/language-reference/operators/index.md)

docs/visual-basic/programming-guide/language-features/procedures/how-to-define-an-operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If you have defined a class or structure, you can define the behavior of a stand
3030

3131
[!code-vb[VbVbcnProcedures#26](./codesnippet/VisualBasic/how-to-define-an-operator_2.vb)]
3232

33-
For more information and examples, see [Operator Overloading in Visual Basic 2005](http://go.microsoft.com/fwlink/?LinkId=101703).
33+
For more information and examples, see [Operator Overloading in Visual Basic 2005](https://msdn.microsoft.com/library/ms379613(v=vs.80).aspx).
3434

3535
## See Also
3636
[Operator Procedures](./operator-procedures.md)

docs/visual-basic/programming-guide/language-features/procedures/operator-procedures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ An operator procedure is a series of Visual Basic statements that define the beh
7373

7474
[!code-vb[VbVbcnProcedures#24](./codesnippet/VisualBasic/operator-procedures_2.vb)]
7575

76-
For more information and examples, see [Operator Overloading in Visual Basic 2005](http://go.microsoft.com/fwlink/?LinkId=101703).
76+
For more information and examples, see [Operator Overloading in Visual Basic 2005](https://msdn.microsoft.com/library/ms379613(v=vs.80).aspx).
7777

7878
## See Also
7979
[Procedures](./index.md)

docs/visual-basic/reference/net-framework-reference-information.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ This topic provides links to information about how to work with the [!INCLUDE[dn
2626
[.NET Framework Samples](http://msdn.microsoft.com/library/177055f8-4a1f-43e7-aee6-995c196079b1)
2727
Provides links to sample applications that demonstrate .NET Framework technologies.
2828

29-
[.NET Framework Class Library](http://go.microsoft.com/fwlink/?LinkID=227195)
29+
[.NET API Browser](../../../api/index.md)
3030
Provides syntax, code examples, and related information for each class in the .NET Framework namespaces.

0 commit comments

Comments
 (0)