Skip to content

Commit bd6d286

Browse files
Restore the ObjectName property and the default constructor to maintain backward compatibility with the GeneXus Core module.
1 parent 2c5dd62 commit bd6d286

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dotnet/src/dotnetframework/GxClasses/Helpers/GxDynamicCall.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ public class GxDynamicCall
1414
private readonly IGxContext _context;
1515
private GXProperties _properties;
1616
private object _object;
17+
18+
[Obsolete("ObjectName is deprecated. Use ExternalName instead", false)]
19+
public string ObjectName { get; set; }
1720
public string ExternalName { get; set; }
1821
public GXProperties Properties
1922
{
@@ -23,6 +26,10 @@ public GXProperties Properties
2326
_properties = Properties;
2427
}
2528
}
29+
public GxDynamicCall()
30+
{
31+
_properties = new GXProperties();
32+
}
2633

2734
public GxDynamicCall(IGxContext context)
2835
{

0 commit comments

Comments
 (0)