MonoDevelop.VersionControl.Repository.NotifyFileChanged C# (CSharp) Méthode

NotifyFileChanged() public méthode

public NotifyFileChanged ( FilePath path ) : void
path FilePath
Résultat void
		public void NotifyFileChanged (FilePath path)
		{
			ClearCachedVersionInfo (path);
			OnNotifyFileChanged (path);
		}
		

Usage Example

Exemple #1
0
        public override void CopyFile(FilePath source, FilePath dest, bool overwrite)
        {
            Repository repo = GetRepository(dest);

            if (!repo.RequestFileWritePermission(dest))
            {
                throw new System.IO.IOException("Write permission denied.");
            }

            base.CopyFile(source, dest, overwrite);
            repo.NotifyFileChanged(dest);
        }
All Usage Examples Of MonoDevelop.VersionControl.Repository::NotifyFileChanged