CommandAttribute.ExecuteMethod Property |
Gets or sets the name of the method that implements the command logic. This method corresponds to the
to the Execute(Object) method. It is called every time the command is invoked.
Namespace: PostSharp.Patterns.Xaml
Assembly: PostSharp.Patterns.Xaml (in PostSharp.Patterns.Xaml.dll) Version: 6.6.14.0 (6.6.14.0)


The Execute method must be declared in the same class as the command property and can have zero parameter or one parameter of any type, which becomes the command parameter.
If this property is not set, then the aspect will look for a method named Foo or ExecuteFoo, where Foo is the name of the command without the Command suffix.
