📄 throwexception.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -