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/client-concepts/low-level/connecting.asciidoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,7 +178,7 @@ These should not be handled as you want to know about them during development.
178
178
179
179
=== OnRequestCompleted
180
180
181
-
You can pass a callback of type `Action<IApiCallDetails>` that can eaves drop every time a response (good or bad) is created.
181
+
You can pass a callback of type `Action<IApiCallDetails>` that can eavesdrop every time a response (good or bad) is created.
182
182
If you have complex logging needs this is a good place to add that in.
183
183
184
184
[source,csharp]
@@ -300,7 +300,7 @@ SSL must be configured outside of the client using .NET's http://msdn.microsoft
300
300
class and setting the http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.servercertificatevalidationcallback.aspx[ServerCertificateValidationCallback]
301
301
property.
302
302
303
-
The bare minimum to make .NET accept self-signed SSL certs that are not in the Window's CA store would be to have the callback simply return `true`:
303
+
The bare minimum to make .NET accept self-signed SSL certs that are not in the Windows CA store would be to have the callback simply return `true`:
Copy file name to clipboardExpand all lines: src/Tests/ClientConcepts/LowLevel/Connecting.doc.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ public void AvailableOptions()
139
139
}
140
140
141
141
/** === OnRequestCompleted
142
-
* You can pass a callback of type `Action<IApiCallDetails>` that can eaves drop every time a response (good or bad) is created.
142
+
* You can pass a callback of type `Action<IApiCallDetails>` that can eavesdrop every time a response (good or bad) is created.
143
143
* If you have complex logging needs this is a good place to add that in.
144
144
*/
145
145
[U]
@@ -253,7 +253,7 @@ public void ConfiguringSSL()
253
253
* class and setting the http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.servercertificatevalidationcallback.aspx[ServerCertificateValidationCallback]
254
254
* property.
255
255
*
256
-
* The bare minimum to make .NET accept self-signed SSL certs that are not in the Window's CA store would be to have the callback simply return `true`:
256
+
* The bare minimum to make .NET accept self-signed SSL certs that are not in the Windows CA store would be to have the callback simply return `true`:
0 commit comments