We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83836ec commit c60ac85Copy full SHA for c60ac85
dotnet/src/dotnetframework/GxClasses/Middleware/GXHttp.cs
@@ -3272,6 +3272,20 @@ public virtual void master_styles() { }
3272
}
3273
public abstract class GXDataArea : GXHttpHandler
3274
{
3275
+#if NETCORE
3276
+ public virtual Task ExecuteStartEventAsync()
3277
+ {
3278
+ return Task.CompletedTask;
3279
+ }
3280
+ public virtual Task RenderHtmlContentAsync()
3281
3282
3283
3284
+ public virtual Task DispatchEventsAsync()
3285
3286
3287
3288
+#endif
3289
abstract public short ExecuteStartEvent();
3290
abstract public void RenderHtmlHeaders();
3291
abstract public void RenderHtmlOpenForm();
0 commit comments