Example #1
0
 /// <summary>
 /// Disconnects the active connection when ReuseSingleConnection is enabled.
 /// </summary>
 public async Task DisconnectAsync()
 {
     if (ReuseSingleConnection)
     {
         await ActiveConnection.CloseAsync();
     }
 }