StopObservingItem() public method

Stop observing when the file is updated on disk.
public StopObservingItem ( string fileName ) : void
fileName string File to stop observing.
return void
Esempio n. 1
0
        protected void StopObservingItem(string url)
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            if (filechangemanager != null)
            {
                filechangemanager.StopObservingItem(url);
            }
        }