Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused GxHttpAzureResponseExtension. #601

Merged
merged 1 commit into from
May 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,18 @@ GXRouting GetRouting()
return gxRouting;
}
#endif
#if NETCORE
public override async void webExecute()
public override void webExecute()
{
#if NETCORE
GxRestWrapper handler = null;
#else
public override void webExecute()
{
Utils.GxRestService handler = null;
#endif
try
{
HttpRequest req = context.HttpContext.Request;
string gxobj = GetNextPar().ToLower();
#if NETCORE
string jsonStr = await new StreamReader(req.GetInputStream()).ReadToEndAsync();
#else
string jsonStr = (new StreamReader(req.GetInputStream())).ReadToEnd();
#endif
GxSimpleCollection<JArray> parmsColl = new GxSimpleCollection<JArray>();
if (!string.IsNullOrEmpty(jsonStr))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,4 @@ public override PipeWriter BodyWriter
}
}
}
public static class GxHttpAzureResponseExtension
{
public static void Write(this GxHttpAzureResponse response, string value)
{
response.Body.Write(Encoding.UTF8.GetBytes(value));
}
}
}