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 18b8f7c commit 9dbae04Copy full SHA for 9dbae04
dotnet/src/dotnetframework/GxClasses/Core/gxconfig.cs
@@ -877,7 +877,9 @@ internal static string AppMainNamespace
877
}
878
internal static bool IsBeforeConnectEventConfigured()
879
{
880
- return (Config.GetValueOf("EVENT_BEFORE_CONNECT", out string evtProcName) && !string.IsNullOrEmpty(evtProcName));
+
881
+ return (Config.GetValueOrEnvironmentVarOf("ApplyBeforeConnectToWebSession", out string value) && value == YES &&
882
+ Config.GetValueOf("EVENT_BEFORE_CONNECT", out string evtProcName) && !string.IsNullOrEmpty(evtProcName));
883
884
internal static string DefaultDatastore
885
0 commit comments