Skip to content

Commit 12d0b1f

Browse files
authored
Update configure-ssl-certificate-in-code.md
1 parent 3bc579d commit 12d0b1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/app-service/configure-ssl-certificate-in-code.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The `WEBSITE_LOAD_CERTIFICATES` app setting makes the specified certificates acc
5252

5353
In C# code, you access the certificate by the certificate thumbprint. The following code loads a certificate with the thumbprint `E661583E8FABEF4C0BEF694CBC41C28FB81CD870`.
5454

55-
```c#
55+
```csharp
5656
using System;
5757
using System.Linq;
5858
using System.Security.Cryptography.X509Certificates;
@@ -111,7 +111,7 @@ The `WEBSITE_LOAD_CERTIFICATES` app settings makes the specified certificates ac
111111

112112
The certificate file names are the certificate thumbprints. The following C# code shows how to load a public certificate in a Linux app.
113113

114-
```c#
114+
```csharp
115115
using System;
116116
using System.IO;
117117
using System.Security.Cryptography.X509Certificates;
@@ -140,7 +140,7 @@ If you need to load a certificate file that you upload manually, it's better to
140140
141141
The following C# example loads a public certificate from a relative path in your app:
142142
143-
```c#
143+
```csharp
144144
using System;
145145
using System.IO;
146146
using System.Security.Cryptography.X509Certificates;

0 commit comments

Comments
 (0)