📄 findconversationformeventargs.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 + -