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
(Optional) to use the client with TCP protocol authentication add NuGet refrence to [https://www.nuget.org/packages/net-questdb-client-tcp-auth/](https://www.nuget.org/packages/net-questdb-client-tcp-auth/)
31
32
32
33
## Usage
33
34
@@ -121,6 +122,8 @@ using var sender = Sender.New("https::addr=localhost:9009;tls_verify=unsafe_off;
121
122
122
123
#### TCP Authentication
123
124
125
+
💥 From net-questdb-client Version 2.1.0, if you want to use TCP Authentication, you must add a reference to [https://www.nuget.org/packages/net-questdb-client-tcp-auth/](https://www.nuget.org/packages/net-questdb-client-tcp-auth/).
|`max_buf_size`|`104857600`| Maximum size of the byte buffer in bytes. If exceeded, an exception will be thrown. |
148
151
|`username`|| The username for authentication. Used for Basic Authentication and TCP JWK Authentication. |
149
152
|`password`|| The password for authentication. Used for Basic Authentication. |
150
-
|`token`|| The token for authentication. Used for Token Authentication and TCP JWK Authentication. |
153
+
|`token`|| The token for authentication. Used for Token Authentication and TCP JWK Authentication, needs additional reference to `net-questdb-client-tcp-auth` assembly|
151
154
|`token_x`|| Un-used. |
152
155
|`token_y`|| Un-used. |
153
156
|`tls_verify`|`on`| Denotes whether TLS certificates should or should not be verifed. Options are on/unsafe_off. |
@@ -203,6 +206,11 @@ The config string format is:
203
206
No. This client is for writing data only. For querying, see
204
207
the [Query & SQL overview](https://questdb.io/docs/reference/sql/overview/)
205
208
209
+
### I updated from version < 2.0.0 and now have error `Could not load QuestDB.Secp256r1SignatureGenerator, please add a reference to assembly "net-client-questdb-tcp-auth\"`
210
+
211
+
Since Version 2.1.0, in order to use TCP authentication, an additional NuGet package is required [https://www.nuget.org/packages/net-questdb-client-tcp-auth/](https://www.nuget.org/packages/net-questdb-client-tcp-auth/).
212
+
This was changed to remove the dependency on `BouncyCastle.Cryptography` from the main library, since it was only required for TCP authentication.
213
+
206
214
### Where do I report issues with the client?
207
215
208
216
If something is not working as expected, please open
0 commit comments