4 Star 1 Fork 1

Dillon/WeixinWinPhone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
WeakEventListener.cs 986 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dillon 提交于 2014-11-27 23:45 . f
using System;
internal class WeakEventListener<TInstance, TSource, TEventArgs> where TInstance : class
{
private readonly WeakReference _weakInstance;
public Action<TInstance, TSource, TEventArgs> OnEventAction
{
get;
set;
}
public Action<WeakEventListener<TInstance, TSource, TEventArgs>> OnDetachAction
{
get;
set;
}
public WeakEventListener(TInstance instance)
{
if (instance == null)
{
throw new ArgumentNullException("instance");
}
this._weakInstance = new WeakReference(instance);
}
public void OnEvent(TSource source, TEventArgs eventArgs)
{
TInstance tInstance = (TInstance)((object)this._weakInstance.get_Target());
if (tInstance != null)
{
if (this.OnEventAction != null)
{
this.OnEventAction.Invoke(tInstance, source, eventArgs);
return;
}
}
else
{
this.Detach();
}
}
public void Detach()
{
if (this.OnDetachAction != null)
{
this.OnDetachAction.Invoke(this);
this.OnDetachAction = null;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/dillontools/WeixinWinPhone.git
git@gitee.com:dillontools/WeixinWinPhone.git
dillontools
WeixinWinPhone
WeixinWinPhone
master

搜索帮助