コード例 #1
0
ファイル: Account.cs プロジェクト: christiansax/MoCap
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnStateChanged(InteractionEventArgs pEventArgs)
 {
     StateChanged?.Invoke(this, pEventArgs);
 }
コード例 #2
0
ファイル: Account.cs プロジェクト: christiansax/MoCap
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnTimesliceAdded(InteractionEventArgs pEventArgs)
 {
     TimesliceAdded?.Invoke(this, pEventArgs);
 }
コード例 #3
0
ファイル: Account.cs プロジェクト: christiansax/MoCap
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnModify(InteractionEventArgs pEventArgs)
 {
     Modified?.Invoke(this, pEventArgs);
 }
コード例 #4
0
ファイル: Account.cs プロジェクト: christiansax/MoCap
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnExpenseAdded(InteractionEventArgs pEventArgs)
 {
     ExpenseAdded?.Invoke(this, pEventArgs);
 }
コード例 #5
0
ファイル: Account.cs プロジェクト: christiansax/MoCap
 /// <summary>
 /// This method raises the corresponding event in case subscribers are registered
 /// </summary>
 /// <param name="pEventArgs"></param>
 public virtual void OnComplete(InteractionEventArgs pEventArgs)
 {
     Completed?.Invoke(this, pEventArgs);
 }
コード例 #6
0
ファイル: Interaction.cs プロジェクト: christiansax/MoCap
 public void OnStateChanged(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
ファイル: Interaction.cs プロジェクト: christiansax/MoCap
 public void OnModify(InteractionEventArgs pEventArgs)
 {
     throw new NotImplementedException();
 }