动态转换和消息类型

发布于 2024-10-29 18:01:54 字数 694 浏览 0 评论 0原文

我正在序列化这个对象并通过 TCP/IP 发送到服务器,我需要反序列化它并在正确类型的消息中将其触发。我正在使用 .net 4。

问题是对象可能有几种不同的类型,并且信使需要知道它发送的内容的类型。我想要做的是发送一个字符串或 Type 对象,以指定主对象的类型。现在我正在这样做,但它只适用于一种类型:

public void generic_Obj(Object obj)
{
     //Entity is a class that I define elsewhere
     //I'm using the Galasoft MVVM Light messenger
     Messenger.Default.Send<Entity>((Entity)obj, "token");
}

我想使用反射做这样的事情:

public void gen_Obj(Object obj, Type genType, string token)
{
     //this doesn't work btw
     Messenger.Default.Send<genType>((genType)obj, token);
}

我已经尝试了所有不同的动态转换方法和使用反射的方法,其中一些方法有效,但我真正的问题正在寻找一些东西放在那些 <> 之间消息调用中的括号。

I have this object that I'm serializing and sending to a server over TCP/IP and I need to deserialize it and fire it off in a message of the right type. I'm using .net 4.

The problem is that the object could be of several different types and the messenger needs to know the type of what it's sending. What I want to do is to send a string or Type object along that will specify what the main object's type is. Right now I'm doing this, but it only works for one type:

public void generic_Obj(Object obj)
{
     //Entity is a class that I define elsewhere
     //I'm using the Galasoft MVVM Light messenger
     Messenger.Default.Send<Entity>((Entity)obj, "token");
}

I want to do something like this using reflection:

public void gen_Obj(Object obj, Type genType, string token)
{
     //this doesn't work btw
     Messenger.Default.Send<genType>((genType)obj, token);
}

I've tried all different methods of dynamic casting and such using reflection, some of them worked, but my real problem is finding something to put in between those <> brackets in the messenger call.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

著墨染雨君画夕 2024-11-05 18:01:54

如果使用反射为 Send 方法生成 MethodInfo,则可以使用 MethodInfo.MakeGenericMethod 创建具有 genType 定义的特定类型的方法。

完成此操作后,MethodBase.Invoke 可用于调用带有你的参数的方法。

If you generate a MethodInfo for the Send method using reflection, you can use MethodInfo.MakeGenericMethod to create the method with the specific type defined by genType.

Once you've done that, MethodBase.Invoke can be used to call the method with your arguments.

‖放下 2024-11-05 18:01:54

您还可以在 .net 4 中使用 dlr 而不是反射来执行此操作。开源框架 Impromptu-interface 有一个辅助方法,可以让其变得简单

public void gen_Obj(Object obj, Type genType, string token)
{
     Impromptu.InvokeMemberAction(Messenger.Default,"Send".WithGenericArgs(genType),obj,token)
}

You can also do this in .net 4 using the dlr instead of reflection. The opensource framework Impromptu-interface has a helper method that makes it easy.

public void gen_Obj(Object obj, Type genType, string token)
{
     Impromptu.InvokeMemberAction(Messenger.Default,"Send".WithGenericArgs(genType),obj,token)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文