TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Handlers
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ajay Kumar (3)
Vijay Yadav (2)
Mahesh Chand (2)
Ashish Singhal (2)
Shivprasad (2)
C# Curator (2)
Zoran Horvat (2)
Abhimanyu K Vatsa (1)
Manoj Kalla (1)
Sanjay Kumar (1)
Jitendra Mesavaniya (1)
Hemant Kumar (1)
Naveed Zaman (1)
Mark Pelf (1)
Sreejith Gopinathan (1)
Sardar Mudassar Ali Khan (1)
Raj Kumar (1)
Venkatasubbarao Polisetty (1)
Deepak Dutta (1)
Abhijeet Singh (1)
Chintan Rathod (1)
Gaurav Kumar (1)
Prashant Rewatkar (1)
Mayank Tripathi (1)
Amit Tyagi (1)
Shankar M (1)
Mahender Pal (1)
Jasminder Singh (1)
Sachin Kalia (1)
Dave Richter (1)
Anubhav Chaudhary (1)
Ikram Ali (1)
Jean Paul (1)
jhblankenship (1)
Sivakumar Nagarajan (1)
Abebe Assefa (1)
Scott Lysle (1)
Vijay Prativadi (1)
Destin Joy (1)
Subhendu De (1)
David Sosby (1)
Abhijeet Warker (1)
Jigar Desai (1)
Mike Gold (1)
Related resources for Handlers
No resource found
Logging Errors With Error Logging Modules And Handlers (ELMAH) in ASP.NET MVC 4
10/8/2024 8:33:16 AM.
Error Logging Modules and Handlers (ELMAH) is an alternative to Health Monitoring System (HMS) for logging errors and is free and available under an open-source license created and managed by Atif Azi
Overview of Minimal API
10/1/2024 8:20:11 AM.
Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, makin
Detailed use of Action Delegate in C#
9/11/2024 6:46:49 AM.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It sup
Understanding HttpHandler vs HttpModule in ASP.NET Web Forms
8/7/2024 7:01:04 AM.
In ASP.NET Web Forms, HttpHandler and HttpModule customize request processing. HttpHandler processes specific request types, such as serving dynamic content or custom file downloads. HttpModule interc
CQRS Simplified - Explained and Implemented
7/30/2024 9:13:28 AM.
CQRS (Command Query Responsibility Segregation) in .NET Core separates read and write operations for better scalability and performance. By using distinct models for commands and queries, it simplifie
What is a Handler in ASP.NET Web Forms and How to Use It
7/30/2024 6:26:02 AM.
Learn about HTTP handlers in ASP.NET Web Forms, which handle specific HTTP requests like image generation and file downloads. Implement handlers by creating a class that implements IHttpHandler, regis
Implementing CQRS and Event Sourcing with .NET Core
7/19/2024 10:48:48 AM.
This article explores implementing CQRS (Command Query Responsibility Segregation) and Event Sourcing with .NET Core. It covers the basics of CQRS and Event Sourcing, including commands, queries, and
Exploring Delegating Handlers in C# .NET
5/19/2024 6:27:43 AM.
In modern software development, especially when dealing with web services, the ability to customize and extend HTTP request and response processing is crucial. This article delves into the concept of
Events in .NET
5/9/2024 11:52:53 AM.
An event is a message sent by an object to signal the occurrence of an action. This action caused by the user interaction such as button click, mouse click etc.
Event Handling In .NET
4/27/2024 4:15:10 AM.
Explore event handling in .NET, a fundamental aspect of event-driven programming. Learn about event handlers, delegates, and the EventSource class, diving into the publisher-subscriber pattern and bes
Learn about Asynchronous Events in C#
3/20/2024 5:49:33 AM.
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. Id
Capturing and Modifying Sharepoint Alerts Through Alert Handlers
3/4/2024 11:50:51 AM.
Explore how to enhance SharePoint functionality by capturing and modifying alerts through alert handlers. Learn to customize alerts to meet specific needs, improving user experience and system efficie
Extending HttpClient With Delegating Handlers in ASP.NET Core
1/17/2024 11:30:32 AM.
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
Mediator Design Pattern in ASP.NET Core Web API with 3-Tier Architecture
10/19/2023 5:10:38 AM.
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 d
Basic Internal Error Handlers in Mule application
6/27/2023 10:36:17 AM.
In this article, we will learn about some basic internal error handlers in Mule application.
Link Web Resource To A Form In Dynamics CRM
1/19/2022 1:57:48 PM.
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 Handl
Event Handling in .NET using C#
11/16/2021 5:02:16 AM.
In this article I discuss the event handling model in .NET using C#. The discussion starts with an introduction to the concept of delegates and then it extends that concept to events and event handlin
Working with DataTable Events in ADO.NET
10/30/2020 12:35:16 AM.
In this article I will explain working with DataTable Events in ADO.NET.
Event Handlers in JavaScript
4/22/2020 2:43:31 PM.
Here I’ll try to provide the proper syntax of some event handlers.
Android Threads and Handlers
3/21/2020 7:39:21 AM.
This tutorial describes the usage of Threads and Handlers in an Android application. It also covers how to handle the application lifecycle together with threads.
Bound Service Using Messenger In Android: Part Three
3/16/2020 2:26:27 AM.
This article illustrates the use of Messenger along with handlers to enable bidirectional communication between Service and Activity.
Policy-Based And Role-Based Authorization In ASP.NET Core 3.0 Using Custom Handler
2/5/2020 12:39:52 AM.
Authentication is the process of determining or giving an individual access to system or user based on their identity. This article demonstrates how to add custom Policy-based & Role-based Authori
HTTP Handlers And HTTP Modules In ASP.NET
1/6/2020 8:52:31 AM.
This article talks about the HTTP Modules and HTTP Handler in ASP.Net and their applications in real time.
Getting Started With Ansible - Part Ten (Handlers)
9/9/2019 2:43:31 PM.
This is in continuation to the articles of the series “Learning Ansible”.In this article we will be learning handlers.
Exception Handlers in C#
12/27/2018 3:48:37 AM.
In this article, I discuss what Exception Handlers are in C# and how to trap errors using try/catch blocks and their behavior when we use multiple catch statements to handle errors and finaly, how to
Count Image Requests from a Web Server using ASP.NET
11/15/2018 1:18:53 AM.
This article explains you how we can count Image request from a Web server using C# and ASP.NET.
Update Entity Form JS Library Without Removing Event Handlers - Quick Workaround
7/6/2017 11:42:33 AM.
Let’s say we have one entity with a good amount of custom fields and we have developed a web resource for the main form. Many of the fields have onchange event associated with them. Now we have a new
Basic Authentication Using Message Handlers In Web API
3/20/2017 6:22:57 PM.
Basic Authentication Using Message Handlers In Web API.
Global And Per-Route Message Handlers In Web API
4/8/2016 11:31:59 AM.
In this article you will learn Global and Per-Route Message Handlers in WebAPI.
The 3 Musketeers: Model, View and Controller using HTTPHandler – Part 1
9/5/2014 1:13:17 AM.
In this section, we will learn about the basics of MVC and then see how we can implement the same in ASP.NET using HttpHandlers.
Raising Events, Event Handlers, and the Use of Delegates
12/27/2013 6:25:00 PM.
This article focuses on delegates, how to use them, their relation to events, and their relation to raising events. It is meant to help the beginner learn delegates by example code.
Unobtrusive Event Handlers in Knokcoutjs
11/15/2013 6:22:03 AM.
In today's article you will learn about Unobtrusive Event Handlers in Knokcoutjs.
How to Add Controls and Set Properties and Event Handlers in Windows Store Apps
5/13/2013 12:35:31 PM.
In this article I show you how to add controls and set properties and event handlers in Windows Store apps using the Property pane and XAML.
SharePoint 2010 - Lists and Event Handlers
5/2/2013 2:04:19 PM.
In this article we can explore the Event Handling features of a list through code. Using the SPList in Server Object Model we can access event handling for a list.
Transporting and Displaying Images using DIME and HTTP Handlers
10/13/2012 5:57:14 AM.
This article shows an example of how to display images stored in a database in a virtual fashion using a Web Service in conjunction with an HTTP Handler.
HTTP Handlers in ASP.NET
10/4/2012 6:59:35 AM.
The low level Request and Response API to service incoming HTTP requests are HTTP Handlers in ASP.NET. All handlers implement the IHttpHandler interface, which is located in the System.Web namespace. Handlers are somewhat analogous to Internet Server Application Programming Interface (ISAPI) extensions.
How to use Tool Menu in Microsoft Expression Blend
10/1/2012 7:40:17 AM.
Tool Menu in Microsoft Expression Blend has the option for Creating Layer, Make Button, Make Control, Make Image 3D, Make Brush Resource, Edit Brush Resource, Font Manager, Options.
The NeFs Application Demo Part 2: Designing Application Oriented Server Controls
9/30/2012 2:38:31 AM.
This article is part II of a three part demo application dubbed Net-Worked Financial System written in C# and .NET framework.
Count Image Requests from a Web Server using ASP.NET (VB.Net)
5/20/2012 1:13:18 AM.
This article explains you how we can count Image request from a Web server using VB.Net and ASP.NET.
Passing Data Between Windows Forms
5/19/2012 1:10:15 AM.
This article provides a simple example of using delegates and events to transfer data between Windows forms. The example provided contains three separate forms; the main form interacts with the other two forms by responding to events generated by instances of the other two forms.
Access Events via Methods or Handlers
11/29/2011 12:34:49 AM.
Today, we will dig on simple well known concepts called Events. The simple definition is message sent by some particular object to intimate that there is some action will be generated.
Auditing Events in .NET Applications
8/12/2011 5:22:17 AM.
In this article we are pushing further down into murky depths of .NET event driven application internals. Several concepts used to implement event subscriptions in practice (all strictly based on MSDN) will be explained and their functioning used to implement otherwise hardly implementable entity: event auditor.
How to Change Order of Event Handlers Execution at Run Time
8/12/2011 4:47:09 AM.
In this article we shall demonstrate how this problem can be resolved. Generally, .NET Framework does not provide a solution to the problem and what follows here is based on its undocumented features. So take the solution proposed below with caution.
New Event Handlers in SharePoint 2010
6/21/2011 2:17:31 PM.
In this article I am describing the new event handlers in SharePoint 2010
Logging Errors with ELMAH
1/10/2011 2:10:16 AM.
ELMAH (Error Logging Modules and Handlers) is a pluggable component that you can use to log errors without modifying the application code.
How to create Event Handlers in ASP.NET
3/16/2010 8:24:44 AM.
In this article I will explain about creating Event Handlers in ASP.NET.
The Two Interceptors: HttpModule and HttpHandlers
5/26/2009 1:19:09 AM.
Many times we want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request, etc. ASP.NET has provided two types of interception HttpModule and HttpHandler.
Adding Menu Support to a Windows Form
8/29/2006 2:25:36 AM.
This sample code shows you how to use the MainMenu and MenuItem classes to add a menu and click handler for a Windows Form.
The Making of Pong
2/1/2006 11:55:48 PM.
The purpose of making this classic game was to show simple game structures in C#. Concepts include the "Game Loop", "Input" and "Paint. If you are just beginning in game programming, C# is turning out to be a great place to start.
PaintBrush in C# - II
12/26/2005 10:59:07 PM.
This is a PaintBrush Application. In this Paintbrush user can draw some images and he can save the images in a persistence storage and later time can retrive the images.
HTTP Handlers for Images in ASP.NET
12/26/2005 3:51:11 AM.
Have you ever thought of streaming thumbnails just by passing query string indicating width or height of thumbnail you need, and most importantly passing those to image itself?
EggTimer in C#
12/26/2005 3:44:40 AM.
This simple timer app will count down from whatever value is set in the textbox.