Share via


LoggingOptions.ExcludePathStartsWith Property

Definition

Gets or sets the set of HTTP paths that should be excluded from logging.

[System.ComponentModel.DataAnnotations.Required]
public System.Collections.Generic.ISet<string> ExcludePathStartsWith { get; set; }
[<System.ComponentModel.DataAnnotations.Required>]
member this.ExcludePathStartsWith : System.Collections.Generic.ISet<string> with get, set
Public Property ExcludePathStartsWith As ISet(Of String)

Property Value

The default value is an empty HashSet<T>.

Attributes

Examples

A typical set of HTTP paths would be:

ExcludePathStartsWith = new HashSet<string>
{
    "/probe/live",
    "/probe/ready"
};

Remarks

Any path added to the set will not be logged. Paths are case insensitive.

Applies to