├── .gitattributes ├── .gitignore ├── WebApiExceptionHandling.Lib ├── Exceptions │ └── ItemNotFoundException.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ └── CustomExceptionService.cs └── WebApiExceptionHandling.Lib.csproj ├── WebApiExceptionHandling.sln └── WebApiExceptionHandling ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs ├── RouteConfig.cs └── WebApiConfig.cs ├── Areas └── HelpPage │ ├── ApiDescriptionExtensions.cs │ ├── App_Start │ └── HelpPageConfig.cs │ ├── Controllers │ └── HelpController.cs │ ├── HelpPage.css │ ├── HelpPageAreaRegistration.cs │ ├── HelpPageConfigurationExtensions.cs │ ├── ModelDescriptions │ ├── CollectionModelDescription.cs │ ├── ComplexTypeModelDescription.cs │ ├── DictionaryModelDescription.cs │ ├── EnumTypeModelDescription.cs │ ├── EnumValueDescription.cs │ ├── IModelDocumentationProvider.cs │ ├── KeyValuePairModelDescription.cs │ ├── ModelDescription.cs │ ├── ModelDescriptionGenerator.cs │ ├── ModelNameAttribute.cs │ ├── ModelNameHelper.cs │ ├── ParameterAnnotation.cs │ ├── ParameterDescription.cs │ └── SimpleTypeModelDescription.cs │ ├── Models │ └── HelpPageApiModel.cs │ ├── SampleGeneration │ ├── HelpPageSampleGenerator.cs │ ├── HelpPageSampleKey.cs │ ├── ImageSample.cs │ ├── InvalidSample.cs │ ├── ObjectGenerator.cs │ ├── SampleDirection.cs │ └── TextSample.cs │ ├── Views │ ├── Help │ │ ├── Api.cshtml │ │ ├── DisplayTemplates │ │ │ ├── ApiGroup.cshtml │ │ │ ├── CollectionModelDescription.cshtml │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ ├── HelpPageApiModel.cshtml │ │ │ ├── ImageSample.cshtml │ │ │ ├── InvalidSample.cshtml │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ ├── Parameters.cshtml │ │ │ ├── Samples.cshtml │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ └── TextSample.cshtml │ │ ├── Index.cshtml │ │ └── ResourceModel.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ └── XmlDocumentationProvider.cs ├── Content ├── Site.css ├── bootstrap.css └── bootstrap.min.css ├── Controllers ├── HomeController.cs └── TestController.cs ├── Global.asax ├── Global.asax.cs ├── HelperClasses ├── Filters │ └── ItemNotFoundExceptionFilter.cs ├── Handlers │ └── GlobalExceptionHandler.cs └── Loggers │ └── UnhandledExceptionLogger.cs ├── Project_Readme.html ├── Properties └── AssemblyInfo.cs ├── Scripts ├── _references.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-1.10.2.intellisense.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── modernizr-2.6.2.js ├── respond.js └── respond.min.js ├── Views ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ └── _Layout.cshtml ├── Web.config └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebApiExceptionHandling.csproj ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/.gitignore -------------------------------------------------------------------------------- /WebApiExceptionHandling.Lib/Exceptions/ItemNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling.Lib/Exceptions/ItemNotFoundException.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling.Lib/Services/CustomExceptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling.Lib/Services/CustomExceptionService.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling.Lib/WebApiExceptionHandling.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling.Lib/WebApiExceptionHandling.Lib.csproj -------------------------------------------------------------------------------- /WebApiExceptionHandling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling.sln -------------------------------------------------------------------------------- /WebApiExceptionHandling/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Content/Site.css -------------------------------------------------------------------------------- /WebApiExceptionHandling/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Content/bootstrap.css -------------------------------------------------------------------------------- /WebApiExceptionHandling/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WebApiExceptionHandling/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Controllers/TestController.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Global.asax -------------------------------------------------------------------------------- /WebApiExceptionHandling/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Global.asax.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/HelperClasses/Filters/ItemNotFoundExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/HelperClasses/Filters/ItemNotFoundExceptionFilter.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/HelperClasses/Handlers/GlobalExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/HelperClasses/Handlers/GlobalExceptionHandler.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/HelperClasses/Loggers/UnhandledExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/HelperClasses/Loggers/UnhandledExceptionLogger.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Project_Readme.html -------------------------------------------------------------------------------- /WebApiExceptionHandling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/_references.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/respond.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Scripts/respond.min.js -------------------------------------------------------------------------------- /WebApiExceptionHandling/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Views/Web.config -------------------------------------------------------------------------------- /WebApiExceptionHandling/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebApiExceptionHandling/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Web.Debug.config -------------------------------------------------------------------------------- /WebApiExceptionHandling/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Web.Release.config -------------------------------------------------------------------------------- /WebApiExceptionHandling/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/Web.config -------------------------------------------------------------------------------- /WebApiExceptionHandling/WebApiExceptionHandling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/WebApiExceptionHandling.csproj -------------------------------------------------------------------------------- /WebApiExceptionHandling/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/favicon.ico -------------------------------------------------------------------------------- /WebApiExceptionHandling/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebApiExceptionHandling/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WebApiExceptionHandling/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebApiExceptionHandling/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebApiExceptionHandling/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exceptionnotfound/WebApiExceptionHandling/HEAD/WebApiExceptionHandling/packages.config --------------------------------------------------------------------------------