C# Events
An event is defined in C# as ‘a member that enables an object or class to provide notifications’. Now, let us seein detail what an event is and how notifications are provided in C#.In an application,...
View Article.NET Event Handling using the Template Method Design Pattern
Environment: .NET, C#, Visual Basic .NET, Windows 2000, Windows XP, Windows NT4 SP6a Microsoft .NET event handling, in common with typical object-orientedframeworks, is implemented using the...
View ArticleDelegates and Event Handling in C#
Introduction: This article will deal with Event anddelegates in C#. C# Open a new door by including the feature of EventDriven programming such as Events and Delegates. This article is partof the...
View ArticleReady C# Events
Each event has a type.Let's take the event Click. The type of the event Click is EventHandler and both event and its type are defined fortunatelly in .NET Framework. We only have to keep in mind that...
View ArticleC# Sessions and Their Events
Session and its events are sometimes peculiarat best and down right complex at worst. This is necessary because ofthe need to service different state providers. I examine some of theseissues which may...
View ArticleC# Event Controls
This article will explain how to declare anduse the C# Events in your application as Event Control. You can designyour event control in couple of minutes, making your Event as controlwill be easy for...
View ArticleCustom Event Handlers in C#
To illustrate event handling we will make a news service that notifies its subscribers whenever an event (new news) occurs. Subscribers can unsubscribe and subscribe at will. The delegate:The...
View ArticleEvent Handling in C#: Custom event Handlers
To illustrate event handling we will make a news service that notifies its subscribers whenever an event (new news) occurs. Subscribers can unsubscribe and subscribe at will. The delegate: The delegate...
View ArticleC# Events: Lesson 1
The ability to fire an event is core to mostWindows development projects. Events are useful for updating a userinterface with changed data, or causing a piece of code to run afteranother piece of code...
View ArticleC# Events Lesson 2: Passing data to a consumer
In the previous lesson we created an event andconsumed it. In doing so you probably noticed that our code would havebeen a little better if we could have determined whether or not thefile actually...
View Article