Skip to content

Commit

Permalink
Fixed wording in README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
ravibpatel committed Jul 18, 2019
1 parent de67b0b commit 25d4e81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,17 +150,17 @@ You can send crash reports silently by setting Silent property to true.
reportCrash.Silent = true;
````

### Send reports using WebProxy
### Send reports using a web proxy

You can send crash report using a web proxy by adding following line in SendReport method of Program.cs file.
You can send crash report using a web proxy by adding following line in SendReport method.

````csharp
reportCrash.WebProxy = new WebProxy("Web proxy address"),
````

### Send reports to your DrDump account

You can send crash report to you doctor dump account by adding following line in SendReport method of Program.cs file.
You can send crash report to you doctor dump account by adding following line in SendReport method.

````csharp
reportCrash.DoctorDumpSettings = new DoctorDumpSettings
Expand All @@ -173,7 +173,7 @@ Just set the ApplicationID to ID you received from DrDump.com.

### Capture whole screen instead of Application screen

You can take screenshot of whole screen instead of only application when application crashes by adding following line in SendReport method of Program.cs file.
You can take screenshot of whole screen instead of only application when application crashes by adding following line in SendReport method.

````csharp
reportCrash.CaptureScreen = true;
Expand Down

0 comments on commit 25d4e81

Please sign in to comment.