LoggingOptions.ExcludePathStartsWith Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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.