CoreAutomationRemoteOperation.IsOpcodeSupported(UInt32) 方法

定义

检索一个值,该值指示 CoreAutomationRemoteOperation 虚拟机是否支持指定的操作码。

public:
 virtual bool IsOpcodeSupported(unsigned int opcode) = IsOpcodeSupported;
bool IsOpcodeSupported(uint32_t const& opcode);
public bool IsOpcodeSupported(uint opcode);
function isOpcodeSupported(opcode)
Public Function IsOpcodeSupported (opcode As UInteger) As Boolean

参数

opcode
UInt32

unsigned int

uint32_t

要测试的操作码。

返回

Boolean

bool

注解

将字节码中不支持的操作码传递给 Execute) 方法会导致 AutomationRemoteOperationResult.StatusMalformedByteCode

注意

由于在提供程序进程中找到了远程操作虚拟机,因此对指令的支持取决于执行远程操作的提供程序进程。 因此,在通过 ImportElementImportTextRange 将操作绑定到进程后调用此方法。

适用于