共用方式為


LoggingOptions.ExcludePathStartsWith 屬性

定義

取得或設定應該從記錄中排除的 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"
};

備註

不會記錄新增至集合的任何路徑。 路徑不區分大小寫。

適用於