IVsToolbox3.GetLastModifiedTime Method
Returns the most recent time at which the Toolbox contents were modified.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetLastModifiedTime ( _
<OutAttribute> pst As SYSTEMTIME() _
) As Integer
int GetLastModifiedTime(
SYSTEMTIME[] pst
)
int GetLastModifiedTime(
[OutAttribute] array<SYSTEMTIME>^ pst
)
abstract GetLastModifiedTime :
pst:SYSTEMTIME[] byref -> int
function GetLastModifiedTime(
pst : SYSTEMTIME[]
) : int
Parameters
pst
Type: array<Microsoft.VisualStudio.Shell.Interop.SYSTEMTIME[][out] A SYSTEMTIME structure containing the most recent time at which the Toolbox contents were modified.
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 vsshell80.idl:
HRESULT IVsToolbox3::GetLastModifiedTime(
[out] SYSTEMTIME *pst
);
Returns the most recent time at which the Toolbox contents were modified in any way. This includes adding, removing, reordering and renaming both Toolbox items and Toolbox tabs.
.NET Framework Security
- 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.