PartSearch
This commit is contained in:
parent
14bd97d088
commit
91250af6ff
|
|
@ -7,4 +7,9 @@ public class WebPageResponseData
|
|||
public string ResponseData { get; set; } = null!;
|
||||
public bool ResponseInMemory { get; set; }
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Url} {ResponseData.Length}";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,5 +13,5 @@ public class WebPageResponseFilter
|
|||
/// <summary>
|
||||
/// Handle Content-Type: text/x-component
|
||||
/// </summary>
|
||||
public int PartIndex { get; set; } = -1;
|
||||
public Func<string, string>? PartSearch { get; set; } = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue