WebBrowser DefaultIncludeQueryDataInLabels Property C# API
Gets or sets a value that indicates whether URLs with different query data should be considered different from each other by default.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public bool DefaultIncludeQueryDataInLabels { get; set; }

Field Value

true if URL query data will be included in the HTTP metric labels by default; otherwise, false.
Remarks

If the value of this property is true, then the query data will be included in the HTTP metric labels.

e.g.

  • http://localhost:32144/search?q=camera
  • http://localhost:32144/search?q=laptop

It may be important to compare how the query data affects the performance timing data, or you may wish to consider both requests as accessing the same URL under the same label http://localhost:32144/search.

See Also