コード例 #1
0
ファイル: Actor.cs プロジェクト: RhodeHummel/CSF.Screenplay
        /// <summary>
        /// Invokes the end-when event.
        /// </summary>
        protected virtual void InvokeEndWhen()
        {
            var args = new ActorEventArgs(this);

            EndWhen?.Invoke(this, args);
        }
コード例 #2
0
 public void Visit(EndWhen instruction)
 {
     _ignores.Pop();
 }