Skip to content

Commit 076d425

Browse files
CSHARP-4111: Incorrect & outdated CSFLE statements in C# docs. (#800)
CSHARP-4111: Incorrect & outdated CSFLE statements in C# docs.
1 parent 35b385f commit 076d425

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

Docs/reference/content/reference/driver/crud/client_side_encryption.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,18 @@ data.
2525
Client-side field level encryption in the .NET/C# driver is currently only supported on x64-compatible CPUs.
2626
{{% /note %}}
2727

28+
### Automatic client-side encryption
29+
30+
The following examples show how to configure automatic encryption for read and write operations.
31+
32+
{{% note %}}
33+
Auto encryption is an **enterprise** or Atlas only feature.
34+
{{% /note %}}
35+
2836
## mongocryptd configuration
2937

30-
Client-side field level encryption requires the `mongocryptd` daemon / process
31-
to be running. If `mongocryptd` isn't running, the driver will atempt to spawn
38+
Client-side field level automatic encryption requires the `mongocryptd` daemon / process
39+
to be running. If `mongocryptd` isn't running, the driver will attempt to spawn
3240
an instance, utilizing the `PATH` environment variable. Alternatively, the path
3341
to `mongocryptd` can be specified by setting `mongocryptdSpawnPath` in
3442
`extraOptions`. A specific daemon / process URI can also be configured in the
@@ -40,8 +48,6 @@ documentation.
4048

4149
## Examples
4250

43-
### Automatic client-side encryption
44-
4551
The following is a sample app that assumes the **key** and **schema** have
4652
already been created in MongoDB. The example uses a local key, however using AWS
4753
Key Management Service is also an option. The data in the `encryptedField` field
@@ -93,10 +99,6 @@ namespace MongoDB.Driver.Examples
9399
}
94100
```
95101

96-
{{% note %}}
97-
Auto encryption is an **enterprise** only feature.
98-
{{% /note %}}
99-
100102
The following example shows how to configure the `AutoEncryptionSettings`
101103
instance to create a new key and how to set the json schema map. The following
102104
example has been adapted from

0 commit comments

Comments
 (0)