Метод ITracing::SetTraceLevel (wdtf.h)
Метод SetTraceLevel задает уровень трассировки для объекта . Каждый объект в объектной модели WDTF должен поддерживать метод SetTraceLevel .
Синтаксис
HRESULT SetTraceLevel(
[in] TTraceLevel Level
);
Параметры
[in] Level
Новое значение TTraceLevel для этого объекта.
Возвращаемое значение
SetTraceLevel возвращает стандартное значение HRESULT .
Комментарии
Дополнительные сведения об уровнях трассировки см. в разделах TTraceLevel и ITracer.
Используйте уровень Trace_Default , чтобы вернуть объект к параметрам, определенным в реестре для совместного класса объекта.
Так как интерфейс IAction наследуется от интерфейса ITracing , все действия WDTF будут поддерживать SetTraceLevel. Все основные интерфейсы WDTF также должны поддерживать этот метод.
В следующем примере кода показано, как использовать метод SetTraceLevel .
VBScript
'
' Get DeviceManagement Action interface for the target
'
Set Action = CDROM.GetInterface("DeviceManagement")
If Err.number <> 0 Then
WScript.Echo Space(4) & "Failed to get interface DeviceManagement. Error Number:" & Err.number
Else
'
' Set the tracing level to HIGH
'
Action.SetTraceLevel(Trace3_High)
If Err.number <> 0 Then
WScript.Echo Space(4) & "Failed to set tracing level to 'High'. Error Number:" & Err.number
End If
'
' Disable the CD-ROM
'
WScript.Echo Space(4) & "Trying to disable device..."
Action.Disable()
If Err.number <> 0 Then
WScript.Echo Space(4) & "Failed to disable the specified CDROM. Error Number:" & Err.number & vbcrlf
Else
WScript.Echo Space(4) & "Specified CDROM successfully disabled." & vbcrlf
End If
End If
C++
IDevMan* pDevMan; // DeviceManagement Action interface
VARIANT vtEmpty; // To be passed as a parameter to ITarget::GetInterface
VariantInit(&vtEmpty);
//
// Get DeviceManagement Action interface
//
hr = pCDROM->GetInterface(L"DeviceManagement", vtEmpty, vtEmpty, (IAction**)(&pDevMan));
if(FAILED(hr))
{
_tprintf(_T("\n Failed to get DeviceManagement Interface for specified CDROM Device. Error: 0x%x"), hr);
goto Cleanup;
}
//
// Set the trace level to High
//
hr = pDevMan->SetTraceLevel(Trace3_High);
if(FAILED(hr))
{
_tprintf(_T("\n Failed to set tracing level to 'High'. Error: 0x%x"), hr);
}
//
// Disable the CD-ROM
//
_tprintf(_T("\n Trying to disable device..."));
hr = pDevMan->Disable();
if(FAILED(hr))
{
_tprintf(_T("\n Failed to disable the specified CDROM. Error: 0x%x"), hr);
}
else
{
_tprintf(_T("\n Specified CDROM successfully disabled."));
}
Требования
Требование | Значение |
---|---|
Целевая платформа | Персональный компьютер |
Верхняя часть | wdtf.h |