3 writes to _macKeyBytes
System.Web (3)
UI\ObjectStateFormatter.cs (3)
164_macKeyBytes = macEncodingKey; 228_macKeyBytes = new byte[count + 4]; 233_macKeyBytes = new byte[4];
9 references to _macKeyBytes
System.Web (9)
UI\ObjectStateFormatter.cs (9)
213if (_macKeyBytes == null) { 229Encoding.Unicode.GetBytes(viewStateUserKey, 0, viewStateUserKey.Length, _macKeyBytes, 4); 236_macKeyBytes[0] = (byte)pageHashCode; 237_macKeyBytes[1] = (byte)(pageHashCode >> 8); 238_macKeyBytes[2] = (byte)(pageHashCode >> 16); 239_macKeyBytes[3] = (byte)(pageHashCode >> 24); 241return _macKeyBytes; 394else if ((_page != null && _page.EnableViewStateMac) || _macKeyBytes != null) { 799else if ((_page != null && _page.EnableViewStateMac) || _macKeyBytes != null) {