📄 stunerrorcode.cs
字号:
namespace Imps.Client.Core.P2P.ICE.Message
{
using System;
public class StunErrorCode
{
private int m_Code;
private string m_ReasonText = "";
public StunErrorCode(int code, string reasonText)
{
this.m_Code = code;
this.m_ReasonText = reasonText;
}
public int Code
{
get
{
return this.m_Code;
}
set
{
this.m_Code = value;
}
}
public string ReasonText
{
get
{
return this.m_ReasonText;
}
set
{
this.m_ReasonText = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -