contacttypechangedeventargs.cs

来自「破解的飞信源代码」· CS 代码 · 共 48 行

CS
48
字号
namespace Imps.Client.Core
{
    using System;
    using System.Threading;

    public class ContactTypeChangedEventArgs : EventArgs
    {
        private System.Threading.AutoResetEvent _auto;
        private Contact _newContactInstance;
        private Contact _oldContactInstance;

        public ContactTypeChangedEventArgs(Contact newContactInstance, Contact oldContactInstance)
        {
            this._newContactInstance = newContactInstance;
            this._oldContactInstance = oldContactInstance;
        }

        public System.Threading.AutoResetEvent AutoResetEvent
        {
            get
            {
                return this._auto;
            }
            set
            {
                this._auto = value;
            }
        }

        public Contact NewContactInstance
        {
            get
            {
                return this._newContactInstance;
            }
        }

        public Contact OldContactInstance
        {
            get
            {
                return this._oldContactInstance;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?