We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8d3092 commit 9a511a5Copy full SHA for 9a511a5
1 file changed
docs/Authentication.md
@@ -1,4 +1,4 @@
1
-Using Client Certificates
+Authentication
2
===
3
4
There are multiple ways of connecting to a Redis server, depending on the authentication model. The simplest
@@ -65,7 +65,7 @@ If you have a local public / private key pair (such as `MyUser2.crt` and `MyUser
65
66
``` csharp
67
config.SetUserPemCertificate(
68
- userCertificatePath: userCrtPatah,
+ userCertificatePath: userCrtPath,
69
userKeyPath: userKeyPath
70
);
71
```
@@ -75,7 +75,7 @@ method can be used:
75
76
77
config.SetUserPfxCertificate(
78
79
password: filePassword // optional
80
81
0 commit comments