Related resources for CEP
  • Unraveling Azure Bicep Resources5/7/2024 10:29:22 AM. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep resources. It starts with logging into Azure, then moves on to explain the concept of resources in Azure Bicep, com
  • Mastering Azure Bicep Parameters5/7/2024 10:24:35 AM. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep parameters. It starts with logging into Azure, then moves on to explain the concept of parameters in Azure Bicep, c
  • Understanding Fundamental AI Concepts5/6/2024 8:52:32 AM. In this Artificial Intelligence (AI) Fundamentals learning series, we will explore some of the fundamental concepts underlying AI, providing insights into how these concepts work and their significanc
  • Dive into Azure Bicep Syntax & Basics5/6/2024 4:14:30 AM. Explore Azure Bicep syntax with this comprehensive guide, deciphering its intricacies. Learn to streamline Azure resource deployment using Infrastructure as Code, simplifying ARM template management a
  • Kickstarting Azure Infrastructure: Azure Bicep5/5/2024 8:34:19 AM. Learn to rapidly deploy Azure infrastructure using Azure Bicep with this beginner's guide. Automate resource provisioning, enhance scalability, and streamline management through Infrastructure as
  • Decoding Azure Infrastructure: Azure Bicep and ARM Templates5/5/2024 8:32:09 AM. In the previous article, we introduced Azure Bicep and discussed its advantages over ARM templates. We learned about its simplified syntax, improved modularity, better tooling, and transparency over A
  • Azure Bicep - Introduction to Azure Bicep5/3/2024 10:02:14 AM. This is a 14-Day series which introduces Azure Bicep Infrastructure as Coding (IaC) to the readers. This will be posted in 14 parts for ease of reading.
  • Exception Handling in MVC5/2/2024 9:50:23 AM. Learn effective exception-handling techniques in MVC (Model-View-Controller) for robust web applications. Explore try-catch blocks, global exception filters, custom error pages, and logging strategies
  • JSON Web Auth Using Angular 8 And NodeJS5/1/2024 11:41:39 AM. Learn to implement JSON Web Token (JWT) authentication in Angular 8 with Node.js backend. JWT provides a secure way to transmit data between parties. This tutorial covers token generation, intercepto
  • 3 Important Concepts: - Association, Aggregation and Composition5/1/2024 11:12:36 AM. Explore essential OOP concepts like association, aggregation, and composition through real-world examples. Understand their significance in modeling relationships and code maintainability. This artic
  • Integration Testing With Fitnesse5/1/2024 11:01:40 AM. Integration Testing With Fitnesse" explores using Fitnesse for automated integration and acceptance testing. Learn how to leverage Fitnesse's features for seamless integration testing, enhanc
  • Implement Global Exception Handling In ASP.NET Core Application4/29/2024 11:47:51 AM. 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 appl
  • .NET Serialization4/24/2024 1:26:20 PM. Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Vi
  • Improve Performance of .NET Application4/24/2024 7:42:39 AM. Enhance .NET application performance through techniques like code profiling, caching, asynchronous programming, and database query optimization. Implementing these strategies boosts efficiency and res
  • Learn About Filters In ASP.NET MVC4/23/2024 10:02:02 AM. 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.
  • .NET Reverse Engineering: Part 34/19/2024 10:37:22 AM. In this article, we shall be confronted with the rest of the implementation in the context of CIL programming as such, how to build and consume DLL file components using the MSIL programming opcodes i
  • CancellationToken in ASP.NET Core4/19/2024 5:43:27 AM. CancellationToken in ASP.NET Core provides a powerful mechanism for achieving this goal. In this article, we will delve into the concept of CancellationToken, its usage, and practical examples to illu
  • Introduction to the Assembly Concept4/18/2024 1:23:08 PM. An introduction to the assembly concept explores the fundamental unit of deployment in .NET applications. Assemblies encapsulate code, metadata, and resources, aiding in code management, versioning, a
  • Intoduction of Interceptors in .NET 8 and C# 12: How to use it?4/18/2024 9:15:23 AM. Interceptors are an experimental feature, available in preview mode with C# 12. An interceptor is a method that allows you to substitute a call to an interceptable method, with a call to itself at com
  • Best Practices for Handling Exceptions in C# 4/16/2024 10:49:46 AM. 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, a
  • What's new in .NET 9? .NET 9 Preview 3 4/12/2024 4:59:05 AM. 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 boos
  • C# 8.0 ('Nullable Enable') To Avoid Null Reference Exception4/10/2024 9:34:02 AM. 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 initial
  • Core Concept Of ERD (Entity Relationship Diagram)4/9/2024 8:43:47 AM. In this article, we will learn The core concept of Entity Relationship Diagram (ERD) lies in visually representing the relationships between entities in a database system. It illustrates how different
  • Global Error Handling In ASP.NET Core App Using NLog 4/8/2024 8:44:06 AM. 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
  • Soft Delete in Entity Framework Core4/8/2024 7:15:23 AM. Soft delete in Entity Framework Core allows for logically marking records as deleted without physically removing them from the database. This technique involves setting a flag, often "IsDeleted,&
  • Building Azure Bicep Reusable Components with Private Registry4/3/2024 10:28:04 AM. In this article, we are going to learn how to reuse the Bicep Infrastructure as Code with your team and other teams across the Organization.
  • Exception Filters in MVC4/2/2024 9:12:12 AM. Learn how MVC handles exceptions using built-in and custom exception filters. Explore the HandleError attribute for managing exceptions and creating custom error pages. Avoid the dreaded Yellow Scree
  • Custom Error Page in ASP.NET MVC4/2/2024 9:10:10 AM. In this article, we will Discover the ins and outs of Custom Error Pages in ASP.NET MVC with this comprehensive guide. Learn how to handle and customize error responses effectively within your MVC app
  • ASP.NET MVC with Action Filters4/1/2024 6:30:02 AM. In this article, we will learn how to enhance your ASP.NET MVC applications with Action Filters. Action Filters provide a powerful mechanism for injecting cross-cutting concerns such as logging, authe
  • Learn about ASP.NET MVC Life Cycle4/1/2024 6:28:41 AM. Understand the MVC life cycle from HTTP request to response. Learn about ASP.NET's Page class, IHttpHandler interface, and MVC's Controller. Explore RouteTable and UrlRoutingModule for routing
  • Understanding Filters in MVC3/29/2024 10:56:27 AM. There are situations in which we have an implementation that will be reused in many places that is not confined to a single place or method. This is fulfilled by the Filters in MVC. Let's discuss
  • Exception Handling in Vue.js Application3/29/2024 10:42:11 AM. 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, globa
  • Difference Between Throw Exception and Throw Clause3/29/2024 9:54:44 AM. In this article, you will understand the difference between 'throw exception' and 'throw clause' is essential for effective error handling. While 'throw exception' generates an
  • Information Computation Mastery: Challenges, Concepts, Implementation3/28/2024 4:53:53 AM. To use computers to automate information processing we have to deal with bitstreams as the information representation. By design, bitstream management involves the organization, storage, retrieval, co
  • PiP - External Streaming Data - Useful Concepts - Part 13/27/2024 7:21:34 AM. To use computers to automate information processing we have to deal with bitstreams as the information representation. By design, bitstream management involves the organization, storage, retrieval, co
  • Angular HTTP Interceptors: Sending Tokens with Every Request3/24/2024 6:55:14 PM. In modern web applications, authentication plays a crucial role in securing resources and ensuring that only authorized users can access certain parts of the application. One common way to handle auth
  • Data Structures And Algorithms - Part One - Introduction3/20/2024 11:52:14 AM. Explore the fundamentals of data structures and algorithms in this introductory course. Learn about data organization, algorithmic thinking, and foundational concepts essential for problem-solving in
  • Logging And Tracing With Post Sharp3/19/2024 11:58:46 AM. Learn how to implement logging and tracing in .NET applications using PostSharp. Utilize aspect-oriented programming to inject logging behavior into methods, simplifying code maintenance and enhancing
  • Designing a Quiz App with Django: From Concept to Completion3/19/2024 6:04:46 AM. Designing a quiz app with Django encompasses the full journey from conceptualization to realization. Utilizing Django's robust framework, Python developers craft interactive quiz platforms, integ
  • Refactoring Common Code with Azure Bicep User Defined Functions3/19/2024 5:22:47 AM. Learn how to use Bicep's new feature (in preview currently) called "User Defined Functions" to make deploying your cloud resources on Microsoft Azure easier. This blog will teach you a s
  • Exception Handling In ASP.NET Core Web API3/11/2024 7:27:08 AM. 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 commu
  • Misconceptions About the Four LINQ methods3/9/2024 5:22:36 AM. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault()
  • Unit Test in ASP.NET Core Application3/7/2024 6:43:16 AM. 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, han
  • Implement Global Exception Handling Middleware in .NET Project3/7/2024 4:37:09 AM. 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 ca
  • Practical Introduction To Entity Framework: Day 43/6/2024 10:36:48 AM. This content provides a detailed guide on returning multiple result sets or data sets in Entity Framework. It walks through the steps involved, including creating a normal stored procedure, adding an
  • SQL Server Error Logging From A Stored Procedure3/5/2024 10:28:44 AM. In this article, we will learn effective error handling in SQL Server stored procedures. Utilize RAISERROR to log errors, manage exceptions, and maintain robust error reporting mechanisms for enhanced
  • How to Get the MAC Address of System Using ASP.NET/C#3/1/2024 10:35:18 AM. In this article, we will learn how to retrieve the MAC address of a system using Asp.net/C#. Explore methods to access network interface information, retrieve hardware identifiers, and ensure system s
  • Exception Handling in C#2/29/2024 10:09:08 AM. In this article, we will learn Exception handling in C# is a mechanism in .NET to detect and handle run-time errors. This article teaches you everything about exception handing in C#.
  • Learn Exception Handling in C#2/28/2024 11:14:25 AM. 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 application
  • Using Variables in Bicep2/27/2024 6:11:25 AM. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • Bicep Data Types Explained2/25/2024 4:54:53 AM. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • Will Windows 8 Sink the Microsoft Ship?2/23/2024 9:30:42 AM. It has been more than a year since Windows 8 was introduced to the consumers. The date was Oct 26, 2012 to be exact. And here we are, still debating if Windows 8 is a failure.
  • Bicep Resources: What They Are and How to Use Them2/23/2024 3:53:25 AM. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • Bicep: A Muscle or Part of Azure?2/21/2024 1:55:41 PM. Bicep is a domain-specific language (DSL) that is used for deploying Azure resources - learn more about it in this series of articles!
  • Error Management in .NET Core2/18/2024 5:17:32 AM. 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
  • Global Exception Handling in .NET Core with Custom Middleware2/16/2024 4:03:42 AM. Global exception handling in .NET Core, utilizing custom middleware, centralizes error management, enhancing resilience and simplifying maintenance. This approach streamlines error handling across the
  • Polymorphism Concept in Object-Oriented Programming2/12/2024 6:20:17 AM. What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an
  • NULL Conditional Operator In C# 6.02/7/2024 11:41:56 AM. In C# programming, developers often encounter the "Object reference not set to an instance of an object" exception, commonly known as a NullReferenceException. However, with the introduction
  • Handling Null Values in DataGrid2/7/2024 11:30:13 AM. n C# programming, developers often encounter the "Object reference not set to an instance of an object" exception, commonly known as a NullReferenceException. However, with the introduction
  • What Are Interceptors in C# 122/7/2024 6:54:49 AM. C# 12's experimental Interceptors let you reroute method calls during compilation. Think of them as "code detours" for specific methods, allowing modifications without directly changing
  • IExceptionHandler in ASP.NET Core 82/7/2024 6:17:06 AM. 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 e
  • Null Handling in C# Using Null-Conditional and Coalescing Operators1/25/2024 6:58:35 AM. 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-co
  • Exploring Filters in .NET Core1/17/2024 10:31:18 AM. .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
  • Real-Time Paris Metro Crowdedness Forecast: A Proof of Concept with Azure and C#1/8/2024 11:36:29 AM. In this article, we will learn about navigating you through crafting a prototype for forecasting crowd levels in Paris Métros using Azure and C#. It covers Azure setup, machine learning, model de
  • IndexedDB and Its Basic Concept1/5/2024 6:26:52 AM. In this article, we will learn about IndexedDB, a powerful client-side storage API for storing and retrieving structured data asynchronously. Explore its key features, concepts, and a practical exampl
  • External Data - File and Stream Concepts1/3/2024 6:49:37 AM. The external data is recognized as the data we must pull or push from outside of a boundary of the process hosting the computer program. A very important kind of external data is streaming data. Usual
  • Understanding Interceptors in C# and .NET1/1/2024 7:28:30 AM. Interceptors in C# and .NET are powerful tools for intercepting method calls, enabling developers to add cross-cutting concerns such as logging, validation, caching, and security to applications. Thes
  • Microservices Development with 3-Tier Architecture and Circuit Breaker Design Pattern Using Microsoft ASP.NET Core Web API12/30/2023 12:49:54 PM. 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 fail
  • Source Control (4-9-3), Git - Merge in Concept12/8/2023 4:48:16 AM. This article discusses the Merge for Git.
  • Join vs. Except and Intersect in SQL12/6/2023 4:57:35 AM. SQL Improvement Performance Tips & Tricks. Explore SQL data retrieval methods with JOIN, EXCEPT, and INTERSECT keywords. JOIN combines rows from multiple tables based on a related column, while EX
  • What is Type Conversion in C#?10/31/2023 5:18:34 AM. 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 conversio
  • Hello World In different Styles10/26/2023 9:43:29 AM. I've attempted to write the traditional 'Hello World' in different styles. This explores the different possibilities of addressing a problem - 'Hello World' with different features
  • 9 Key Concepts To Keyword 'Static'10/26/2023 7:05:54 AM. This article summarizes some of the key concepts around the keyword static that every developer must remember.
  • Statistical Concepts for Data Analysis10/26/2023 4:52:20 AM. Statistics is a powerful tool used to analyze data, make informed decisions, and draw meaningful insights from information. Whether you're a data scientist, researcher, or just curious about the w
  • Exception Handling in Power Automate Using Try Catch Scope Action10/20/2023 11:02:20 AM. 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. B
  • Fixing Unhandled Exception on the Current Circuit in Blazor10/20/2023 8:28:49 AM. Learn how lookout for a solution for the error unhandled exception on the current circuit
  • Action Filters in ASP.NET Core10/13/2023 8:10:05 AM. 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 Mastery10/5/2023 5:01:27 AM. 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 insi
  • Building a Microservices API Gateway with YARP in ASP.NET Core Web API10/3/2023 6:29:13 AM. 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 feat
  • Using MockingContext: A Flexible IServiceProvider Implementation in C#10/3/2023 5:43:56 AM. Explore the MockingContext class: a custom implementation of the IServiceProvider interface in C#. Learn how this class provides an efficient way to automatically instantiate or mock services on-the-f
  • Angular Hydration: A Key Concept for Web Developers9/27/2023 10:13:37 AM. Angular Hydration A Key Concept for Web Developers explores the fundamental concept of Angular hydration, a critical element in Angular's rendering process. This concept is pivotal for web develop
  • Catching Exceptions in C#9/25/2023 10:14:01 AM. This article explains you about exceptional handling in C#. How to use try, catch, finally block to handle exception handling. Here I have listed all types of Exception Class.
  • Concept Of Polymorphism (Late Binding) In C#9/22/2023 10:35:20 AM. Concept Of Polymorphism (Late Binding) In C#. Polymorphism is the primary pillars of an object-oriented programming. The word polymorphism is combined using two words. “Poly” which means many and “mor
  • Custom Exceptions in C#9/19/2023 6:31:26 AM. Enhance error handling in C# with custom exceptions. Learn how they provide specificity, control, documentation, and maintainability, and follow best practices for effective implementation.
  • Exception Handling in SQL Server 9/14/2023 4:36:29 AM. 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
  • Null Propagation Operator In C# 6.09/11/2023 11:30:14 AM. This article describes a new feature of C# 6.0, the null propagation operator.
  • Some Useful and Important Concepts of C#9/11/2023 7:11:12 AM. In this article I have explained some important concepts related to the C# language such as Implicit & Explicit type conversion, Boxing and UnBoxing of data types, static and nonstatic methods an
  • Real-time Monitoring with Azure Application Insights in ASP.NET Core Web API9/6/2023 8:40:36 AM. 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 capabi
  • Oracle Data Provider for .NET : Part VI9/5/2023 6:06:08 AM. Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features f
  • How to Implement 3 Layered Architecture Concepts in ASP.Net8/29/2023 11:37:30 AM. In this article you will learn how to implement 3-Tier Architecture concepts in ASP.Net.
  • Exception Filter in C# 6.08/28/2023 4:33:29 AM. Exception filters were introduced in C# 6.0 as a feature that allows you to specify additional conditions within a catch block. These conditions, known as exception filters, determine whether the catc
  • What is CEP and How to Validate CEP using C#?8/21/2023 7:10:22 PM. In this article, we will learn about what is CEP and how to validate CEP using C#.
  • Exception in Finally Block8/17/2023 8:23:48 AM. This article explains what happens if a finally block throws an exception with a simple example.To summarize, the "finally" block ensures that certain code is executed no matter what, whethe
  • Implementing Content Negotiation for Flexible Data Formats8/16/2023 1:10:51 PM. 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
  • HTTP Interceptors in Angular8/12/2023 1:26:06 PM. Explore the essential concepts of HTTP Interceptors in Angular, their benefits, and practical applications using step-by-step examples with Angular 15, improving HTTP request handling and enhancing fu
  • What Is Storage Provisioning In Virtualization Concepts8/9/2023 5:46:23 AM. In this article, you will learn what is Storage Provisioning in Virtualization Concepts.
  • What Is Building A Data Center In Virtualization Concepts8/8/2023 9:03:07 AM. In this article, you will learn what is Building a Data Center in Virtualization Concepts.
  • Global Exception Handling In Asp.net Core Web API8/4/2023 6:27:15 AM. 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
  • Exploring Data Center Storage Concepts7/31/2023 9:56:56 AM. Discover the diverse world of data center storage concepts with this exploration. Delve into the cutting-edge technologies and methodologies used to efficiently manage, store, and access vast amounts
  • Flurl API Integration Tutorial for ASP.NET Core Web API with Advanced Concepts7/31/2023 9:13:30 AM. Flurl is a popular and easy-to-use library for working with HTTP APIs in .NET applications. It provides a fluent API for building and sending HTTP requests, as well as handling the responses in a conv