CurtHagenlocher commented on issue #4231:
URL: https://github.com/apache/arrow-adbc/issues/4231#issuecomment-4270808826
Does this seem okay enough to others that I might feel comfortable
prematurely adding it to the C# implementation as something like
```
/// <summary>
/// Handler to be called by the driver when it needs an updated
credential.
/// </summary>
/// <param name="exception">A description of the error driving the
request</param>
/// <param name="recordBatch">Current credential parameter values</param>
/// <returns>Updated credential parameter values. Must have the same
Schema as the input recordBatch.</returns>
public delegate RecordBatch CredentialHandler(AdbcException exception,
RecordBatch recordBatch);
public partial class AdbcConnection {
/// <summary>
/// Gets or sets the credential handler for this connection.
/// </summary>
public CredentialHandler CredentialHandler { get; set; }
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]