Microsoft.VisualStudio.Project.FileChangedOnDiskEventArgs.FileChangedOnDiskEventArgs C# (CSharp) Method

FileChangedOnDiskEventArgs() public method

Constructs a new event args.
public FileChangedOnDiskEventArgs ( string fileName, uint id, _VSFILECHANGEFLAGS flag ) : System
fileName string File name that was changed on disk.
id uint The item id of the file that was changed on disk.
flag _VSFILECHANGEFLAGS
return System
        public FileChangedOnDiskEventArgs(string fileName, uint id, _VSFILECHANGEFLAGS flag)
        {
            this.fileName = fileName;
            this.itemID = id;
            this.fileChangeFlag = flag;
        }
FileChangedOnDiskEventArgs