ObserveItem() public method

Observe when the given file is updated on disk. In this case we do not care about the item id that represents the file in the hierarchy.
public ObserveItem ( string fileName ) : void
fileName string File to observe.
return void
Esempio n. 1
0
        protected void ObserveItem(string url)
        {
            ThreadHelper.ThrowIfNotOnUIThread();

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