EventsHelper delegate trigger class

Source: Internet
Author: User

  • When using events, we often write the following: public event EventHandler ChangedEvent;
    Private void OnChangedEvent ()
    {
    If (ChangedEvent! = Null)
    {
    ChangedEvent (this, EventArgs. Empty );
    }
    }
    Private void OnChangeEventAsync ()
    {
    If (ChangedEvent! = Null)
    {
    ChangedEvent. BeginInvoke (this, EventArgs. Empty, null, null );
    }
    }
  • Judging whether an event has a subscription or trigger event is a frequently repeated part. In fact, we can encapsulate it.
  1. To create an EventsHelper static class, first complete the synchronization operation: create the following method: // Private check Parameter Function
    Private static bool CheckArguments (Delegate del, params object [] args)
    {
    If (del = null) {return false ;}
    If (args. Length> 7)
    {
    Throw new ArgumentOutOfRangeException ("too many parameters ");
    }
    Return true;
    }
    // Delegate trigger function
    Private static void Fire (Delegate del, params object [] args)
    {
    Foreach (var item in del. GetInvocationList ())
    {
    Try
    {
    Item. DynamicInvoke (args );
    }
    Catch {}
    }
    }
    // Non-type security delegate trigger function
    Public static void UnsafeFire (Delegate del, params object [] args)
    {
    If (CheckArguments (del, args ))
    {
    Fire (del, args );
    }
    }
  2. Since the UnsafeFire () method does not check the parameter type, the type security cannot be ensured. Therefore, we create some common

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.