1 write to _command
PresentationFramework (1)
MS\Internal\AppModel\OleCmdHelper.cs (1)
283_command = command;
9 references to _command
PresentationFramework (9)
MS\Internal\AppModel\OleCmdHelper.cs (9)
296if (_command is ISecureCommand) 299if (_command.CriticalCanExecute(argument, target, /* trusted: */ true, out unused)) 301_command.ExecuteCore(argument, target, /* userInitiated: */ true); 306if (_command.CanExecute(argument, target)) 308_command.Execute(argument, target); 324if (_command is ISecureCommand) 327return _command.CriticalCanExecute(argument, target, /* trusted: */ true, out unused); 329return _command.CanExecute(argument, target); 336return _command;