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