📄 siprequestreceivedeventargs.cs
字号:
namespace Imps.Client.Base
{
using System;
public class SipRequestReceivedEventArgs : EventArgs
{
private bool _handled;
private SipRequest _sipReq;
public SipRequestReceivedEventArgs(SipRequest request)
{
this._sipReq = request;
this._handled = false;
}
public bool Handled
{
get
{
return this._handled;
}
set
{
this._handled = value;
}
}
public SipRequest Request
{
get
{
return this._sipReq;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -