We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a615ad4 commit 20cc9b3Copy full SHA for 20cc9b3
Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdClient/FbConnectionPoolManager.cs
@@ -185,8 +185,8 @@ static FbConnectionPoolManager()
185
{
186
Instance = new FbConnectionPoolManager();
187
#if !NETSTANDARD1_6
188
- AppDomain.CurrentDomain.DomainUnload += (sender, args) => Instance.Dispose();
189
- AppDomain.CurrentDomain.ProcessExit += (sender, args) => Instance.Dispose();
+ AppDomain.CurrentDomain.DomainUnload += (sender, e) => Instance.Dispose();
+ AppDomain.CurrentDomain.ProcessExit += (sender, e) => Instance.Dispose();
190
#endif
191
}
192
0 commit comments