Skip to content

Commit 9cc1ced

Browse files
sgramponeBeta Bot
authored and
Beta Bot
committed
Cherry pick branch 'genexuslabs:gamutils_eo' into beta
1 parent 6addd27 commit 9cc1ced

File tree

1 file changed

+6
-0
lines changed
  • dotnet/src/extensions/gam/src/DotNetFramework/GamUtils/Utils

1 file changed

+6
-0
lines changed

dotnet/src/extensions/gam/src/DotNetFramework/GamUtils/Utils/DynamicCall.cs

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
using System.Globalization;
66
using GeneXus.Application;
77
using log4net;
8+
using System.Security;
9+
810

911
#if NETCORE
1012
using GxClasses.Helpers;
@@ -13,6 +15,7 @@
1315

1416
namespace GamUtils.Utils
1517
{
18+
[SecuritySafeCritical]
1619
public class DynamicCall
1720
{
1821

@@ -21,17 +24,20 @@ public class DynamicCall
2124

2225
/********EXTERNAL OBJECT PUBLIC METHODS - BEGIN ********/
2326

27+
[SecuritySafeCritical]
2428
public DynamicCall(IGxContext context)
2529
{
2630
mGxContext = context;
2731
}
2832

33+
[SecuritySafeCritical]
2934
public bool Execute(string assembly, string typeName, bool useContext, string method, string jsonParms, out string jsonOutput)
3035
{
3136
logger.Debug("Execute");
3237
return DoCall(assembly, typeName, useContext, method, false, "", jsonParms, out jsonOutput);
3338
}
3439

40+
[SecuritySafeCritical]
3541
public bool ExecuteEventHandler(string assembly, string typeName, bool useContext, string method, string eventType, string jsonInput, out string jsonOutput)
3642
{
3743
logger.Debug("ExecuteEventHandler");

0 commit comments

Comments
 (0)