📄 downloadresponsereceivedeventargs.cs
字号:
using System;
namespace Org.InteliIM.Activities.FileSharing
{
/// <summary>
/// DownloadResponseReceivedEventArgs 的摘要说明。
/// </summary>
public class DownloadResponseReceivedEventArgs
: EventArgs
{
public DownloadResponseReceivedEventArgs(
string from, Asset asset, bool ok)
{
this.From = from;
this.Asset = asset;
this.Ok = ok;
}
private string from;
/// <summary>
/// 用户名
/// </summary>
public string From
{
get
{
return from;
}
set
{
from = value;
}
}
private Asset asset;
public Asset Asset
{
get
{
return this.asset;
}
set
{
this.asset = value;
}
}
private bool ok;
public bool Ok
{
get
{
return this.ok;
}
set
{
this.ok = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -