AutomationRemoteOperationResult.ErrorLocation 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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,此属性返回在限制之后执行的下一个指令。