Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / June 2007

Tip: Looking for answers? Try searching our database.

Down/Up Cast for Control Events?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
lucius - 06 Jun 2007 16:58 GMT
ASP.NET 2.0

I have web controls with their own event handlers that I need to
funnel into a central handler, eg

  TypicalEvent( object sender, TypicalEventArgs e )
  {
    HandleEverything( sender , (EventArgs)e );
  }

  LinkEvent( object sender, LinkEventArgs e )
  {
    HandleEverything( sender , (EventArgs)e );
  }
 
  SpecialEvent( object sender, SpecialEventArgs e )
  {
    HandleEverything( sender , (EventArgs)e );
  }

And the central event handler is


  HandleEverything( object sender , EventArgs e )
  {
   
  }

Within "HandleEverything", I would like to know the original Type of
what is in EventArgs and then cast it to the proper Type, because if
it's TypicalEventArgs there is a Value property, if it is
LinkEventArgs there is an AnchorText property, etc.

How can I use Reflection (or Generics?) to "uncast" and use?

Thanks.
Walter Wang [MSFT] - 07 Jun 2007 06:26 GMT
Hi lucius,

I assume TypicalEventArgs/LinkEventArgs/SpecialEventArgs are all inherited
(directly or indirectly) from EventArgs. You can always use a child type
where a base type is needed without casting. A child type *is* always a
base type.

To cast a reference with base type to a child type, you need to explicitly
cast it, for example:

TypicalEventArgs e2 = (TypicalEventArgs) e;

Of course you need to determine if it's a TypicalEventArgs first:

if (e is TypicalEventArgs) {
   TypicalEvent(sender, (TypicalEventArgs) e);
}

Hope this helps.

Sincerely,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications. If you are using Outlook Express, please make sure you clear the
check box "Tools/Options/Read: Get 300 headers at a time" to see your reply
promptly.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
Walter Wang [MSFT] - 12 Jun 2007 04:04 GMT
Hi lucius,

If you see this, would you please reply here to let me know if you think
this issue is solved now? Thanks.

Regards,
Walter Wang (wawang@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
lucius - 16 Jun 2007 18:58 GMT
Yes, the issue is solved. Thanks.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.