Giter VIP home page Giter VIP logo

coderr.client.aspnet.mvc5's Introduction

Integration library for ASP.NET MVC5 applications

VSTS NuGet

This library will detect all unhandled exceptions in ASP.NET MVC v5 based applications and report them to your codeRR server (or your account at https://coderrapp.com).

Installation

  1. Download and install the codeRR server or create an account at coderrapp.com
  2. Install this client library (using nuget coderr.client.aspnet.mvc)
  3. Configure the credentials from your codeRR account in your Program.cs.

Getting started

All unhandled exceptions are reported automatically by this library. But sometimes you need to deal with exceptions yourself.

To report exceptions manually in your controller, use this.ReportError(exception) to allow codeRR to include RouteData, ViewBag, TempData etc when your exception is reported. If you do not have access to the controller, you can use the httpContext (httpContext.ReportException()) or just Err.Report().

public ActionResult UpdatePost(int uid, ForumPost post)
{
	try
	{
		_service.Update(uid, post);
	}
	catch (Exception ex)
	{
		this.ReportException(ex, new{ UserId = uid, ForumPost = post });
	}
}

Context collections

This library includes the following context collections for every reported exceptions:

  • All in the core library
  • All in the asp.net library
  • Action parameters
  • Controller information
  • ModelState
  • Query string
  • RouteData
  • Session data
  • TempData
  • Uploaded files
  • ViewBag

Requirements

You need to either install codeRR Community Server or use codeRR Live.

Help?

coderr.client.aspnet.mvc5's People

Contributors

jgauffin avatar onetrueerror avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

atikhan

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.