コード例 #1
0
 public DelegatingKeyboardInteractiveUserInfo(
     PromptString promptPassphrase,
     PromptString promptPassword,
     PromptBool promptYesNo,
     Show showMessage,
     KeyboardInteractive promptKeyboardInteractive
     )
 {
     if (promptPassphrase != null)
     {
         _promptPassphrase = promptPassphrase;
     }
     if (promptPassword != null)
     {
         _promptPassword = promptPassword;
     }
     if (promptYesNo != null)
     {
         _promptYesNo = promptYesNo;
     }
     if (showMessage != null)
     {
         _showMessage = showMessage;
     }
     if (promptKeyboardInteractive != null)
     {
         _promptKeyboardInteractive = promptKeyboardInteractive;
     }
 }
コード例 #2
0
 public DelegatingKeyboardInteractiveUserInfo(
     PromptString promptPassphrase,
     PromptString promptPassword,
     PromptBool promptYesNo,
     Show showMessage,
     KeyboardInteractive promptKeyboardInteractive
     )
 {
     if (promptPassphrase != null) _promptPassphrase = promptPassphrase;
     if (promptPassword != null) _promptPassword = promptPassword;
     if (promptYesNo != null) _promptYesNo = promptYesNo;
     if (showMessage != null) _showMessage = showMessage;
     if (promptKeyboardInteractive != null) _promptKeyboardInteractive = promptKeyboardInteractive;
 }