By tag: events
0
kicks
C# Delegates and Events
Learn to use C# delegates and events. Excerpt: n programming, you are often faced with situations where you need to execute a particular action, but you don’t know in advance which method, or even which object, you’ll want to call upon to execute it. For example, a button might know that it must not...
0
kicks
Event Accessors, You can encapsulate events too ;)
This is another "How I missed this" kind of things,
All of us know Accessors like properties & indexers, and almost everybody says that it applies for all data types, but almost nobody knows that events have its own accessors
0
kicks
C# Delegates and Events
Learn all about C# delegates and events. Excerpt: A delegate is a .NET class that encapsulates a method, but not in the same way other classes encapsulate methods. A delegate actually stores the address of a method that is contained in some other class. So, a delegate is really the equivalent of a f...
0
kicks
UpdatePanel Data Transfer and the client side page life cycle
This post shows the data transfer format used by the updatepanel as well as the client side page life cycle events beginRequest and endRequest.
0
kicks
Event Properties - Memory Efficient Events
Description of how to define events in a more memory efficient way.