Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
An event that is fired after a file is checked out from the SourceSafe database.
Namespace: Microsoft.VisualStudio.SourceSafe.Interop
Assembly: Microsoft.VisualStudio.SourceSafe.Interop (in microsoft.visualstudio.sourcesafe.interop.dll)
Syntax
'Declaration
Sub AfterCheckout ( _
<InAttribute> pIItem As VSSItem, _
<InAttribute> Local As String, _
<InAttribute> Comment As String _
)
'Usage
Dim instance As IVSSEvents
Dim pIItem As VSSItem
Dim Local As String
Dim Comment As String
instance.AfterCheckout(pIItem, Local, Comment)
void AfterCheckout (
[InAttribute] VSSItem pIItem,
[InAttribute] string Local,
[InAttribute] string Comment
)
void AfterCheckout (
[InAttribute] VSSItem^ pIItem,
[InAttribute] String^ Local,
[InAttribute] String^ Comment
)
void AfterCheckout (
/** @attribute InAttribute() */ VSSItem pIItem,
/** @attribute InAttribute() */ String Local,
/** @attribute InAttribute() */ String Comment
)
function AfterCheckout (
pIItem : VSSItem,
Local : String,
Comment : String
)
Parameters
- pIItem
A reference of the IVSSItem type to an object representing a checked out file.
- Local
A string representing a fully qualified path to the local copy of a checked out file.
- Comment
Optional. A string containing a comment. The default is an empty string.
Remarks
[IDL]
HRESULT AfterCheckout ([in]IVSSItem *pIItem, [in] BSTR Local);
When you check out a project, each file that is in the project fires this event.
See Also
Reference
IVSSEvents Interface
IVSSEvents Members
Microsoft.VisualStudio.SourceSafe.Interop Namespace