Partager via


LoggingOptions.ExcludePathStartsWith Propriété

Définition

Obtient ou définit l’ensemble des chemins HTTP qui doivent être exclus de la journalisation.

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

Valeur de propriété

La valeur par défaut est un HashSet<T> vide.

Attributs

Exemples

Un ensemble classique de chemins HTTP serait :

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

Remarques

Aucun chemin d’accès ajouté à l’ensemble ne sera journalisé. Les chemins d’accès ne respectent pas la casse.

S’applique à