IEEVisualizerService::GetPropertyProxy

Applies to: yesVisual Studio noVisual Studio for Mac

Note

This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method returns a proxy for a property object.

Syntax

HRESULT GetPropertyProxy(
   DWORD                  dwID,
   IPropertyProxyEESide** proxy
);
int GetPropertyProxy(
   uint                     dwID,
   out IPropertyProxyEESide proxy
);

Parameters

dwID
[in] ID of property proxy to retrieve.

proxy
[out] Desired proxy implemented in an IPropertyProxyEESide interface.

Return Value

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

Remarks

  • GetPropertyProxy passes the request to this method as part of its support for type visualizers.

See also