Skip to content

Commit 47a092f

Browse files
committed
UsePathQuery()增加virtual修饰
1 parent 54a7e31 commit 47a092f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebApiClient/Attributes/ParameterAttributes/PathQueryAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public async Task BeforeRequestAsync(ApiActionContext context, ApiParameterDescr
102102
/// <param name="uri">url</param>
103103
/// <param name="keyValues">键值对</param>
104104
/// <returns></returns>
105-
protected Uri UsePathQuery(Uri uri, IEnumerable<KeyValuePair<string, string>> keyValues)
105+
protected virtual Uri UsePathQuery(Uri uri, IEnumerable<KeyValuePair<string, string>> keyValues)
106106
{
107107
var editor = new UriEditor(uri, this.encoding);
108108
foreach (var keyValue in keyValues)

0 commit comments

Comments
 (0)