AutomationRemoteOperationResult.ErrorLocation 属性

定义

获取对字节码流中指令的引用,其中远程操作 Status 不返回 Success

public:
 property int ErrorLocation { int get(); };
int ErrorLocation();
public int ErrorLocation { get; }
var int32 = automationRemoteOperationResult.errorLocation;
Public ReadOnly Property ErrorLocation As Integer

属性值

Int32

int

注解

如果远程操作 Status 返回 MalformedBytecode,则 ErrorLocation 指定格式不正确的指令的编号。 例如,如果第一个指令包含无效的操作码,则此属性返回值 0。 如果前 5 个指令具有有效的操作码和参数,但第 6 个指令没有,则此属性返回值 5。

对于 UnhandledException,此属性返回引发异常的指令的索引。

对于 InstructionLimitExceeded,此属性返回在限制之后执行的下一个指令。

适用于