6 writes to _Headers
System.Web (6)
Security\CookielessHelper.cs (6)
42_Headers = String.Empty; 48_Headers = _Context.Request.Headers[COOKIELESS_SESSION_FILTER_HEADER]; 57_Headers = null; 90_Headers = path.Substring(startPos + 2, endPos - startPos - 2); 160_Headers = _Headers.Substring(0, startPos-2) + _Headers.Substring(endPos+1); // Remove old value 166_Headers += new string(new char[] {identifier, '('}) + cookieValue + ")";
22 references to _Headers
System.Web (22)
Security\CookielessHelper.cs (22)
35if (_Headers != null) 37if (_Headers == null) 39if (_Headers == null) 41if (_Headers == null) 43_OriginalHeaders = _Headers; 53_OriginalHeaders = _Headers; 54if (!String.IsNullOrEmpty(_Headers)) { 56if (_Headers.Length == 24 && !_Headers.Contains("(")) { 60_Context.Response.SetAppPathModifier("(" + _Headers + ")"); 82if (_Headers == null) // Header should always be processed first 89if (_Headers == null) { 106if (!String.IsNullOrEmpty(_Headers)) { 107_Context.Request.ValidateCookielessHeaderIfRequiredByConfig(_Headers); // ensure that the path doesn't contain invalid chars 108_Context.Response.SetAppPathModifier("(" + _Headers + ")"); 135if (!GetValueStartAndEnd(_Headers, identifier, out startPos, out endPos)) 138returnValue = _Headers.Substring(startPos, endPos-startPos); // get the substring 159while (GetValueStartAndEnd(_Headers, identifier, out startPos, out endPos)) { // find old value position 160_Headers = _Headers.Substring(0, startPos-2) + _Headers.Substring(endPos+1); // Remove old value 171if (_Headers.Length > 0) 172_Context.Response.SetAppPathModifier("(" + _Headers + ")");