Condividi tramite


IVsFileChangeEx.IgnoreFile Method

Ignores changes to a file.

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

Syntax

'Dichiarazione
Function IgnoreFile ( _
    VSCOOKIE As UInteger, _
    pszMkDocument As String, _
    fIgnore As Integer _
) As Integer
'Utilizzo
Dim instance As IVsFileChangeEx
Dim VSCOOKIE As UInteger
Dim pszMkDocument As String
Dim fIgnore As Integer
Dim returnValue As Integer

returnValue = instance.IgnoreFile(VSCOOKIE, _
    pszMkDocument, fIgnore)
int IgnoreFile(
    uint VSCOOKIE,
    string pszMkDocument,
    int fIgnore
)
int IgnoreFile(
    [InAttribute] unsigned int VSCOOKIE, 
    [InAttribute] String^ pszMkDocument, 
    [InAttribute] int fIgnore
)
function IgnoreFile(
    VSCOOKIE : uint, 
    pszMkDocument : String, 
    fIgnore : int
) : int

Parameters

  • VSCOOKIE
    Type: System.UInt32

    [in] A VSCOOKIE that identifies the file. If you use this parameter to specify the file, then pszMkDocument must be set to nulla null reference (Nothing in Visual Basic).

  • pszMkDocument
    Type: System.String

    [in] String form of the moniker identifier of the document in the project system. In the case of documents that are files, this is always the path to the file. If you use this parameter to specify the file, then vsCookie must be set to nulla null reference (Nothing in Visual Basic).

  • fIgnore
    Type: System.Int32

    [in] If true, then ignore the file changes. If false, then do not ignore the file changes.

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 IVsFileChangeEx::IgnoreFile(
   [in] VSCOOKIE vsCookie,
   [in] LPCOLESTR pszMkDocument,
   [in] BOOL fIgnore
);

Use either the vsCookie or pszMkDocument parameter to specify the file. If both parameters are used, E_INVALIDARG is returned.

Permissions

See Also

Reference

IVsFileChangeEx Interface

IVsFileChangeEx Members

Microsoft.VisualStudio.Shell.Interop Namespace