Skip to content

Commit 10201ad

Browse files
author
claudiamurialdo
committed
Fix return type for ExecuteStartEventAsync
1 parent 5888e81 commit 10201ad

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
@@ -3236,9 +3236,9 @@ public virtual void master_styles() { }
32363236
public abstract class GXDataArea : GXHttpHandler
32373237
{
32383238
#if NETCORE
3239-
public virtual Task ExecuteStartEventAsync()
3239+
public virtual Task<short> ExecuteStartEventAsync()
32403240
{
3241-
return Task.CompletedTask;
3241+
return Task.FromResult<short>(0);
32423242
}
32433243
public virtual Task RenderHtmlContentAsync()
32443244
{

0 commit comments

Comments
 (0)