infofield.cs
来自「pureIRCd是一个用c语音写的irc(RFC459)服务,可以给您带来很多的」· CS 代码 · 共 15 行
CS
15 行
namespace SDP
{
/// <summary>
/// An Info represents the i= fields contained within either a MediaDescription or a SessionDescription.
/// </summary>
public class InfoField : Field
{
/// <summary>
/// Creates a new InfoField.
/// </summary>
/// <param name="value">The value portion of the field.</param>
public InfoField(string value) : base("i=" + value) { }
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?