You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library is the client library of Coderr. It allows you to manually report exceptions to the Coderr server.
5
+
If you would like to use automated reporting, install one of our automation nuget packages.
5
6
6
-
This library is the client library of codeRR. It allows you to manually report exceptions to the codeRR server.
7
-
If you would like to use automated reporting, install one of the other codeRR nuget packages.
7
+
https://coderr.io/documentation/getting-started/
8
8
9
-
This library doesn’t process the generated information.
10
-
Information processing is done by the codeRR server which you will need to install.
11
-
12
-
For a server with full functionality, we recommend you to use our hosted service at https://coderrapp.com/live.
13
-
But you can also use and install the open source server version from https://github.com/coderrapp/coderr.server.
14
-
15
-
For any questions that you might have, please use our forum at http://discuss.coderrapp.com. At the forum, we will try to answer questions as fast as we can and post answers to questions that have already been asked. Don't hesitate to use it!
16
-
17
-
Configuration
18
-
=============
19
-
20
-
Start by configuring the connection to the codeRR server. The code below is typically added in
21
-
your global.asax, Program.cs or Startup.cs. The configuration settings is found either in codeRR Live or
22
-
in your installed codeRR server.
23
-
24
-
public class Program
25
-
{
26
-
public static void Main(string[] args)
27
-
{
28
-
29
-
// codeRR configuration
30
-
var uri = new Uri("https://report.coderrapp.com/");
31
-
Err.Configuration.Credentials(uri,
32
-
"yourAppKey",
33
-
"yourSharedSecret");
34
-
35
-
// the usual stuff
36
-
// [...]
37
-
}
38
-
}
39
-
40
-
Want automated exception reporting? Install one of the integration packages instead.
41
-
They are listed here: https://github.com/coderrapp/coderr.client/
42
-
43
-
44
-
Reporting exceptions
45
-
====================
46
-
47
-
This is one of many examples:
9
+
Simple reporting example:
48
10
49
11
public void SomeMethod(PostViewModel model)
50
12
{
@@ -62,5 +24,5 @@ This is one of many examples:
62
24
// some other code here...
63
25
}
64
26
65
-
Again for questions, go to http://discuss.coderrapp.com
66
-
Additional documentation can be found at https://coderrapp.com/documentation/client/
0 commit comments