コード例 #1
0
ファイル: CancelledByUser.cs プロジェクト: sotaria/gsf
 public CancelledByUser(TFtpErrorPacket reason)
 {
     m_reason = reason;
 }
コード例 #2
0
ファイル: StartOutgoingRead.cs プロジェクト: sotaria/gsf
 public override void OnCancel(TFtpErrorPacket reason)
 {
     Context.SetState(new Closed());
 }
コード例 #3
0
 public override void OnCancel(TFtpErrorPacket reason)
 {
     Context.SetState(new CancelledByUser(reason));
 }
コード例 #4
0
ファイル: BaseState.cs プロジェクト: sotaria/gsf
 public virtual void OnCancel(TFtpErrorPacket reason)
 {
 }