IVsOutput2.get_Property Method
Returns a property of an output item.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'宣言
Function get_Property ( _
szProperty As String, _
<OutAttribute> ByRef pvar As Object _
) As Integer
'使用
Dim instance As IVsOutput2
Dim szProperty As String
Dim pvar As Object
Dim returnValue As Integer
returnValue = instance.get_Property(szProperty, _
pvar)
int get_Property(
string szProperty,
out Object pvar
)
int get_Property(
[InAttribute] String^ szProperty,
[OutAttribute] Object^% pvar
)
function get_Property(
szProperty : String,
pvar : Object
) : int
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.
Remarks
COM Signature
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.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.