Skip to content

Commit 01bf255

Browse files
authored
- Add protocol property to objects for api remote call. (#774)
1 parent 18ca9f3 commit 01bf255

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ namespace GeneXus.Application
1010
public class GxObjectProperties
1111
{
1212
private GxLocation location = null;
13+
private string protocol = "rest";
1314
private string errorMessage = String.Empty;
1415
private int errorCode = 0;
1516
private int statusCode = 0;
@@ -18,6 +19,7 @@ public class GxObjectProperties
1819
public string ErrorMessage { get => errorMessage; set => errorMessage = value; }
1920
public int ErrorCode { get => errorCode; set => errorCode = value; }
2021
public int StatusCode { get => statusCode; set => statusCode = value; }
22+
public string Protocol { get => protocol; set => protocol = value; }
2123
}
2224

2325
public class GxObjectsConfiguration {

0 commit comments

Comments
 (0)