Exemple #1
0
 public MethodInvokedTrigger(string name, INotifyMethodInvoked source, string tripOnMethodName)
     : this(name, source, tripOnMethodName, null)
 {
 }
Exemple #2
0
 public MethodInvokedTrigger(string name, INotifyMethodInvoked source, IUmlConstraint guard, string tripOnMethodName, object invocationContextFilter)
     : base(name, source, guard)
 {
     MethodNameFilter        = tripOnMethodName ?? string.Empty;
     InvocationContextFilter = invocationContextFilter;
 }
Exemple #3
0
 public MethodInvokedTrigger(string name, INotifyMethodInvoked source, string tripOnMethodName, object invocationContextFilter)
     : this(name, source, null, tripOnMethodName, invocationContextFilter)
 {
 }