Portia.Roslyn.CheckedException 1.0.6645.24367

There is a newer version of this package available.
See the version list below for details.
dotnet add package Portia.Roslyn.CheckedException --version 1.0.6645.24367
NuGet\Install-Package Portia.Roslyn.CheckedException -Version 1.0.6645.24367
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Portia.Roslyn.CheckedException" Version="1.0.6645.24367">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Portia.Roslyn.CheckedException --version 1.0.6645.24367
#r "nuget: Portia.Roslyn.CheckedException, 1.0.6645.24367"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Portia.Roslyn.CheckedException as a Cake Addin
#addin nuget:?package=Portia.Roslyn.CheckedException&version=1.0.6645.24367

// Install Portia.Roslyn.CheckedException as a Cake Tool
#tool nuget:?package=Portia.Roslyn.CheckedException&version=1.0.6645.24367

Portia.Roslyn.CheckedException

Checked Exception in C# Using Roslyn

    Checked Exception is an ability of JAVA language which enables solution designers and programmers to manage exceptions in any part/layer of the project. For example, if it is required to handle a custom exception thrown by an External Library in the backend of the project and perform an appropriate task for it, the programmer(designer) of the method should introduce that custom exception in the method declaration. After that, Users of this method can handle the throwable exception declared in method anywhere they want.

Preview

    The most important benefit of Checked Exception is handling most unanticipated exceptions may be thrown by a method in another library. In this case, if the callee introduces all exceptions those should be handled by the caller, then the caller should handle these exceptions or rethrow them to its callers.

    There is not any feature like Exception Handling in C# and if the programmer does not know anything about exceptions may be thrown by the callee and doesn't handle them in code, It can produce bad actions in production.

    In CheckedException project of the Portia project, we created a Visual Studio extension(.VSIX) that can add the ability of JAVA's Checked Exception to C#. It makes Programmers and Solution Designers be able to design layers and methods with less risk of unhandled exceptions. They can handle exceptions in any layer they want and have a good Stack Trace of the thrown exceptions. To use this extension you should add a reference to Portia.Roslyn.Base library and after that, add CheckedException.Base.ThrowsExceptionAttribute annotation to top of the method like this:

C#
[CheckedException.Base.ThrowsException(typeof(InvalidCastException))]
public static long AddNumbers(int a, bool b)
{
    return a + Convert.ToInt32(b);
}
[CheckedException.Base.ThrowsException(typeof(DivideByZeroException))]
public static double DivideNumbers(int a, int b)
{
    return a / b;
}

    CheckedException.Base.ThrowsExceptionAttribute has one constructor parameter that accepts a type. You can give it any type you want, but it won't work for you if the type you gave is not a subclass of System.Exeption; So it's better to give it a type that is inherited from System.Exception 😉. If developer/designer wants to rethrow the exception thrown from submethod, he/she can add same attribute on top of his/her method; or if he/she wants to handle the exception on threw, he/she can use a try-catch block.

How does it work

Analyzer

    In analyzer part, I inherited my analyzer from DiagnosticAnalyzer. It helps me to register syntax node action for detecting only invocations using context.RegisterSyntaxNodeAction(SyntaxNodeAnalyze, SyntaxKind.InvocationExpression);. In SyntaxNodeAnalyze method I fetch all of the attributes with the type of ThrowsExcepionAttribute from the invoked method. After that, for each one of the fetched items, I check the state of the exception handling for an introduced exception. Inside of the CheckExceptionHandling method, I check two types of handling:

  • Rethrow using Data Annotation(ThrowsExceptionAttribute)
  • Using try-catch block around the method

If non of desired ways has been found in the caller, I report a Diagnostic to inform the programmer of the exception.

Code Fixer

    To refactor the code and making changes in code to solve the problem, I fetch all of the attributes again just like the analyzer. If an exception is not handled in code, I look after the try-catch block around method invocation. If I find a try-catch block, then I add a new Catch block to the try, else, I add a complete try-catch block around the invocation.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.7443.28334 578 5/18/2020
1.3.7198.17197 514 9/16/2019
1.2.7142.20875 518 7/22/2019
1.2.7123.26884 496 7/3/2019
1.1.7120.15284 537 6/30/2019
1.1.7117.22620 501 6/27/2019
1.0.7116.28233 491 6/26/2019
1.0.6645.24367 983 3/12/2018

Summary of changes made in this release of the package.