本文整理汇总了C#中HttpHeaders.ToList方法的典型用法代码示例。如果您正苦于以下问题:C# HttpHeaders.ToList方法的具体用法?C# HttpHeaders.ToList怎么用?C# HttpHeaders.ToList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpHeaders
的用法示例。
在下文中一共展示了HttpHeaders.ToList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExtractHeaders
/// <summary>
/// Helper method to turn <see cref="HttpHeaders"/> into a regular dictionary
/// </summary>
/// <param name="h">The headers to extract</param>
protected void ExtractHeaders(HttpHeaders h)
{
var dict = new Dictionary<string, string>();
foreach (var i in h.ToList())
{
if (i.Value != null)
{
string header = i.Value.Aggregate(string.Empty, (current, j) => current + (j + " "));
dict.Add(i.Key, header);
}
}
Headers = dict;
}
示例2: extractHeaders
protected void extractHeaders(HttpHeaders h)
{
Dictionary<string, string> dict = new Dictionary<string, string>();
foreach (var i in h.ToList())
{
if (i.Value != null)
{
string header = string.Empty;
foreach (var j in i.Value)
{
header += j + " ";
}
dict.Add(i.Key, header);
}
}
Headers = dict;
}
示例3: SerializeHeaders
private string SerializeHeaders(HttpHeaders headers)
{
var dict = new Dictionary<string, string>();
foreach (var item in headers.ToList())
{
if (item.Value != null)
{
var header = String.Empty;
foreach (var value in item.Value)
{
header += value + " ";
}
// Trim the trailing space and add item to the dictionary
header = header.TrimEnd(" ".ToCharArray());
dict.Add(item.Key, header);
}
}
return JsonConvert.SerializeObject(dict, Formatting.Indented);
}