File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
dotnet/src/dotnetframework/GxClasses/Helpers Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments