Compartir a través de


LoggingOptions.ExcludePathStartsWith Propiedad

Definición

Obtiene o establece el conjunto de rutas de acceso HTTP que se deben excluir del registro.

[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)

Valor de propiedad

El valor predeterminado es un HashSet<T> vacío.

Atributos

Ejemplos

Un conjunto típico de rutas de acceso HTTP sería:

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

Comentarios

No se registrará ninguna ruta de acceso agregada al conjunto. Las rutas de acceso no distinguen mayúsculas de minúsculas.

Se aplica a