Last active
March 13, 2018 21:42
-
-
Save lohithgn/075a0fa3e6865047577452d2948031dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string endpointUri = "https://localhost:8081"; | |
string authKey = "<auth key>"; | |
string dbName = "VolcanoesDB"; | |
string collectionName = "Volcanoes"; | |
using (DocumentClient client = new DocumentClient(new Uri(endpointUri), authKey)) | |
{ | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment