2 writes to _handlerStack
System.Web (2)
HttpContext.cs (2)
863
_handlerStack
= new Stack();
2221
_handlerStack
= null;
8 references to _handlerStack
System.Web (8)
HttpContext.cs (8)
832
if (
_handlerStack
== null ||
_handlerStack
.Count == 0)
835
return (IHttpHandler)
_handlerStack
.Peek();
858
_currentHandler = (IHttpHandler)
_handlerStack
.Pop();
862
if (
_handlerStack
== null) {
865
_handlerStack
.Push(CurrentHandler);
940
if (
_handlerStack
== null) {
943
object[] handlers =
_handlerStack
.ToArray();