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
> This driver is not compatible with FQL v10, the latest version.
12
+
6
13
## Documentation
7
14
8
15
C# doc are hosted on GitHub:
@@ -154,7 +161,7 @@ var client = new FaunaClient("secret", "http://localhost:9090/", httpClient: htt
154
161
155
162
#### HTTP 2.0 support
156
163
Starting from version 4.0.0 of this driver (faunadb-csharp), HTTP/2 support is enabled by default for .NET standards 2.1 and above.
157
-
This means that if you use .NET core 3.1 and above (which support that standard), you'll be sending requests to Fauna on HTTP/2.
164
+
This means that if you use .NET core 3.1 and above (which support that standard), you'll be sending requests to Fauna on HTTP/2.
158
165
.NET standards lower than 2.1 and .NET frameworks 4.5-4.8 have HTTP/1.1 enabled as the default protocol version, since they lack of support for HTTP/2.
159
166
We've also added an optional parameter if you want to specify the version of the protocol directly:
160
167
```csharp
@@ -171,7 +178,7 @@ var adminClient = new FaunaClient(
`Query` methods receives an `Expr` object. `Expr` objects can be composed with others `Expr` to create complex query objects. `FaunaDB.Query.Language` is a helper class where you can find all available expressions in the library.
181
+
`Query` methods receives an `Expr` object. `Expr` objects can be composed with others `Expr` to create complex query objects. `FaunaDB.Query.Language` is a helper class where you can find all available expressions in the library.
175
182
176
183
You can also pass a `TimeSpan queryTimeout` argument to that specific query as well:
177
184
@@ -287,7 +294,7 @@ There are three attributes that can be used to change the behavior of the `Encod
287
294
288
295
Fauna supports document streaming, where changes to a streamed document are pushed to all clients subscribing to that document.
289
296
290
-
The streaming API is built using the Observer pattern which enables a subscriber to register with and receive notifications from a provider.
297
+
The streaming API is built using the Observer pattern which enables a subscriber to register with and receive notifications from a provider.
291
298
Provider is implemented within `StreamingEventHandler` class, and subscriber within `StreamingEventMonitor` class.
292
299
293
300
The following example assumes that you have already created a `FaunaClient`.
0 commit comments