You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/azure/azure-tools.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Azure PowerShell is a PowerShell module of cmdlets for managing Azure resource d
22
22
23
23
## Azure Developer CLI (preview)
24
24
25
-
Azure Developer CLI (`azd`) is an open-source tool that accelerates the process of building cloud apps on Azure. The CLI provides best practice, developer-friendly commands that map to key stages in your workflow, whether you’re working in the terminal, your editor or integrated development environment (IDE), or DevOps.
25
+
Azure Developer CLI (`azd`) is an open-source tool that accelerates the process of building cloud apps on Azure. The CLI provides best practice, developer-friendly commands that map to key stages in your workflow, whether you're working in the terminal, your editor or integrated development environment (IDE), or DevOps.
26
26
27
27
You can use `azd` with extensible templates that include everything you need to get an application up and running in Azure. These templates include application code, and reusable infrastructure as code assets.
Copy file name to clipboardExpand all lines: docs/azure/install-azure-cli.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ recommendations: false
11
11
12
12
# Install the Azure CLI
13
13
14
-
In addition to the Azure Portal, Azure also offers the [Azure CLI](/cli/azure/) as a command-line tool to create and manage Azure resources. The Azure CLI offers the benefits of efficiency, repeatability, and the ability to script recurring tasks.
14
+
In addition to the Azure portal, Azure also offers the [Azure CLI](/cli/azure/) as a command-line tool to create and manage Azure resources. The Azure CLI offers the benefits of efficiency, repeatability, and the ability to script recurring tasks.
15
15
16
-
In practice, most developers use both the Azure Portal and the Azure CLI. Where as the Azure Portal is useful when exploring new services and getting an overview of all of the resources in your Azure account, most developers find the Azure CLI to be faster and more efficient. The Azure CLI can often accomplish in a single command what takes multiple steps in the Azure Portal. In addition, since Azure CLI commands can be saved to a file, developers can assure that recurrent tasks are run the same way each time.
16
+
In practice, most developers use both the Azure portal and the Azure CLI. Whereas the Azure portal is useful when exploring new services and getting an overview of all of the resources in your Azure account, most developers find the Azure CLI to be faster and more efficient. The Azure CLI can often accomplish in a single command what takes multiple steps in the Azure portal. In addition, since Azure CLI commands can be saved to a file, you can ensure that recurrent tasks are run the same way each time.
17
17
18
18
The Azure CLI is available for Windows, macOS, and Linux.
19
19
@@ -26,12 +26,12 @@ The Azure CLI is available for Windows, macOS, and Linux.
26
26
> [!div class="nextstepaction"]
27
27
> [Install the Azure CLI for Linux](/cli/azure/install-azure-cli-linux)
28
28
29
-
###Azure Cloud Shell
29
+
## Azure Cloud Shell
30
30
31
-
You can also use the Azure CLI in the Azure Cloud Shell at [https://shell.azure.com](https://shell.azure.com). The Azure Cloud Shell is a fully functional, browser-based shell for managing Azure resources. The Azure Cloud Shell is useful when you need a command line environment but are working on a device where you are unable to install the Azure CLI.
31
+
You can also use the Azure CLI in the Azure Cloud Shell at [https://shell.azure.com](https://shell.azure.com). The Azure Cloud Shell is a fully functional, browser-based shell for managing Azure resources. The Azure Cloud Shell is useful when you need a command line environment but are working on a device where you're unable to install the Azure CLI.
32
32
33
33

34
34
35
-
###Next steps
35
+
## Next steps
36
36
37
-
Next, you will want to [install additional Azure tools](./azure-tools.md) like Azure Storage Explorer and Azure Data Studio to make you more productive with Azure.
37
+
Next, you'll want to [install other Azure tools](./azure-tools.md) like Azure Storage Explorer and Azure Data Studio to make you more productive with Azure.
Copy file name to clipboardExpand all lines: docs/core/extensions/sslstream-migration-from-framework.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
---
2
-
title: Migrate SSL code from .NET Framework to .NET
2
+
title: Migrate SslStream code from .NET Framework to .NET
3
3
description: Learn how to migrate code that uses SslStream in .NET Framework to .NET.
4
4
author: rzikm
5
5
ms.author: radekzikmund
6
6
ms.date: 1/9/2023
7
7
---
8
8
9
-
# Migrate SSL code from .NET Framework to .NET
9
+
# Migrate SslStream code from .NET Framework to .NET
10
10
11
11
.NET Core brought many improvements as well as breaking changes to how <xref:System.Net.Security.SslStream> works. The most important change related to network security is that the <xref:System.Net.ServicePointManager> class has been mostly obsoleted and affects only the legacy <xref:System.Net.WebRequest> interface.
12
12
13
-
For each <xref:System.Net.Security.SslStream> instance, you must configure the allowed SSL/TLS protocols and certificate validation callbacks separately via <xref:System.Net.Security.SslServerAuthenticationOptions> or <xref:System.Net.Security.SslClientAuthenticationOptions>. To configure network security options used in HTTPS in <xref:System.Net.Http.HttpClient>, you need to configure the security options in the underlying handler. The default handler used by <xref:System.Net.Http.HttpClient> is <xref:System.Net.Http.SocketsHttpHandler>, which has an <xref:System.Net.Http.SocketsHttpHandler.SslOptions> property that accepts <xref:System.Net.Security.SslClientAuthenticationOptions>.
13
+
For each <xref:System.Net.Security.SslStream> instance, you must configure the allowed TLS protocols and certificate validation callbacks separately via <xref:System.Net.Security.SslServerAuthenticationOptions> or <xref:System.Net.Security.SslClientAuthenticationOptions>. To configure network security options used in HTTPS in <xref:System.Net.Http.HttpClient>, you need to configure the security options in the underlying handler. The default handler used by <xref:System.Net.Http.HttpClient> is <xref:System.Net.Http.SocketsHttpHandler>, which has an <xref:System.Net.Http.SocketsHttpHandler.SslOptions> property that accepts <xref:System.Net.Security.SslClientAuthenticationOptions>.
14
14
15
15
Consider the following example that demonstrates how to create an <xref:System.Net.Http.HttpClient> with a custom certificate validation callback:
16
16
@@ -36,7 +36,7 @@ HttpClient httpClient = new(
36
36
});
37
37
```
38
38
39
-
The following table show how to migrate individual <xref:System.Net.ServicePointManager> properties related to SSL/TLS.
39
+
The following table shows how to migrate individual <xref:System.Net.ServicePointManager> properties related to TLS.
0 commit comments