Resources  
  • Data Binding in AngularMar 23, 2024. Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
  • Learn about Asynchronous Events in C#Mar 20, 2024. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Ideal for intermediate C# programmers seeking to optimize event-driven applications.
  • Creating Funnels Using Custom Events in Application InsightsMar 07, 2024. Learn to add custom events to a simple .NET application's telemetry and then use these events to create funnels that identify users who complete a specific sequence of steps in your application.
  • How to Detect Event on Clicks Outside in Vue.jsMar 07, 2024. Detecting clicks outside an element in Vue.js is crucial for scenarios like closing dropdown menus or modals. This guide provides a step-by-step process, ensuring efficient handling of such events.
  • Power of Typescript Scroll EventsMar 06, 2024. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences, allowing developers to respond to user interactions with scrolling.
  • Master Scroll Events: ECMAScript 8 (ES8) and TypeScriptMar 05, 2024. We'll explore how to adapt and extend the scroll event examples using ECMAScript 8 (ES8) features and the TypeScript language. These advanced techniques provide developers with additional tools and benefits for handling scroll events in modern web development.
  • Disable Right Click Directive in Vue.jsMar 05, 2024. In Vue.js, disable right-click functionality by creating a custom directive. Bind an event listener to contextmenu, preventing its default behavior. Easily implement this directive for specific elements in your templates.
  • Vue.js Custom Events: Enhance Parent-Child Communication with $emit()Mar 01, 2024. Vue.js, with its powerful reactivity system, allows seamless communication between parent and child components. While props enable data flow from parent to child, the $emit() method serves as a bridge for sending information from the child back to the parent.In this comprehensive guide, we will explore the intricacies of Vue.js custom events, focusing on the application of the $emit() method to create dynamic and interactive user interfaces.
  • How to Communicate from Child to Parent Using Events in Vue.jsFeb 27, 2024. In Vue.js, child components can communicate with parent components through custom events. Child components emit events using $emit, and parent components listen and respond accordingly, enabling dynamic interaction.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • .NET Delegates in Event-Based Asynchronous Pattern for SeniorsFeb 26, 2024. This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implement asynchronous operations effectively.
  • How Do I Implement a 'Mouse Double Click' for a ListBoxFeb 26, 2024. Implementing a "mouse double click" event for a ListBox typically involves subscribing to the ListBox's MouseDoubleClick event and specifying the action you want to perform when the event occurs.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • ASP.NET Core with Hosted Service & Lifecycle EventsFeb 20, 2024. ASP.NET Core with Hosted Service & Lifecycle Events explores the integration of background tasks in ASP.NET Core applications. Learn how to implement long-running processes efficiently, manage service lifetimes, and leverage lifecycle events for graceful initialization and shutdown.
  • What Are the Directive Hook Arguments in Vue.jsFeb 13, 2024. In this article, we will understand the lifecycle of Vue.js directives through their hook arguments. Explore how these parameters facilitate interactions and manipulations within the directive's lifecycle, enhancing control and customization in Vue.js applications.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • What are Synthetic Events in React?Feb 08, 2024. Howmany character only this content-This content highlights the significance of synthetic events in React, which are wrappers around native browser events providing a consistent interface across different browsers. It emphasizes their advantages, including cross-browser consistency, performance optimizations, and additional features.
  • 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.
  • Display an Application Notification in Dynamics 365 Using JavaScriptFeb 07, 2024. Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 07, 2024. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
  • Vue.js Event Handling with v-on DirectiveFeb 07, 2024. Vue.js offers a powerful event handling mechanism through the v-on directive, enabling developers to respond to user actions such as clicks, inputs, and mouse movements dynamically.
  • What Are Event Modifiers in Vue.jsFeb 07, 2024. Event handling in Vue.js becomes even more powerful with the use of event modifiers. These modifiers enhance your ability to precisely control how events trigger the execution of methods, making your code more efficient and readable.
  • Apache Kafka with Dapr Bindings in .NETFeb 07, 2024. This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Dapr Bindings, along with step-by-step
  • Explain about Mouse Events in JavaScriptFeb 06, 2024. Unlock the potential of mouse events in JavaScript for dynamic web interactions. From simple clicks to intricate movements, utilize events like click, dblclick, mouse down, mouse up, mouse move, mouseover, mouse out, mouse enter, mouse leave, and context menu.
  • Integration Guide: Effortless Microsoft Graph API Access SSOFeb 06, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. The rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Integration Guide for Effortless Microsoft Graph API AccessFeb 05, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. Empower your applications with the rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Custom Events in C# for Enhanced Communication and FlexibilityJan 31, 2024. In C#, you can create custom events to provide a way for classes to communicate and react to certain actions or state changes.
  • Understanding Event Sourcing Pattern in .NETJan 29, 2024. Event Sourcing, a potent architectural pattern in .NET, captures state changes through events, promoting auditability, time travel, and scalability. Learn its implementation and best practices for resilient applications.
  • What is Event Handling in Vue.js?Jan 23, 2024. Vue.js empowers web developers to create dynamic and responsive applications through efficient event handling. In this comprehensive guide, we will delve into the intricacies of Vue events, exploring the v-on directive, Vue methods, and event modifiers.
  • Extending HttpClient With Delegating Handlers in ASP.NET CoreJan 17, 2024. Explore the power of the HttpClient class in ASP.NET Core through Delegating Handlers. Learn to create a custom handler for logging HTTP requests and responses, enhancing HttpClient functionality with extensibility and modularity.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Azure Functions in ASP.NET Core Web APIJan 01, 2024. Azure Functions, a component of Microsoft's serverless computing offerings in Azure, enable developers to create and deploy small, event-driven code without managing infrastructure. These functions, supporting languages like C# and JavaScript, automatically scale and integrate with Azure services, streamlining the development of serverless applications and microservices.
  • Event Driven Architecture in MicroservicesDec 24, 2023. In this article, you will learn about event streaming in microservices. Event streaming in microservices is a powerful approach to communication and data processing based on a continuous flow of events. Instead of relying on traditional request-response mechanisms, services publish and subscribe to events, enabling loose coupling and real-time data processing.
  • Implementing Unit Test .Net Core Application Using CQRS HandlerDec 15, 2023. Unit testing Dot Net Core using CQRS Architecture. This article delves into testing .Net Core API projects using the XUnit testing framework. Demonstrating unit tests for a CQRS architecture, it covers arrangement, action, and assertion phases with mocking and examples.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse PipelineOct 23, 2023. Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse Pipeline
  • Mediator Design Pattern in ASP.NET Core Web API with 3-Tier ArchitectureOct 19, 2023. The Mediator Design Pattern is a behavioral design pattern that defines an object that centralizes communication between a set of objects. It promotes loose coupling between components by preventing direct connections between them. Instead of components communicating directly, they communicate through a mediator.
  • Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event TriggerOct 05, 2023. Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event Trigger
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Event Trigger Power BI Entities Refresh via Azure SQL DatabaseSep 23, 2023. Event Trigger Power BI Entities Refresh via Azure SQL Database
  • Differences Between CQRS, MediatR, and CRUDSep 21, 2023. Explore the differences between CQRS, MediatR, and CRUD in this insightful article. Learn when to use each technique, their unique benefits, and find scenarios where they shine in .NET development.
  • Events in ReactSep 13, 2023. Events in React are used to create interactive applications that provide information to the user when an event occurs.
  • Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET CoreSep 13, 2023. In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementation details may vary depending on your use case and requirements. Additionally, Azure provides extensive documentation and tools to assist you in configuring and managing these services effectively.
  • Transforming Streaming Data into Insights with Power BISep 12, 2023. Power BI empowers real-time dashboard creation, integrating streaming data sources like Azure Event Hubs, Kafka, and PubNub. Optimize data ingestion, design, and interactivity for effective real-time insights.
  • ASP.NET (2) - ASP.NET ControlsSep 06, 2023. This series of articles on ASP.NET, originally from legacy OneNote notes, covers fundamental concepts. It offers valuable insights into current programming involving similar technologies like Angular and React.
  • ASP.NET (4-1) - Page Life Cycle: DebuggingSep 04, 2023. In summary, debugging in ASP.NET Page Life Cycle involves closely monitoring the execution flow, inspecting control states, and handling exceptions to identify and resolve issues efficiently. Understanding the life cycle events and their order helps developers pinpoint problems and ensure smooth web application operation.
  • View-Model in Vue.js Sep 01, 2023. Explore Vue.js's View-Model architecture, central to building efficient interfaces. Learn what it is, its importance, and how to use it for separation of concerns, reactivity, and organized code.
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • Delegates in C# Aug 25, 2023. Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
  • How To Display Alert Message In React.jsAug 24, 2023. How to Display Alert Message in React.js is a concise guide that walks you through the process of implementing alert messages or notifications in your React.js application. With this guide, you'll learn how to effectively communicate important information to users in a user-friendly manner.
  • Azure Stream Analytics Queries for Processing JSON DataAug 21, 2023. Exploring Azure Stream Analytics Queries for Processing JSON Data
  • Azure Event Hub: Empowering Seamless Real-Time Data StreamingAug 18, 2023. Azure Event Hub's transformative role in managing vast real-time data streams. Learn how it empowers efficient ingestion, processing, and distribution, enabling informed decisions and innovative applications.
  • Unlocking the Power of Serverless Computing with Azure Functions Jul 16, 2023. Azure Functions are a serverless computing service provided by Microsoft Azure. They allow developers to write and deploy small units of code called functions that can be triggered by various events. With scalability, cost efficiency, and seamless integration with other Azure services, Azure Functions provide an efficient solution for building event-driven and microservices-based applications. They support multiple programming languages, offer easy deployment and management options, and provide built-in monitoring and debugging capabilities. Azure Functions are found within the Azure portal and can be created using Azure CLI or Visual Studio.
  • Events and Event Delegation ModelJul 10, 2023. In any interactive environment, the program should be able to respond to actions performed by the user. These actions can be mouse click, key press or selection of a menu item.
  • Global Error Handling in Mule applicationJun 29, 2023. In this article, we will learn about how to use a global error handler in Mule application.
  • Basic Internal Error Handlers in Mule applicationJun 27, 2023. In this article, we will learn about some basic internal error handlers in Mule application.
  • Configure AWS User Notifications for AWS ServicesMay 30, 2023. Amazon Web Service (AWS) recently announced a new service, ‘AWS User Notifications’, that enables you to centrally setup and view notifications from various AWS services like AWS EC2 instance state changes, AWS S3 object events, AWS CloudWatch alarms, AWS Support case updates, etc.
  • Unleashing the Power of a Generic Event Bus in Angular: Building a Powerful and Scalable ArchitectureMay 30, 2023. A generic event bus in Angular acts as a central communication hub that enables components to publish and subscribe to events. It promotes loose coupling and enhances the flexibility and scalability of large-scale applications. By leveraging the event bus, developers can establish efficient communication between different parts of the application, facilitating seamless cross-component and cross-module interactions.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • Custom JWT Handler In ASP.Net Core 7 Web API May 26, 2023. In ASP.NET Core Web API, you can create a custom JWT (JSON Web Token) handler to handle token authentication and authorization. The custom handler lets you define your logic for validating and processing JWT tokens.
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • Processing & Handling multiple messages from WebHookApr 28, 2023. When we try to process a message from webhook, and do we need to process the message in queue or priority queue should be processed first
  • Embracing Event Sourcing in .NET 6: Design, Implementation, and Best PracticesApr 26, 2023.
  • How to Use EventCallBacks for Two-Way Communication Between Blazor ComponentsApr 24, 2023. How to Use EventCallBacks for Two-Way Communication Between Blazor Components.
  • Scrum - Roles, Events And Artifacts Apr 21, 2023. This is an article on Scrum Roles, Events, & Artifacts.
  • Plugins and Event Execution Pipeline in DataverseApr 19, 2023. Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation. It is a custom business logic implemented using custom class as a Class Library in .NET framework. It is compiled into a  assembly that can be uploaded and registered in Dataverse.
  • Azure Messaging And Event Streaming Services - An Overview And Comparison With KafkaApr 04, 2023. In this article, you will learn about Azure Messaging and Event Streaming Services: An Overview and Comparison with Kafka.
  • Storage Event Trigger In DatabricksMar 07, 2023. Trigger jobs when new files arrive in storage container (Azure Blob/AWS bucket)
  • Event Handling In ReactJSMar 06, 2023. In this article, you will learn about Event Handling in ReactJS.
  • Broadcasting Events In AngularFeb 14, 2023. In this article, we will learn Broadcasting events in Angular application. Broadcasting events is generally use for brodcast message or data to whole application.
  • Show And Hide DIVs On Button Click With JavaScriptFeb 13, 2023. In this article, you will learn how to show and hide DIVs on Button Click with JavaScript.
  • How To Handle Event Handling And Routing In ReactFeb 07, 2023. In this article, you will learn how to handle Event Handling and Routing in React.
  • What Is SIEMFeb 02, 2023. Learn about what is SIEM [ Security information and event management ] and its roles.
  • Use Of Delegates In C# EventsJan 23, 2023. Here is an example of programs in C# that demonstrates the events with and without delegates.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • Events And Delegates In Class Library And Worker ServiceDec 21, 2022. In this article, you will learn about Events and Delegates in Class Library and Worker Service.
  • Error Handling With AngularDec 20, 2022. In this article, you will learn about Error Handling with Angular.
  • Apache Kafka Introduction, Installation, And Implementation Using .NET Core 6Dec 12, 2022. In this article, you will learn about Apache Kafka Introduction, Installation, and Implementation Using .NET Core 6.
  • C# In Practice - Building Tech Support AppDec 01, 2022. In this article, you will learn about simple app building for beginners in C#.
  • Blazor Life Cycle Events - OversimplifiedOct 10, 2022. There's a lot that goes into memory when blazor components load into the memory. There are 8 methods which decide the lifecycle of a component. Let's take a deep dive to understand how they communicate to make components alive.
  • SharePoint Framework (SPFx) - Graph API - ReactJS Get Calendar Events From Office 365Aug 08, 2022. In this article, we will see how we can get calendar events from Office 365 into a SharePoint framework – SPFx ReactJS web part using Graph API.
  • Thread-Safe Events In C#Jul 30, 2022. Discussion on the proper method to check for null-value and raise Event in C#.
  • How To Debug Azure Event Grid Trigger Function Using PostmanJul 02, 2022. How To Debug Azure Event Grid Trigger Function Using Postman
  • Azure Event Grid - Trigger Event To EndpointJun 02, 2022. In this article, we'll learn to trigger event to the endpoint.
  • Event Subscription Using Web Hook May 27, 2022. In this article, we'll learn about subscribing to blob storage for the Azure Event Grid Article Series.
  • Routing Blob Storage Events Using Azure Event GridMay 23, 2022. In this article, we'll learn to route blob storage events with Azure Event Grid.
  • Events On Collection (List) In C#May 17, 2022. Events on Collection using List. The Application example shows how to add Events on Different Methods of List in C#.
  • Azure Event GridMay 09, 2022. In this article, we'll learn about azure event grid.
  • Manage Amazon S3 Buckets Using Event Notifications With AWS SQSMay 06, 2022. In this article, I will be configuring AWS SQL queues as a destination to track delete event from my S3 bucket.
  • How To Enable JavaScriptApr 29, 2022. JavaScript is an interpreted, object-based scripting language. Although it has fewer capabilities than full-fledged object-oriented language like C++ and Java, JavaScript is more than sufficiently powerful for its intended purposes.
  • Functionality And Events Of Angular GridMar 29, 2022. In this article, you will learn about the functionality and events of Angular Grid.
  • How To Send Parameters To Event CallBacks In BlazorMar 01, 2022. In this article, we will learn what are the steps you need to take to send a parameter in event callbacks in blazor, we demonstrated the same with a Blazor server app.
  • 5 Steps To Implement Event Call-Backs In BlazorFeb 28, 2022. In this article, you will learn about Hands-on implementation of parent child communication in blazor.
  • How To Subscribe Group Members To Get Group Conversations And EventsJan 30, 2022. How to enable the group settings to send copies of group conversations and events to group members
  • Link Web Resource To A Form In Dynamics CRMJan 19, 2022. In Dynamics 365 CRM, post creation of a web resource, to use it in CRM Form for a selected entity then we must add web resource into Form Libraries present at form level and then tie it to Event Handlers for a selected Event on Main Form. As an example, in Contact Customizations Solution for Contact Entity Main Form a web resource will be added to perform customizations on Contact Record.
  • Use Microsoft Forms For Event Registrations And Send Calendar Invite To Attendees Using Power AutomateDec 21, 2021. This article will briefly help you in how you can maintain the attendee’s data in SharePoint list and send attendee a calendar invites via mail.
  • Microsoft Intune Enrollment Failure - Event ID 76Dec 15, 2021. In this article, you will learn about microsoft intune enrollment failure.
  • Send Events To Event Grid Topic From Blob Triggered Azure Function Using Managed Service IdentitySep 26, 2021. This article demonstrates one use case of managed identity which explains how to send events from blob triggered azure function to Event grid topic in a simple way by using managed service identity.
  • Advanced Entity Framework Core Tips In Practice: Concurrency, Query filters and SaveChanges Method Abilities💪Sep 20, 2021. I am describing the practical aspects of working with Entity Framework Core. In this article I am touching Concurrency token and RowVersion, on save changes interceptor with a bunch of useful logic like tracking who and when did the change, versions, validations and domain events sending.
  • Creating An Azure Event Hub - Practical ScenarioAug 09, 2021. In this article, you will learn how to create Azure Event Hub.

About Event-Handler

NA

OUR TRAINING