Skip to content

Commit 8198c4c

Browse files
committed
- isDataProvider property was not inherited in NET 4.X . Created a different one.
1 parent d4b4b97 commit 8198c4c

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Model/GXWebProcedure.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected override void SetCompression(HttpContext httpContext)
5555
}
5656
}
5757
public void setContextReportHandler()
58-
{
58+
{
5959

6060
oldReportHandler = null;
6161
reportHandler = context.reportHandler;
@@ -92,6 +92,16 @@ protected void setOutputType(string fileType)
9292
outputType = fileType.Trim();
9393
}
9494

95+
#if !NETCORE
96+
97+
protected bool _isDP;
98+
99+
public bool IsDataProvider
100+
{
101+
set { _isDP = value; }
102+
get { return _isDP; }
103+
}
104+
#endif
95105
protected override void sendCacheHeaders()
96106
{
97107

0 commit comments

Comments
 (0)