public FileNotification(IFile file, FileNotificationKind notificationKind)
		{
			File = file;
			NotificationKind = notificationKind;
		}
 public FileNotification(IFile file, FileNotificationKind notificationKind)
 {
     File             = file;
     NotificationKind = notificationKind;
 }
Esempio n. 3
0
		protected FileNotificationBase(FileInfo fileInfo, FileNotificationKind kind)
		{
			if (fileInfo == null) throw new ArgumentNullException(nameof(fileInfo));
			FileInfo = fileInfo;
			Kind = kind;
		}