⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contacttypechangedeventargs.cs

📁 破解的飞信源代码
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -