IVsTextManager.SuspendFileChangeAdvise, méthode
Interrompt des notifications de changement de fichier pour un fichier donné.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function SuspendFileChangeAdvise ( _
pszFileName As String, _
fSuspend As Integer _
) As Integer
int SuspendFileChangeAdvise(
string pszFileName,
int fSuspend
)
int SuspendFileChangeAdvise(
[InAttribute] String^ pszFileName,
[InAttribute] int fSuspend
)
abstract SuspendFileChangeAdvise :
pszFileName:string *
fSuspend:int -> int
function SuspendFileChangeAdvise(
pszFileName : String,
fSuspend : int
) : int
Paramètres
pszFileName
Type : String[in] le fichier sur lequel pour interrompre la notification des modifications a fait.
fSuspend
Type : Int32[in] true si la notification de modifications est interrompue sur le nom de fichier spécifié.
Valeur de retour
Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.
Notes
Signature de COM
De textmgr.idl :
HRESULT IVsTextManager::SuspendFileChangeAdvise(
[in] const WCHAR *pszFileName,
[in] BOOL fSuspend
);
Utilisez cette méthode pour interrompre la notification externe (par exemple, du contrôle de code source) que des fichiers ont changé.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.