Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanoobk authored Sep 27, 2019
1 parent a590b09 commit 086e93c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Cosmos DB Account and Container was created using the [instructions](https://doc
## Key Source Code Excerpts:

Create a Cosmos DB connection using the instantiation below.
``` Csharp
``` csharp
_myStorage = new CosmosDbStorage(new CosmosDbStorageOptions
{
AuthKey = CosmosDBKey,
Expand All @@ -57,7 +57,7 @@ DatabaseId = CosmosDBDatabaseName,
});
```
Below is a sample line of code to write changes to the Cosmos DB using .Net TPL. 'changes' object is a Dictionary that keeps track of the user inputs over each Turn.
``` CSharp
``` cSharp
// Save the user message to your Storage.
await _myStorage.WriteAsync(changes, cancellationToken);
```
Expand Down

0 comments on commit 086e93c

Please sign in to comment.