IVsOutput2::get_Property Method (String^, Object^)

 

Returns a property of an output item.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int get_Property(
	String^ szProperty,
	[OutAttribute] Object^% pvar
)

Parameters

szProperty
Type: System::String^

[in] Pointer to the property to be returned.

pvar
Type: System::Object^

[out] Pointer to a VARIANT that holds the value of the property identified by szProperty.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsOutput2::get_Property(
   [in]LPCOLESTR szProperty,
   [out] VARIANT *pvar
);

This method handles coordination between third-party projects and their deployment plug-ins. The property and its variant type are known to both entities.

Return to top
Show: