Skip to content

Commit 80df832

Browse files
committed
CSHARP-1220: added documentation about error handling.
Conflicts: Docs/reference/content/reference/driver/index.md
1 parent 6f46878 commit 80df832

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+5032
-4847
lines changed

Docs/reference/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MongoDB Java Driver Documentation
1+
# MongoDB .NET Driver Documentation
22

33
## Quick Start
44

@@ -17,11 +17,11 @@ To run the server call the hugo command:
1717
hugo server --baseUrl=http://localhost/ --buildDrafts --watch
1818

1919
| Options explained ||
20-
| --------------------------- |--------------------------------------------------------------------------|
21-
| server | Hugo runs its own webserver to render the files |
22-
| --baseUrl=http://localhost/ | Normally the base url will be /mongo-java-driver for gh-pages |
23-
| --buildDrafts | Include draft posts in the output - these won't be published to gh-pages |
24-
| -- watch | Automatically reloads on file change |
20+
| --------------------------- |----------------------------------------------------------------------------|
21+
| server | Hugo runs its own webserver to render the files |
22+
| --baseUrl=http://localhost/ | Normally the base url will be /mongo-csharp-driver for gh-pages |
23+
| --buildDrafts | Include draft posts in the output - these won't be published to gh-pages |
24+
| -- watch | Automatically reloads on file change |
2525

2626

2727
All generated content will appear in the `./public` folder, so you can also check the filesystem and browse it locally.<br>

Docs/reference/config.toml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
baseurl = "/mongo-csharp-driver/1.10"
1+
baseurl = "/mongo-csharp-driver/2.0"
22
languageCode = "en-us"
3-
title = "MongoDB CSharp Driver"
3+
title = "MongoDB .NET Driver"
44
theme = "mongodb"
55
canonifyurls = false
66

77
[blackfriday]
8-
plainIdAnchors = true
8+
plainIdAnchors = true
9+
10+
[[menu.main]]
11+
name = "API Documentation"
12+
pre = "<i class='fa fa-file-text-o'></i>"
13+
weight = 90
14+
identifier = "apiDocs"
15+
url = "http://api.mongodb.org/csharp/2.0"
16+
17+
[[menu.main]]
18+
name = "Source Code"
19+
pre = "<i class='fa fa-github'></i>"
20+
weight = 90
21+
identifier = "githubLink"
22+
url = "https://github.com/mongodb/mongo-csharp-driver/tree/master"

0 commit comments

Comments
 (0)