IVsTaskItem2.CanDelete Method
Determines whether a task item can be deleted.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function CanDelete ( _
<OutAttribute> ByRef pfCanDelete As Integer _
) As Integer
int CanDelete(
out int pfCanDelete
)
int CanDelete(
[OutAttribute] int% pfCanDelete
)
abstract CanDelete :
pfCanDelete:int byref -> int
function CanDelete(
pfCanDelete : int
) : int
Parameters
pfCanDelete
Type: System.Int32%[out, retval] If true, then the task item can be deleted. If false, then the item cannot be deleted.
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 IVsTaskItem::CanDelete(
[out, retval]BOOL *pfCanDelete
);
.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.