Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 WCF 库中提供一个操作合同,它返回选择信息,即版本、程序集名称、一些其他内部值。
目的是为诊断提供“服务检查”方法,可以将其称为常规 WCF。
我很难找出最好的方法来做到这一点。我想象某种内部反射。
我还想将此代码作为操作合同的一部分放入接口中。
做这个的最好方式是什么?
您可以使用反射来做到这一点:
例如,要获取程序集的版本信息:
return System.Reflection.Assembly.GetExecutingAssembly().GetName().Version