4 writes to _error
System.Web (4)
HttpApplication.cs (4)
4390
_error
= (error != null) ? ExceptionDispatchInfo.Capture(error) : null;
4397
_error
= null; // to prevent long-lived exception object; write doesn't need to be volatile since nobody reads this field anyway in this case
4434
_error
= null; // prevent long-lived Exception objects on the heap
4441
_error
= null;
1 reference to _error
System.Web (1)
HttpApplication.cs (1)
4432
ExceptionDispatchInfo error =
_error
;