Resources  
  • Master Global Exception Handling with IExceptionHandler in .NETJul 16, 2024. Global exception handling in .NET with IExceptionHandler centralizes error management, ensuring consistent responses and improved logging. Our Global Exception Handler Middleware catches exceptions globally, enhancing user experience and maintainability.
  • Exploring Advanced Error Handling Techniques in C#Jul 15, 2024. Error handling is a crucial aspect of software development, ensuring that applications can gracefully handle unexpected situations and maintain robust functionality. In C#, error handling is typically managed using exceptions.
  • Exploring Advanced Error Handling Techniques in C#Jul 08, 2024. Error handling is a critical aspect of software development. It ensures that your applications can gracefully handle unexpected situations, maintain stability, and provide meaningful feedback to users. In C#, the .NET framework offers robust mechanisms for error handling.
  • Implementing Periodic API Calls and Error Handling in C# Windows Forms ApplicationJul 04, 2024. The Form1 constructor initializes a form and starts a timer. When the timer elapses (t_Elapsed), it fetches data from APIs configured in WebConfigurationManager.AppSettings. The demoGet method handles API interactions, data processing, and posting using PostDataJSON.
  • Understanding ParseJSON in PowerAppsJun 27, 2024. Understanding ParseJSON in PowerApps" is a comprehensive guide to using the ParseJSON function within Microsoft PowerApps. Learn how to effectively handle and manipulate JSON data in your custom applications.
  • Exception Handling in C#Jun 23, 2024. Learn about defining methods, method overloading, return types, parameters, and access modifiers. Understand properties, including getters, setters, auto-implemented properties, and encapsulation techniques.
  • Understanding throw vs throw ex vs throw new Exception() in C#Jun 22, 2024. Explore the nuances of exception handling in C# .NET with a deep dive into 'throw', 'throw ex', and 'throw new Exception()'. Learn when to use each technique, their impact on stack traces and exception propagation, and best practices for effective error handling in your applications.
  • Mastering Asynchronous Programming in C# Async and Await Patterns Jun 01, 2024. Master asynchronous programming in C# with the async and await patterns. Learn how to write non-blocking code, improve application performance, and handle concurrency. Understand Task-based asynchrony, exception handling, and preventing deadlocks, enabling efficient and responsive applications.
  • Methods for Effective Error Handling in JavascriptMay 29, 2024. JavaScript error handling involves managing syntax, runtime, and logical errors. Techniques include try...catch blocks, throwing custom errors, and handling asynchronous errors. Employing best practices ensures stability and reliability, enabling robust JavaScript applications.
  • Mastering Exception Handling in PythonMay 23, 2024. In this article we will learn about how to handle exceptions in python programming language.
  • Understanding ToString() vs Convert.ToString() in C#May 23, 2024. In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these two methods can help you choose the right one for your needs.
  • Efficient Solution Parsing in .NET 8 Using DTE & Microsoft.BuildMay 20, 2024. A solution parser within the realm of C# generally denotes a software or library capable of parsing and understanding the data within a Visual Studio solution (.sln) file and its corresponding project (.csproj) files.
  • Mastering Python Best Practices for Clean and Efficient CodeMay 17, 2024. In Python development, adhering to best practices is paramount for code clarity and efficiency. Embrace PEP 8 guidelines, document with docstrings, use list comprehensions, and handle exceptions judiciously for robust, maintainable code.
  • What's new in .NET 9? .NET 9 Preview 3 Apr 12, 2024. We're excited to announce the release of .NET 9 Preview 3, packed with new features and improvements across .NET Libraries, Runtime, and SDK. This preview release brings enhancements aimed at boosting performance, improving developer productivity, and introducing new capabilities to the .NET ecosystem.
  • Exception Handling in Vue.js ApplicationMar 29, 2024. Exception handling in Vue.js is crucial for managing errors gracefully, preventing application crashes, and enhancing user experience. Techniques include try-catch blocks, error capturing hooks, global error handlers, Axios interceptors, and third-party services like Sentry or Bugsnag for error monitoring.
  • Exception Handling In ASP.NET Core Web APIMar 11, 2024. Exception handling is crucial for robustness in ASP.NET Core Web API. Learn about global handling, custom middleware, action filters, and ProblemDetails for effective error management and client communication.
  • Implement Global Exception Handling Middleware in .NET ProjectMar 07, 2024. Implementing custom global exception handling in your project involves setting up a system to manage errors across your application. By defining exception classes and configuring error logging, you can ensure smoother error handling and improve the reliability of your software.
  • Unit Test in ASP.NET Core ApplicationMar 07, 2024. Creating unit tests for an ASP.NET Core API controller involves service mocking and exception handling. Set up your project, install packages, create a test project, mock the service, write tests, handle exceptions, and run tests.
  • Best Practices for Handling Exceptions in C# Mar 05, 2024. Learn effective exception handling techniques in C# with Ziggy Rafiq's comprehensive guide. Discover best practices for managing exceptions, including specifying exception types, logging errors, and employing cleanup strategies. Enhance your C# application's robustness and reliability while minimizing downtime.
  • Learn Exception Handling in C#Feb 28, 2024. Exception Handling in C# is crucial for robust code. Using try-catch blocks, catch blocks, and finally blocks, developers manage unexpected issues gracefully, ensuring dependable and solid applications.
  • Using Plugin.Maui.Popup to Create Eye-Catching Popups in AppsFeb 28, 2024. Learn how to utilize Plugin.Maui.Popup to incorporate popup functionality into your Xamarin.Forms application. Follow step-by-step instructions to install the package, create custom popup pages, and call popups from the code behind.
  • Error Management in .NET CoreFeb 18, 2024. In software development, dealing with mistakes is really important. Whether it's a small problem or a big one, how a program handles mistakes can really affect how well it works for users. In the .NET Core world, there's a cool way to handle errors called global exception handling using custom middleware.
  • Global Exception Handling in .NET Core with Custom MiddlewareFeb 16, 2024. Global exception handling in .NET Core, utilizing custom middleware, centralizes error management, enhancing resilience and simplifying maintenance. This approach streamlines error handling across the application, promoting consistency and fortifying against unexpected failures.
  • IExceptionHandler in ASP.NET Core 8Feb 07, 2024. ASP.NET Core 8 introduces a new feature called IException Handler, providing a centralized way to handle exceptions in applications. This article explores what IExceptionHandler is and how to use it effectively.
  • Null Handling in C# Using Null-Conditional and Coalescing OperatorsJan 25, 2024. In C# programming, null handling is a critical consideration for robust and error-resistant code. This brief guide introduces two powerful operators, the null-conditional operator (?.) and the null-coalescing operator (??), designed to streamline null-related challenges.
  • Exploring Filters in .NET CoreJan 17, 2024. .NET Core's flexibility and extensibility are enhanced by filters, allowing developers to inject logic into the request processing pipeline. Types like Authorization, Action, Result, and Exception filters enable modular and reusable cross-cutting concerns.
  • JavaScript Try-Catch for Effective Error HandlingJan 17, 2024. In JavaScript, try-catch blocks handle errors during code execution, preventing program crashes. The example demonstrates catching a division by zero error, ensuring smoother program flow, and providing real-life analogies for better understanding.
  • Microservices Development with 3-Tier Architecture and Circuit Breaker Design Pattern Using Microsoft ASP.NET Core Web APIDec 30, 2023. The Circuit Breaker pattern, analogous to its electrical counterpart, monitors for failures and helps prevent cascading failures in distributed systems. It acts as a barrier between a potentially failing service or resource and the rest of the system.When a service is working as expected, the Circuit Breaker allows requests to pass through. However, if the service encounters an issue or starts to fail, the Circuit Breaker "opens" and prevents further requests from being sent to the failing service for a defined period. This helps to preserve system resources and prevent overload or degradation.
  • What is Type Conversion in C#?Oct 31, 2023. This article on type conversion in C# is comprehensive and informative. It effectively covers the fundamental concepts of type conversion, including implicit and explicit conversions, common conversion methods, exception handling, and custom type conversion. The examples provided throughout the article enhance the understanding of each concept and make it easier for readers to grasp the intricacies of type conversion in C#.
  • Exception Handling in Power Automate Using Try Catch Scope ActionOct 20, 2023. Exception Handling in Power Automate involves the use of Try Catch Scope Action, allowing users to gracefully handle errors and exceptions that may occur during the execution of automated workflows. By encapsulating specific actions within a Try block and defining corresponding Catch blocks for different types of exceptions, users can create robust and reliable workflows that can handle errors without disrupting the entire process. This approach ensures smoother automation, enhances user experience, and improves overall workflow reliability.
  • Fixing Unhandled Exception on the Current Circuit in BlazorOct 20, 2023. Learn how lookout for a solution for the error unhandled exception on the current circuit
  • Convert String to JSON using Power Automate Microsoft Flow Oct 18, 2023. Learn to convert a string to JSON in Power Apps. Explore two methods: the JSON expression and the Parse JSON Data Operation, followed by reading the JSON data for effective data manipulation.
  • Action Filters in ASP.NET CoreOct 13, 2023. This article provides a comprehensive overview of Action Filters in ASP.NET Core, exploring their types.
  • Elevate Your .NET 7 API: Exception Handling and Logging MasteryOct 05, 2023. This article explores the best practices for exception handling and logging in .NET 7 APIs, enabling developers to create resilient applications that gracefully handle errors and provide valuable insights for debugging and improvement.
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web APIOct 03, 2023. Building a microservices API Gateway with YARP in ASP.NET Core Web API provides a flexible and scalable solution for managing and routing traffic in a microservices architecture. By incorporating features such as service discovery, authentication, authorization, load balancing, rate limiting, and logging, you can create a robust and secure gateway that orchestrates communication between diverse microservices.
  • Custom Exceptions in C#Sep 19, 2023. Enhance error handling in C# with custom exceptions. Learn how they provide specificity, control, documentation, and maintainability, and follow best practices for effective implementation.
  • Catching Defects Early with Code ReviewSep 15, 2023. An article about how working closely with developers helps us nip problems in the bud.
  • Exception Handling in SQL Server Sep 14, 2023. This article explores SQL Server's TRY...CATCH statement for exception handling. It delves into its syntax, functions like ERROR_NUMBER and ERROR_MESSAGE, and demonstrates its use through examples.
  • Real-time Monitoring with Azure Application Insights in ASP.NET Core Web APISep 06, 2023. Azure Application Insights is a powerful tool for monitoring and diagnosing applications, including ASP.NET Core Web APIs. It provides real-time telemetry data, performance metrics, and logging capabilities. In this example, I'll walk you through setting up Azure Application Insights for an ASP.NET Core Web API and demonstrate how to use it for real-time monitoring and diagnostics.
  • Implementing Content Negotiation for Flexible Data FormatsAug 16, 2023. Content negotiation in ASP.NET Core is crucial for serving different data formats like JSON, XML, etc., based on the client's preferences. Here's a complete example of how to implement content negotiation in an ASP.NET Core Web API:
  • Global Exception Handling In Asp.net Core Web APIAug 04, 2023. In the context of ASP.NET Core Web API (or any web application framework), global exception handling involves catching exceptions that occur during the processing of requests and returning appropriate error responses to the clients. Instead of allowing exceptions to propagate to the top-level and exposing technical details to the end-users, global exception handling can convert those exceptions into more informative and standardized error messages in a format such as JSON or XML.
  • How to Create Stored Procedures for CRUD?Jul 23, 2023. In this article, we will learn how we can create Stored Procedures for CRUD operations in SQL Server.
  • Understanding JSON Parsing and JSON StringifyingJul 14, 2023. Understanding JSON Parsing and JSON Stringifying
  • What are the Methods of Stream?Jun 22, 2023. A stream is a communication channel that connects an information source and destination.
  • Exception Handling in PythonJun 22, 2023. Exceptions in Python are errors that can occur during program execution. They disrupt the normal flow of instructions. Common exceptions include ArithmeticError, ZeroDivisionError, ImportError, NameError, SyntaxError, and more. To handle exceptions, Python provides keywords like try, except, else, finally, and raise. The try block encloses code that may raise an exception, while the except block catches specific exceptions. The else block executes if no exceptions occur, and the finally block always executes, regardless of exceptions. The raise keyword explicitly raises an exception. Exception handling is crucial for managing errors in programs.
  • Export Sharepoint List Metadata Using Power AutomateJun 15, 2023. In this article, I will explain, how can we export a SharePoint list metadata using Power automate. While doing that, we will learn many basic concepts of Power Automate like how to use JSON, strings, arrays etc.
  • Parse JSON String in C#Jun 07, 2023. Code example of how to parse a JSON string in C#
  • Exception Handling in Spring BootMay 03, 2023. Exception Handling in Spring Boot in simple easy to understand words
  • Custom Exception in C#May 01, 2023. Today I will let you know about custom exception and how to implement custom exception.
  • Exception Handling (7), C# Exception Handling StatementsMar 14, 2023. This article will discuss Exception Handling Statements.
  • SQL Server Execution PlansMar 10, 2023. In this article, you will learn about SQL Server execution plans.
  • Checked Vs Unchecked Exceptions In JavaFeb 07, 2023. In this article, we'll understand the difference between the checked and the unchecked exceptions in Java.
  • Creating A Custom Exception In JavaFeb 03, 2023. In this article, we'll see how we can create and throw our own custom user-defined exceptions in Java.
  • Exception Handling (6), HttpStatusCodeJan 16, 2023. This article will discuss the HttpStatusCode.
  • Exception Handling (5), in ASP.NET SummaryJan 16, 2023. This article will make a summary for Exception Handling in ASP.NET.
  • Exception Handling In Automation AnywhereOct 03, 2022. In this article, you will learn about Exception Handling In Automation Anywhere.
  • ASP.NET Core – Exception HandlingSep 27, 2022. In this article, we are going to discuss ASP.CORE Exception Handling.
  • Try..Except..Else..Finally In PythonSep 02, 2022. In this article you learn about how to handle exception in python - try..except..else..finally
  • Practical Exception Handling In N-Layered ArchitectureAug 15, 2022. In this article, you will learn about practical Exception Handling in N-Layered Architecture.
  • Implementation Of Global Exception Handling Using .NET Core 6 Web APIAug 08, 2022. In this article, you will learn how to implement Global Exception Handling using .NET Core 6 Web API.
  • Exception Handling In Power Automate FlowJul 30, 2022. Exceptions are runtime anomalies or abnormal conditions that a flow encounters during its execution. Using exception handling, we can get notifications or log errors in case there is some error during execution of the Power Automate flow.
  • C# DataAdapter Returning Exception “Failed To Enable Constraints.”Jul 27, 2022. We explain how to debug and get more information on the generic exception, “Failed to enable constraints.”
  • Testing The Exception Thrown In NUnit C#Jul 25, 2022. In this article, we will learn how to unit test the code that is throwing an exception in NUnit C#
  • CSV Reader - How To Quickly Change Field Delimiter In CSV DocumentJul 04, 2022. This article explains how to quickly change field delimiter comma , in RFC 4180 standard CSV document, to any other selected like semicolon.
  • Movie App Using JSON Parsing In SwiftMay 31, 2022. TMDB is a movie database from which we will fetch top movie data and will show in screen
  • C# - Exception HandlingMay 09, 2022. In this article, you will learn about C#- Exception Handling.
  • Handle Nulls In Parse JSON Action In Power AutomateApr 07, 2022. Whenever working with json payload’s in power automate, always a possibility of receiving null values inside json, where Parse JSON Action will be errored out because of these null values. To handle this we have to modify Schema of the generated Schema for the provided json.
  • Parse CSV From SharePoint Document LibraryMar 07, 2022. To create the data in SharePoint list using the data from CSV file which is uploaded in SharePoint document library.
  • How To Use Catch Output Reject In tMap Component With ExamplesFeb 10, 2022. In this article, we will learn about the use of the Catch Reject Output settings in tMap components with a real-time example. 
  • Working With The tMap Component In Real-Time ExamplesFeb 08, 2022. In this article we will learn about the use of tMap component in real time example.
  • Query Values From JSON Outputs In PowerAutomateJan 10, 2022. In this article, we will go through couple of ways to get the required values from the JSON output values that we got from Power Automate.
  • How to Convert String Representation Number To Integer In C#Dec 30, 2021. C# per-define functions using string representation number to integer conversion.
  • Extract Choice Text Value In Power AutomateDec 30, 2021. In Power platform for some requirements, it is required to extract Choice values for entities. As an example, on update of Contact record, Status [Choice] Text Value will be extracted.
  • Exceptions In .NET✨Dec 13, 2021. In this article, you will learn about exceptions in .NET.
  • Exception Handling In PythonNov 25, 2021. In this article, you will learn about exception handling in Python.
  • Using Log4net to Log Exceptions in ASP.NETNov 22, 2021. In this guide, we explore how to effectively use Log4net for logging exceptions in ASP.NET applications. You'll learn how to configure Log4net, implement logging best practices, and capture detailed error information to enhance debugging and performance monitoring.
  • Parse CSV File Using Power AutomateOct 11, 2021. This article explains how to parse the data in csv file and update the data in SharePoint online.
  • How To Write Unit Test For Exception And Console Log In C#Oct 01, 2021. In this article, we are going to explore about how to write unit test for exception and console log in C#.
  • A Fix To Exception - Could Not Find Module “@angular-devkit/build-angular”Aug 24, 2021. This is a popular exception of Angular. This article gives one solution.
  • Creating A Virtual Directory Failed With The ErrorAug 16, 2021. In this article, we will debug the error: "Creating a virtual directory failed", and give a possible explanation.
  • Using Azure Application Insights For Exception Logging In C#May 27, 2021. In this article, you will learn how to use Azure Application Insights for Exception Logging in C#.
  • Learn About Exception Handling In JavaApr 18, 2021. Through this article, users will get in-depth knowledge of Exceptions and Exception handling used in Java.
  • Global Error Handling In ASP.NET Core 5Apr 14, 2021. In this article, you will learn about Process unhandled exceptions in ASP .NET Core 5.
  • Exception Handling (4), In ASP.NET Core Web APIMar 30, 2021. This article will discuss the exception handling in ASP.NET Core Web API
  • Exception Handling (3), In ASP.NET Core MVCFeb 23, 2021. Discuss and summary the exception handling in ASP.NET Core MVC
  • Exception Handling (2), In ASP.NET MVC Web APIJan 20, 2021. Discuss and summarize the exception handling processes in ASP.NET MVC Web API
  • Exception Handling (1), In ASP.NET MVCJan 18, 2021. Discuss and summarize the exception handling processes in ASP.NET MVC.
  • Learn About Filters In ASP.NET MVCDec 29, 2020. In this article, you will Explore the essence of ASP.NET MVC filters in this comprehensive guide. Understand how action, result, authorization, and exception filters enhance your web applications.
  • Azure Data Explorer - Reading JSON Data Using KustoNov 28, 2020. Azure Data Explorer empowers efficient querying of JSON data through Kusto Query Language (KQL). Explore, analyze, and visualize structured or unstructured data with ease, leveraging powerful data ingestion pipelines and real-time analytics capabilities for optimal insights.
  • Implement Global Exception Handling In ASP.NET Core ApplicationNov 16, 2020. Explore ASP.NET Core's robust exception handling mechanisms, including global handlers and custom middleware. Learn to implement middleware for comprehensive error management, ensuring smooth application execution and effective debugging.
  • How To Handle Exception In SQL ServerOct 08, 2020. In this article, we will learn how to handle exceptions in SQL Server using the Try-Catch block.
  • Exception Handling In .NET CoreAug 19, 2020. In this article, you will learn about Exception Handling in .NET Core.
  • In-Depth Analysis Of Exception Handling In C#Jul 02, 2020. In this article, you will learn about In-Depth Analysis of Exception Handling in C#.
  • Handling ExceptionsMay 17, 2020. In this article, you will learn about error handling in Java.
  • Types Of Exceptions In PythonMar 22, 2020. In this article, I will explain the types of exceptions in Python.
  • Exception Handling In SQL ServerMar 16, 2020. In this article, you will learn about exception handling in SQL Server.
  • Display Weather Forecast In ASP.NET MVC Using OpenWeatherMap Weather APIJan 14, 2020. Dive into ASP.NET MVC weather forecasting using OpenWeatherMap API. Follow steps to set up your project in Visual Studio, parse JSON responses, utilize ViewModels, and fetch data with WebClient. Enhance UI with HTML, CSS, and Bootstrap. Start building weather apps now!
  • Creating Azure WebJobs To Parse Message From Azure Storage QueuesJan 03, 2020. In this article, you will learn how to utilize Azure WebJobs to efficiently process messages from Azure Storage Queues. Explore background processing, message parsing, and event-driven architecture in Azure Functions for seamless cloud computing.
  • Global Error Handling In ASP.NET Core App Using NLog Dec 26, 2019. In this post, we will see how to create an error handling middleware in ASP.NET Core application and handle all the exceptions in the app globally. We will write the error log details into a text file using NLog library.
  • C# 8.0 ('Nullable Enable') To Avoid Null Reference ExceptionDec 16, 2019. Explore the C# 8.0 nullable enable feature, identifying null reference exceptions in production code. Understand its implementation, compiler verification, and error detection, ensuring proper initialization and handling of nullable properties. Improve code reliability and prevent runtime errors during development.

About Catching-Parsing-Exceptions

NA

OUR TRAINING