记录 .NET Func<> 的最佳方式是什么?
我有一个接受 Func
的通用方法,我想记录传递到该方法中的 Func。传入的 func 上有哪些属性可以帮助我了解它正在做什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个接受 Func
的通用方法,我想记录传递到该方法中的 Func。传入的 func 上有哪些属性可以帮助我了解它正在做什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以使用
func.Method.Name
记录方法名称,MethodInfo
类中还有一些其他有用的属性。但是,如果Func
是匿名的,那么您将不会获得非常有用的名称。You can log the method name with
func.Method.Name
, and there's some other useful properties in theMethodInfo
class. However, if theFunc
is anonymous, then you will not get a very helpful name.正如 Jaroslav Jandek 指出的,通过使用
Expression>
我可以获取有关传入方法的更多信息。具体来说:我发现body
属性具有字符串形式的匿名方法签名。http://msdn. microsoft.com/en-us/library/system.linq.expressions.lambdaexpression.body.aspx
As Jaroslav Jandek pointed out by using
Expression<Func<T>>
I can get more information about the method being passed in. Specifically: I found that thebody
property has the anonymous method signature as a string.http://msdn.microsoft.com/en-us/library/system.linq.expressions.lambdaexpression.body.aspx