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)
296
if (
_command
is ISecureCommand)
299
if (
_command
.CriticalCanExecute(argument, target, /* trusted: */ true, out unused))
301
_command
.ExecuteCore(argument, target, /* userInitiated: */ true);
306
if (
_command
.CanExecute(argument, target))
308
_command
.Execute(argument, target);
324
if (
_command
is ISecureCommand)
327
return
_command
.CriticalCanExecute(argument, target, /* trusted: */ true, out unused);
329
return
_command
.CanExecute(argument, target);
336
return
_command
;