Advanced Event : delegate event « delegate « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » delegate » delegate event 
9.8.10.Advanced Event
using System;
using System.Collections.Generic;
using System.Text;

delegate void NameChangedDelegate(string name, string newValue);

class Program
{
    static void Main(string[] args)
    {
        Employee c = new Employee();
        Subscriber s1 = new Subscriber(c, "subscriber-A");
        Subscriber s2 = new Subscriber(c, "subscriber-B");
        Subscriber s3 = new Subscriber(c, "subscriber-C");

        c.FirstName = "F";

        s2.Unsubscribe();

        c.FirstName = "A";
    }
}
class Subscriber
{
    public string SubscriberID = "new subscriber";
    public Employee myEmployee = null;
    public NameChangedDelegate ncDel = null;

    public Subscriber(Employee c, string subId)
    {
        SubscriberID = subId;
        ncDel = new NameChangedDelegate(myEmployee_OnNameChanged);
        myEmployee = c;
        myEmployee.OnNameChanged += ncDel;
    }

    void myEmployee_OnNameChanged(string name, string newValue)
    {
        Console.WriteLine("[{0}] Employee {1} changed to {2}.", SubscriberID,
            name, newValue);
    }

    public void Unsubscribe()
    {
        myEmployee.OnNameChanged -= ncDel;
    }
}

class Employee
{
    private string firstName;
    private event NameChangedDelegate onNameChange;

    public event NameChangedDelegate OnNameChanged
    {
        add
        {
            onNameChange += value;
            if (value.Target is Subscriber)
            {
                Console.WriteLine("Subscriber '{0}' just subscribed to OnNameChanged.",
                    ((Subscriber)value.Target).SubscriberID);
            }
        }
        remove
        {
            onNameChange -= value;
            if (value.Target is Subscriber)
            {
                Console.WriteLine("Subscriber '{0}' just un-subscribed from OnNameChanged.",
                    ((Subscriber)value.Target).SubscriberID);
            }
        }
    }

    public string FirstName
    {
        get return firstName; }
        set
        {
            firstName = value;
            onNameChange("firstname", value);
        }
    }
}
9.8.delegate event
9.8.1.Creating a new event.
9.8.2.delegate and event
9.8.3.A very simple event demonstration.
9.8.4.An event multicast demonstration
9.8.5.Individual objects receive notifications when instance event handlers are used
9.8.6.A static method is used as an event handler
9.8.7.Creating an event.
9.8.8.Retrieving Even-Numbered Events with the .NET Delegate Convention
9.8.9.Retrieving Even-Numbered Events
9.8.10.Advanced Event
9.8.11.Using The Event Keyword
9.8.12.delegate and Event handler
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.