如何从异步方法返回一个字符串?

时间:2014-10-28 16:46:18

标签: c# async-await

我想从异步方法返回一个字符串值。我怎样才能做到这一点?方法" 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;
}

1 个答案:

答案 0 :(得分:4)

您使用await从返回的string中提取Task<string>

row["PlayerName"] = await getPlayerNameAsync(auctionInfo);

这需要ToDataTable成为async方法,因此应将其重命名为ToDataTableAsync并更改为返回Task<DataTable>

然后ToDataTable的来电者必须同样使用await并成为async方法。 async的这种增长是完全自然的,应该被接受。在我的async best practices article中,我将其描述为“一直异步”。