点击或拖拽改变大小

Functions._SequenceError 方法

X#
This function is automatically inserted by the compiler in a RECOVER USING block and gets called when the RECOVER USING block is reached because of an exception.

命名空间:  XSharp.RT
程序集:  XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法
 FUNCTION _SequenceError(
	e AS Exception
) AS USUAL
查看代码

参数

e
类型:Exception
The exception that triggered the jump into the RECOVER USING block

返回值

类型:__Usual
The result of the call to the error handler installed in the ErrorBlock
备注
The default implementation of this function (in the XSharp.RT assembly) called the installed error handler that is installed with ErrorBlock() The function should then have the following prototype
X#
1FUNCTION _SequenceError(e as Exception) AS VOID
参见