throwexception.cs
来自「WF本质论一书的源码,要书籍的朋友同我联系.」· CS 代码 · 共 23 行
CS
23 行
using System;
using System.Workflow.ComponentModel;
namespace EssentialWF.Activities {
public class ThrowException : Activity {
public static readonly DependencyProperty ExceptionProperty =DependencyProperty.Register("Exception",typeof(System.Exception),typeof(ThrowException));
public Exception Exception {
get {
return base.GetValue(ExceptionProperty) as Exception;
}
set {
base.SetValue(ExceptionProperty, value);
}
}
protected override ActivityExecutionStatus Execute(ActivityExecutionContext context) {
if (Exception == null)
throw new NullReferenceException("Exception is null");
throw Exception;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?