Skip to content

Latest commit

 

History

History
51 lines (44 loc) · 1.5 KB

ieevisualizerdataprovider-getobjectforvisualizer.md

File metadata and controls

51 lines (44 loc) · 1.5 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
This method gets the object that this visualizer represents.
IEEVisualizerDataProvider::GetObjectForVisualizer
11/04/2016
reference
IEEVisualizerDataProvider::GetObjectForVisualizer
IEEVisualizerDataProvider::GetObjectForVisualizer method
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IEEVisualizerDataProvider::GetObjectForVisualizer

This method gets the object that this visualizer represents.

Syntax

int GetObjectForVisualizer(
   out IDebugObject ppObject
);
HRESULT GetObjectForVisualizer(
   IDebugObject** ppObject
);

Parameters

ppObject
[out] The object being represented by this visualizer

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

GetObjectForVisualizer is allowed to return a cached version of the object. If the caller wants to make sure that the object is up to date, then it will call GetNewObjectForVisualizer.

See also