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)
35
if (
_Headers
!= null)
37
if (
_Headers
== null)
39
if (
_Headers
== null)
41
if (
_Headers
== null)
43
_OriginalHeaders =
_Headers
;
53
_OriginalHeaders =
_Headers
;
54
if (!String.IsNullOrEmpty(
_Headers
)) {
56
if (
_Headers
.Length == 24 && !
_Headers
.Contains("(")) {
60
_Context.Response.SetAppPathModifier("(" +
_Headers
+ ")");
82
if (
_Headers
== null) // Header should always be processed first
89
if (
_Headers
== null) {
106
if (!String.IsNullOrEmpty(
_Headers
)) {
107
_Context.Request.ValidateCookielessHeaderIfRequiredByConfig(
_Headers
); // ensure that the path doesn't contain invalid chars
108
_Context.Response.SetAppPathModifier("(" +
_Headers
+ ")");
135
if (!GetValueStartAndEnd(
_Headers
, identifier, out startPos, out endPos))
138
returnValue =
_Headers
.Substring(startPos, endPos-startPos); // get the substring
159
while (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
171
if (
_Headers
.Length > 0)
172
_Context.Response.SetAppPathModifier("(" +
_Headers
+ ")");