Partilhar via


IDeviceEmulatorManagerVMID::get_VMID

Obtém o identificador de computador virtual (VMID) que identifica exclusivamente o emulador.

HRESULT get_VMID([out, retval] BSTR* pVMID);

Parâmetros

  • [out,retval] pVMID
    Um ponteiro para uma seqüência de caracteres que contém VMID do emulador.

Valor de retorno

An HRESULT valor que indica o resultado da telefonar do método.

Exemplo

Este exemplo demonstra o uso desse método.For the complete example, see IDeviceEmulatorManagerVMID.

// For every emulator in the list
for (; SUCCEEDED(hr); (hr = pDeviceEnumerator->MoveNext()))
{
    CComBSTR deviceName;
    CComPtr<IDeviceEmulatorManagerVMID> pDevice;

    // Get the IDeviceEmulatorManagerVMID object.
    hr = pDeviceEnumerator->GetVMID(&pDevice);
    if (FAILED(hr)) {
        continue;
    }

    // Get the name of the emulator
    hr = pDevice->get_Name(&deviceName);
    if (FAILED(hr)){
        continue;
    }

    // If the name of the device matches the supplied name, 
    // then this is the device we are looking for. 
    if (deviceIdentifier == deviceName){
        *pDeviceVMID = pDevice;
        (*pDeviceVMID)->AddRef();
        return TRUE;
    }
}

Requisitos

DEMComInterface.tlb