示例#1
0
        void RenderCookieDataRow(Table table, NameValueTraceData r, int pos)
        {
            if (r == null)
            {
                return;
            }

            int length = r.Name.Length + (r.Value == null ? 0 : r.Value.Length);

            RenderAltRow(table, pos++, r.Name, r.Value, length.ToString());
        }
示例#2
0
		void RenderCookieDataRow (Table table, NameValueTraceData r, int pos)
		{
			if (r == null)
				return;
			
			int length = r.Name.Length + (r.Value == null ? 0 : r.Value.Length);
			RenderAltRow (table, pos++, r.Name, r.Value, length.ToString ());
		}