private void ImplementVerb(TAVerb verb) { if (verb.During != null) { verb.During.Implement(this); } }
public override bool Equals(object obj) { TAVerb other = obj as TAVerb; if (other == null) { return(false); } return(Op.Method.Equals(other.Op.Method) && Target == other.Target); }
/// <summary> /// Adds a transaction verb to describe the neutral (default) dataflows for all specified signal targets. /// </summary> /// <param name="verb">a transaction verb intended as neutral flow</param> public void AddNeutral(TAVerb verb) { AddNeutral(verb.ToCombFlow()); }