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)
290
if (
_command
is ISecureCommand)
293
if (
_command
.CriticalCanExecute(argument, target, /* trusted: */ true, out unused))
295
_command
.ExecuteCore(argument, target, /* userInitiated: */ true);
300
if (
_command
.CanExecute(argument, target))
302
_command
.Execute(argument, target);
318
if (
_command
is ISecureCommand)
321
return
_command
.CriticalCanExecute(argument, target, /* trusted: */ true, out unused);
323
return
_command
.CanExecute(argument, target);
330
return
_command
;