AvalonStudio.Controls.Standard.SolutionExplorer.Commands.CloseSolutionCommandDefinition.CloseSolutionCommandDefinition C# (CSharp) Метод

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

public CloseSolutionCommandDefinition ( ) : System
Результат System
		public CloseSolutionCommandDefinition()
		{
			command = ReactiveCommand.Create();
			command.Subscribe(async _ =>
			{
				var shell = IoC.Get<IShell>();
                await shell.CloseSolutionAsync();
			});
		}
CloseSolutionCommandDefinition