9 writes to _context
System.Web (9)
HttpApplication.cs (9)
1468
_context
= context;
1539
_context
= context;
1586
_context
= null;
1674
_context
= context;
1692
_context
= null;
2431
_context
= context;
2442
_context
= null;
2734
_context
= context;
2803
_context
= null;
59 references to _context
System.Web (59)
HttpApplication.cs (59)
209
return(
_context
!= null) ?
_context
: _initContext;
302
return (
_context
!= null) ?
_context
.Error : _lastError;
357
if (
_context
!= null && !_hideRequestResponse)
358
request =
_context
.Request;
381
if (
_context
!= null && !_hideRequestResponse)
382
response =
_context
.Response;
407
else if (
_context
!= null)
408
session =
_context
.Session;
445
if (
_context
!= null)
446
return
_context
.Server;
462
if (
_context
== null)
465
return
_context
.User;
623
if (
_context
!= null) {
624
_context
.AddError(e);
669
return (
_context
.NotificationContext != null) ?
_context
.NotificationContext.AsyncResult : null;
677
_context
.NotificationContext.AsyncResult = value;
689
private PipelineModuleStepContainer CurrentModuleContainer { get { return ModuleContainers[
_context
.CurrentModuleIndex]; } }
1469
_context
.ApplicationInstance = this;
1474
_context
.Root();
1482
if (
_context
.TraceIsEnabled)
1483
HttpRuntime.Profile.StartRequest(
_context
);
1540
if (HttpRuntime.UseIntegratedPipeline &&
_context
!= null) {
1541
_context
.HideRequestResponse = true;
1582
if (HttpRuntime.UseIntegratedPipeline &&
_context
!= null) {
1583
_context
.HideRequestResponse = false;
1675
if (HttpRuntime.UseIntegratedPipeline &&
_context
!= null) {
1676
_context
.HideRequestResponse = true;
1688
if (HttpRuntime.UseIntegratedPipeline &&
_context
!= null) {
1689
_context
.HideRequestResponse = false;
2029
if((_appLevelAutoCulture || _appLevelAutoUICulture) &&
_context
!= null &&
_context
.HideRequestResponse == false) {
2030
string[] userLanguages =
_context
.UserLanguagesFromContext();
2112
ThreadContext threadContext = new ThreadContext(
_context
);
2120
_context
.EnsureTimeout();
2122
HttpRuntime.RequestTimeoutManager.Add(
_context
);
2132
return
_context
;
2170
_stepInvoker = new StepInvoker((nextStepAction) => callback(new HttpContextWrapper(
_context
), nextStepAction), nextStep);
2200
_context
.BeginCancellablePeriod(); // request can be cancelled from this point
2206
_context
.EndCancellablePeriod(); // request can be cancelled until this point
2209
_context
.WaitForExceptionIfCancelled(); // wait outside of finally
2308
if (
_context
!= null) {
2309
if (
_context
.Error != null)
2312
_context
.AddError(error);
2731
if (null ==
_context
) {
2735
_context
.ApplicationInstance = this;
2737
if (
_context
.TraceIsEnabled)
2738
HttpRuntime.Profile.StartRequest(
_context
);
2741
_context
.SetImpersonationEnabled();
2750
if (
_context
== null) {
2781
if (
_context
!= null)
2783
if (
_context
.TraceIsEnabled) {
2784
HttpRuntime.Profile.EndRequest(
_context
);
2786
_context
.ClearReferences();
2788
HttpRuntime.RequestTimeoutManager.Remove(
_context
);
2794
_context
.FirstRequest &&
2795
_context
.Error == null) {