Changeset 416
- Timestamp:
- Feb 27, 2023, 9:38:28 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/WebServer/src/WebAPI/APIs/RegisterUser.cs
r413 r416 2 2 using System.Collections.Generic; 3 3 using System.Net; 4 using System.Text; 4 5 using System.Text.RegularExpressions; 5 6 using JetBrains.Annotations; … … 85 86 string remoteEndpointString = _context.Request.RemoteEndPoint!.ToString (); 86 87 SessionHandler.HandleUserIdLogin (ParentWeb.ConnectionHandler, _context, remoteEndpointString, SessionHandler.userPassLoginName, 87 SessionHandler.userPassErrorPage, username, regData.PlatformUserId, regData.CrossPlatformUserId); 88 SessionHandler.userPassErrorPage, username, regData.PlatformUserId, regData.CrossPlatformUserId, false); 89 90 _context.Response.StatusCode = (int)HttpStatusCode.Created; 91 _context.Response.ContentType = WebUtils.MimePlain; 92 _context.Response.ContentEncoding = Encoding.UTF8; 93 _context.Response.ContentLength64 = 0; 94 // _context.Response.OutputStream.Write (jsonData.Array!, 0, jsonData.Count); 88 95 } 89 96
Note:
See TracChangeset
for help on using the changeset viewer.