LoggingOptions.ExcludePathStartsWith 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定應該從記錄中排除的 HTTP 路徑集合。
[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)
屬性值
預設值是空的 HashSet<T>。
- 屬性
範例
一組典型的 HTTP 路徑為:
ExcludePathStartsWith = new HashSet<string>
{
"/probe/live",
"/probe/ready"
};
備註
不會記錄新增至集合的任何路徑。 路徑不區分大小寫。