AvalonStudio.Shell.Commands.SaveAllFileCommandDefinition.SaveAllFileCommandDefinition C# (CSharp) Method

SaveAllFileCommandDefinition() public method

public SaveAllFileCommandDefinition ( ) : System
return System
		public SaveAllFileCommandDefinition()
		{
			_command = ReactiveCommand.Create();

			_command.Subscribe(_ =>
			{
				var shell = IoC.Get<IShell>();

				shell?.SaveAll();
			});
		}
SaveAllFileCommandDefinition