我想从异步方法返回一个字符串值。我怎样才能做到这一点?方法" getPlayerName"正在使用现在的异步。但是这种方法的消费者期待一个字符串值。
public DataTable ToDataTable(List<AuctionInfo> data)
{
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(AuctionInfo));
DataTable table = new DataTable();
// loop into all columns
string propName = "PlayerName";
table.Columns.Add(propName, propName.GetType());
foreach (PropertyDescriptor prop in properties)
{
table.Columns.Add(prop.Name, Nullable.GetUnderlyingType(prop.PropertyType) ?? prop.PropertyType);
}
// todo add column PlayerName
// loop into all auctions/advertenties
foreach (AuctionInfo auctionInfo in data)
{
DataRow row = table.NewRow();
row["PlayerName"] = getPlayerName(auctionInfo);
// loop into all columns and set value
foreach (PropertyDescriptor prop in properties)
{
// set value of column
row[prop.Name] = prop.GetValue(auctionInfo) ?? DBNull.Value;
}
// add row to datatable
table.Rows.Add(row);
}
return table;
}
private async Task<string> getPlayerName(AuctionInfo auctionInfo)
{
var item = await client.GetItemAsync(auctionInfo);
string fullName = string.Format("{0} {1}", item.FirstName, item.LastName);
return fullName;
}
答案 0 :(得分:4)
您使用await
从返回的string
中提取Task<string>
:
row["PlayerName"] = await getPlayerNameAsync(auctionInfo);
这需要ToDataTable
成为async
方法,因此应将其重命名为ToDataTableAsync
并更改为返回Task<DataTable>
。
然后ToDataTable
的来电者必须同样使用await
并成为async
方法。 async
的这种增长是完全自然的,应该被接受。在我的async
best practices article中,我将其描述为“一直异步”。