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

📄 findconversationformeventargs.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Core
{
    using System;
    using System.Threading;

    public class FindConversationFormEventArgs : EventArgs
    {
        private AutoResetEvent _auto;
        private Imps.Client.Core.Contact _contact;
        private Imps.Client.Core.Conversation _conv;
        private string _message;

        public FindConversationFormEventArgs(Imps.Client.Core.Conversation conv, AutoResetEvent auto, Imps.Client.Core.Contact contact, string message)
        {
            this._conv = conv;
            this._auto = auto;
            this._message = message;
            this._contact = contact;
        }

        public AutoResetEvent AutoEvent
        {
            get
            {
                return this._auto;
            }
        }

        public Imps.Client.Core.Contact Contact
        {
            get
            {
                return this._contact;
            }
        }

        public Imps.Client.Core.Conversation Conversation
        {
            get
            {
                return this._conv;
            }
        }

        public string Message
        {
            get
            {
                return this._message;
            }
        }
    }
}

⌨️ 快捷键说明

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