1 write to _command
PresentationFramework (1)
MS\Internal\AppModel\OleCmdHelper.cs (1)
277_command = command;
9 references to _command
PresentationFramework (9)
MS\Internal\AppModel\OleCmdHelper.cs (9)
290if (_command is ISecureCommand) 293if (_command.CriticalCanExecute(argument, target, /* trusted: */ true, out unused)) 295_command.ExecuteCore(argument, target, /* userInitiated: */ true); 300if (_command.CanExecute(argument, target)) 302_command.Execute(argument, target); 318if (_command is ISecureCommand) 321return _command.CriticalCanExecute(argument, target, /* trusted: */ true, out unused); 323return _command.CanExecute(argument, target); 330return _command;