Skip to content

Commit a55597f

Browse files
claudiamurialdoBeta Bot
authored andcommitted
Cherry pick branch 'genexuslabs:async-interfaces' into beta
1 parent c60ac85 commit a55597f

File tree

1 file changed

+2
-2
lines changed
  • dotnet/src/dotnetframework/GxClasses/Middleware

1 file changed

+2
-2
lines changed

dotnet/src/dotnetframework/GxClasses/Middleware/GXHttp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3273,9 +3273,9 @@ public virtual void master_styles() { }
32733273
public abstract class GXDataArea : GXHttpHandler
32743274
{
32753275
#if NETCORE
3276-
public virtual Task ExecuteStartEventAsync()
3276+
public virtual Task<short> ExecuteStartEventAsync()
32773277
{
3278-
return Task.CompletedTask;
3278+
return Task.FromResult<short>(0);
32793279
}
32803280
public virtual Task RenderHtmlContentAsync()
32813281
{

0 commit comments

Comments
 (0)