Espera.Core.RemovableDriveNotifier.Create C# (CSharp) Method

Create() public static method

public static Create ( ) : RemovableDriveNotifier
return RemovableDriveNotifier
        public static RemovableDriveNotifier Create()
        {
            var notifier = new RemovableDriveNotifier();
            notifier.StartInsertWatcher();
            notifier.StartRemoveWatcher();

            return notifier;
        }