CmisSync.Lib.Events.FileMovedEvent.FileMovedEvent C# (CSharp) Метод

FileMovedEvent() публичный Метод

Initializes a new instance of the CmisSync.Lib.Events.FileMovedEvent class.
public FileMovedEvent ( IFileInfo oldLocalFile = null, IFileInfo newLocalFile = null, string oldRemoteFilePath = null, IDocument newRemoteFile = null ) : System
oldLocalFile IFileInfo Old local file.
newLocalFile IFileInfo New local file.
oldRemoteFilePath string Old remote file path.
newRemoteFile IDocument New remote file.
Результат System
        public FileMovedEvent(
            IFileInfo oldLocalFile = null,
            IFileInfo newLocalFile = null,
            string oldRemoteFilePath = null,
            IDocument newRemoteFile = null)
            : base(newLocalFile, newRemoteFile) {
            this.Local = MetaDataChangeType.MOVED;
            this.OldLocalFile = oldLocalFile;
            this.OldRemoteFilePath = oldRemoteFilePath;
        }
FileMovedEvent