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