OpenWithNewPasswordAsync
OpenWithNewPasswordAsync
is a Task-based asynchronous version of OracleConnection.OpenWithNewPassword()
, which opens a new connection with the new password.
Overload List:
-
OpenWithNewPasswordAsync(String)
Opens a new connection asynchronously with a new password.
-
OpenWithNewPasswordAsync(string, CancellationToken)
Opens a new connection asynchronously with a new password and token that can cancel the task.
-
OpenWithNewPasswordAsync(SecureString)
Opens a new connection asynchronously with a new
SecureString
password. -
OpenWithNewPasswordAsync(SecureString, CancellationToken)
Opens a new connection asynchronously with a new
SecureString
password and token that can cancel the task. -
OpenWithNewPasswordAsync(OracleOpaqueString)
Asynchronously opens connection with a new
OracleOpaqueString
password -
OpenWithNewPasswordAsync(OracleOpaqueString, CancellationToken)
Asynchronously opens connection with a new
OracleOpaqueString
password and aCancellationToken
to cancel thread.