📄 sharecontentmessage.cs
字号:
namespace Imps.Client.Core
{
using System;
public class ShareContentMessage : Message
{
private ShareContent _context;
private bool _isDownloadComplete;
private bool _isFailed;
public ShareContentMessage(Dialog dialog, string content, string from, string fromUri, bool isReceive) : base(dialog, content, isReceive)
{
base.From = from;
base.FromUri = fromUri;
}
public ShareContent Context
{
get
{
return this._context;
}
set
{
this._context = value;
}
}
public bool IsDownloadComplete
{
get
{
return this._isDownloadComplete;
}
internal set
{
this._isDownloadComplete = value;
}
}
public bool IsFailed
{
get
{
return this._isFailed;
}
internal set
{
this._isFailed = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -