コード例 #1
0
ファイル: IBClient.cs プロジェクト: lulzzz/HedgeHog
 void EWrapper.verifyCompleted(bool isSuccessful, string errorText)
 {
     VerifyCompleted?.Invoke(isSuccessful, errorText);
 }
コード例 #2
0
 public void verifyCompleted(bool isSuccessful, string errorText)
 {
     VerifyCompleted?.Invoke(new VerifyCompletedMessage(isSuccessful, errorText));
 }
 public virtual void verifyCompleted(bool isSuccessful, string errorText)
 {
     VerifyCompleted?.Invoke(this, new VerifyCompletedArgs(isSuccessful, errorText));
 }
コード例 #4
0
ファイル: EWrapperImpl.cs プロジェクト: rlamgit/tws-cli
        void EWrapper.verifyCompleted(bool isSuccessful, string errorText)
        {
            ShowDebugMessage(isSuccessful, errorText);

            VerifyCompleted?.Invoke(isSuccessful, errorText);
        }