Changeset 487 for TFP-WebServer/WebServer/src/Web.cs
- Timestamp:
- Jun 17, 2024, 5:25:43 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/WebServer/src/Web.cs
r474 r487 172 172 } 173 173 174 #if ENABLE_PROFILER 174 175 private readonly UnityEngine.Profiling.CustomSampler getContextSampler = UnityEngine.Profiling.CustomSampler.Create ("GetCtx"); 176 #endif 175 177 private readonly UnityEngine.Profiling.CustomSampler authSampler = UnityEngine.Profiling.CustomSampler.Create ("Auth"); 176 178 private readonly UnityEngine.Profiling.CustomSampler cookieSampler = UnityEngine.Profiling.CustomSampler.Create ("ConCookie"); … … 191 193 #else 192 194 HttpListenerContext ctx = listenerInstance.EndGetContext (_result); 193 listenerInstance.BeginGetContext ( HandleRequest, listenerInstance);195 listenerInstance.BeginGetContext (handleRequestDelegate, listenerInstance); 194 196 #endif 195 197 try {
Note:
See TracChangeset
for help on using the changeset viewer.