如何在 .NET 中对工作流活动进行软编码?
我需要编写一个静态方法,对字符串执行某种解析 签名如下:
string ParseMessage(string messageToParse)
我希望对整个方法 ParseMessage 进行软编码,即不在项目的主输出中预编译,这是一个常见的 Windows 窗体应用程序。 如何使用工作流程活动执行此操作?
我想:
- 创建一个在 xaml 文件中定义的活动
- 将活动加载到我的 Windows 窗体应用程序中
- 通过传递参数(字符串类型的变量)运行活动
- 在字符串类型的变量中获取结果
I need to write a static method which is performing some kind of parsing on a string
with signature like:
string ParseMessage(string messageToParse)
I would like the whole method ParseMessage to be soft-coded, i.e. not precompiled within the main output of the project, which is a common windows forms application.
How do I do this using a workflow activity?
I would like to:
- Create an activity defined in a xaml file
- Load the activity into my windows forms application
- Run the activity by passing the arguments (a variable of string type)
- Get the result in a variable of string type
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Channel9 有一个非常有趣的教程,直接进入要点:
http://channel9.msdn.com/Learn/Courses/VS2010/WCFWF/IntroToWF/Exercise-5-Testing-Workflows
There is a very interesting tutorial from Channel9, going directly to the point:
http://channel9.msdn.com/Learn/Courses/VS2010/WCFWF/IntroToWF/Exercise-5-Testing-Workflows