如何在事件参数中传递对象
本文关键字:对象 参数 事件 | 更新日期: 2023-09-27 18:00:19
我有一个用户控件,它在与 Web 服务通信后引发事件。父级在引发时处理此事件。我认为正确的方法是将从 Web 服务返回的对象作为 eventargs 传递给父级???
如果这是正确的方法,我似乎找不到有关如何执行此操作的说明。
用户控件
public event EventHandler LoginCompleted;
稍后在服务返回 biz 对象之后:
if (this.LoginCompleted != null)
{
this.LoginCompleted(this, new EventArgs() //this is where I would attach / pass my biz object no?);
}
父母
ctrl_Login.LoginCompleted += ctrl_Login_LoginCompleted;
....snip....
void ctrl_Login_LoginCompleted(object sender, EventArgs e)
{
//get my object returned by login
}
所以我的问题是将用户对象返回父对象的"批准"方法是什么?创建一个所有人都可以访问的属性类并将其放在那里?
使用 EventHandler<T>
声明您的事件 其中T
是派生自EventArgs
的类:
public event EventHandler<LoginCompletedEventArgs> LoginCompleted;
LoginCompletedEventArgs
可能看起来像这样:
public class LoginCompletedEventArgs : EventArgs
{
private readonly YourBusinessObject _businessObject;
public LoginCompletedEventArgs(YourBusinessObject businessObject)
{
_businessObject = businessObject;
}
public YourBusinessObject BusinessObject
{
get { return _businessObject; }
}
}
用法是这样的:
private void RaiseLoginCompleted(YourBusinessObject businessObject)
{
var handler = LoginCompleted;
if(handler == null)
return;
handler(this, new LoginCompletedEventArgs(businessObject));
}
请注意我是如何实现RaiseLoginCompleted
的。这是引发事件的线程安全版本。我消除了在争用条件方案中可能发生的NullReferenceException
,其中一个线程想要引发事件,而另一个线程在if
检查之后但在实际调用处理程序之前取消订阅最后一个处理程序。
好吧,您可以执行所有这些操作,也可以将委托定义为事件处理程序,并在其签名中定义属性。
如:
public delegate void MyEventEventHandler(int prop1, string prop2, object prop3...);
public event MyEventEventHandler MyEvent;
我建议使用带有EventHandler<TEventArgs>
的命名元组。
我喜欢老狗的回答。Microsoft已经有了这个委托 EventHandler
public delegate void EventHandler<TEventArgs>(object sender, TEventArgs e);
您不需要从EventArgs
继承。
使用命名元组声明事件处理程序。
public event EventHandler<(int id, string message, object LoginObject)> LoginCompleted;
在客户端代码中,将方法分配给 LoginCompleted 事件处理程序
选项 1:使用 lambda
LoginCompleted += (o, e) =>
{
Console.WriteLine($"Hello, sender is {o.ToString()}! id is {e.id}, message is {e.message}, and LoginObject is {e.LoginObject.ToString()}. ");
};
选项 2:调用本地方法
LoginCompleted += onLoginCompleted;
private static void onLoginCompleted (object sender, (int id, string message, object LoginObject) e)
{
Console.WriteLine($"Hello, sender is {sender.ToString()}! id is {e.id}, message is {e.message}, and LoginObject is {e.LoginObject.ToString()}. ");
}
我刚刚写了一个例子,请参考我的回购
我个人喜欢Toni Petrina的方法(见 https://coderwall.com/p/wkzizq/generic-eventargs-class(。它与公认的答案不同,因为您不必创建特殊的 EventHandler 类(例如 LoginCompletedEventArgs
(。
(注意:我使用的是VS 2015和C# v6。在旧版本的Visual Studio和C#中,您可能需要添加using System.Linq;
创建一个从 EventArgs 继承的泛型 EventArgs
class EventArgs<T> : EventArgs {
public T Value { get; private set; }
public EventArgs(T val) {
Value = val;
}
}
声明事件处理程序...
public event EventHandler<EventArgs<object>> LoginCompleted;
假设您已经声明并分配了一个名为 loginObject
的对象,请添加代码以引发事件...
private void RaiseLoginCompleted() {
if (LoginCompleted != null)
LoginCompleted(this, new EventArgs<object>(loginObject));
}
在客户端代码中,添加 LoginCompleted
事件处理程序(使用 Linq 并调用本地方法(...
LoginCompleted += (o, e) => onLoginCompleted(e.Value); // calls a local method
void onLoginCompleted(LoginObject obj) {
// add your code here
}
类只是为了将布尔值作为派生EventArgs
传递是很糟糕的! 所以你可以简单地使用Action
而不是EventHandler
。 您可以传递任何类型和您喜欢的参数数量(Action 最多支持 16 个(。
class Raiser
{
public event Action<Raiser, bool,DateTimeOffset> OnCreate;
public void Create()
{
OnCreate?.Invoke(this, true,DateTimeOffset.Now);
}
}
class Listener
{
Raiser raiser;
public Listener()
{
raiser = new Raiser();
raiser.OnCreate += Raiser_OnCreate;
}
private void Raiser_OnCreate(Raiser arg1, bool arg2,DateTimeOffset dateTimeOffset)
{
throw new NotImplementedException();//Do Your works here
}
}
通常使用Action
和"Func"比Delegate
容易。