Skip to Main Content
C# Cookbook, 2nd Edition
book

C# Cookbook, 2nd Edition

by Jay Hilyard, Stephen Teilhet
January 2006
Intermediate to advanced content levelIntermediate to advanced
1184 pages
43h 23m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook, 2nd Edition
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
502
|
Chapter 9: Delegates, Events, and Anonymous Methods
Discussion
Wrapping is a very useful technique with many different applications (proxies,
facades, etc.). However, if you use it, all classes in your application have to use the
Example 9-4. DirectoryInfoObserver class
public class DirectoryInfoObserver
{
public DirectoryInfoObserver( ) {}
public void Register(DirectoryInfoNotify dirInfo)
{
dirInfo.AfterCreate += new EventHandler(AfterCreateListener);
dirInfo.AfterCreateSubDir +=
new EventHandler(AfterCreateSubDirListener);
dirInfo.AfterMoveTo += new EventHandler(AfterMoveToListener);
dirInfo.AfterDelete += new EventHandler(AfterDeleteListener);
}
public void UnRegister(DirectoryInfoNotify dirInfo)
{
dirInfo.AfterCreate -= new EventHandler(AfterCreateListener);
dirInfo.AfterCreateSubDir -=
new EventHandler(AfterCreateSubDirListener);
dirInfo.AfterMoveTo -= new EventHandler(AfterMoveToListener);
dirInfo.AfterDelete -= new EventHandler(AfterDeleteListener);
}
public void AfterCreateListener(object sender, EventArgs e)
{
Console.WriteLine("Notified after creation of directory--sender: " +
((DirectoryInfoNotify)sender).FullName);
}
public void AfterCreateSubDirListener(object sender, EventArgs e)
{
Console.WriteLine("Notified after creation of SUB-directory--sender: " +
((DirectoryInfoNotify)sender).FullName); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Stephen Teilhet, Jay Hilyard
C# Cookbook

C# Cookbook

Joe Mayo
Head First C#, 4th Edition

Head First C#, 4th Edition

Andrew Stellman, Jennifer Greene

Publisher Resources

ISBN: 0596100639Supplemental ContentCatalog PageErrata