Exemplo n.º 1
0
 /// <summary>
 /// Adds a list of keys to ignore when attaching the Form data of an HTTP POST request. This allows
 /// you to remove sensitive data from the transmitted copy of the Form on the HttpRequest by specifying the keys you want removed.
 /// This method is only effective in a web context.
 /// </summary>
 /// <param name="names">Keys to be stripped from the copy of the Form NameValueCollection when sending to Raygun.</param>
 public void IgnoreFormFieldNames(params string[] names)
 {
     _requestMessageOptions.AddFormFieldNames(names);
 }