Legal Notice
The opinions expressed herein are my own personal opinions and do not represent my employer’s view in anyway.Top Posts
- C# HttpClient POST or PUT Json with content type application/json
- C# get results from Task.WhenAll
- C# Get expiry timestamp from JWT token
- Run tasks in parallel using .NET Core, C# and async coding
- Handling "415 Unsupported Media Type" in .NET Core API
- Using C# HttpClient from Sync and Async code
- ASP.Net Core API - "'s' is an invalid start of a value. Path: $ | LineNumber: 0 | BytePositionInLine: 0."
Archive
Meta
Tag Archives: BeginRequest
Why is session NULL in BeginRequest()? (httpRequestBegin)
Have you ever wondered why the session is NULL when a request begins? The answer is simple: The Application_BeginRequest() event is fired before the Session_Start() event. The BeginRequest() event is fired for each request as the first event. The Session_Start() … Continue reading
Posted in General .NET, Sitecore 6, Sitecore 7, Sitecore 8
Tagged BeginRequest, global.asax, httpRequestBegin, httpRequestProcessed, session, Session_Start, Sitecore
1 Comment