Поделиться через


IDebugBinder3::GetEEService

This method returns a requested service.

HRESULT GetEEService(
   [in] GUID        vendor,
   [in] GUID        language,
   [in] GUID        iid,
   [out] IUnknown** ppService
);
Int GetEEService(
   Guid       vendor,
   Guid       language,
   Guid       iid,
   out object ppService
);

Parameters

  • vendor
    [in] GUID of a vendor (a null value is acceptable).

  • language
    [in] GUID of a language (a null value is acceptable).

  • iid
    [in] IID of the service to obtain.

  • ppService
    [out] An interface to the requested service.

Return Value

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

Remarks

Pass the IID for the IEEVisualizerServiceProvider interface (IID_IEEVisualizerServiceProvider) to see if the Type Visualizer service is available. If so, the expression evaluator can obtain the IEEVisualizerService interface to support type visualizers. See Visualizing and Viewing Data for details.

See Also

Reference

IDebugBinder3

IEEVisualizerServiceProvider

IEEVisualizerService

Concepts

Visualizing and Viewing Data