问 - 如何在 'PostJsonAsync' Flurl 中使用单词 'params'
Ask - How to use the word 'params' in 'PostJsonAsync' Flurl
我正在使用 flurl 检索 url 中的数据。如何在PostJsonAsync中使用params这个词?我得到的问题是 identifier expected: 'params' is keyword
,如果我使用 'params' 以外的词就没有问题。
.PostJsonAsync(new
{
variables = (new
{
params = "&ob=23&identifier=handphone-tablet_aksesoris-handphone&sc=66&user_id=0&rows=60&start=1&source=directory&device=desktop&page=1&related=true&st=product&safe_search=false"
}),
})
任何时候您想使用 C# 保留字作为 属性 名称,只需在其前面加上 @
:
new
{
@params = "..."
}
我正在使用 flurl 检索 url 中的数据。如何在PostJsonAsync中使用params这个词?我得到的问题是 identifier expected: 'params' is keyword
,如果我使用 'params' 以外的词就没有问题。
.PostJsonAsync(new
{
variables = (new
{
params = "&ob=23&identifier=handphone-tablet_aksesoris-handphone&sc=66&user_id=0&rows=60&start=1&source=directory&device=desktop&page=1&related=true&st=product&safe_search=false"
}),
})
任何时候您想使用 C# 保留字作为 属性 名称,只需在其前面加上 @
:
new
{
@params = "..."
}