public void Clear()
 {
     // If the special value was set, then remove everything but the special value.
     if (IsSpecialValueSet)
     {
         store.SetParsedValue(headerName, specialValue);
     }
     else
     {
         store.Remove(headerName);
     }
 }