Add helper methods for getting metadata values

pull/22743/head
James Newton-King 5 years ago
parent 4e7f3376d8
commit cacc03f56a
No known key found for this signature in database
GPG Key ID: A66B2F456BF5526
  1. 78
      src/csharp/Grpc.Core.Api/Metadata.cs

@ -75,7 +75,67 @@ namespace Grpc.Core
return this;
}
// TODO: add support for access by key
/// <summary>
/// Gets the last metadata entry with the specified key.
/// </summary>
public Entry Get(string key)
{
for (int i = entries.Count - 1; i >= 0; i--)
{
if (entries[i].Key == key)
{
return entries[i];
}
}
return null;
}
/// <summary>
/// Gets all metadata entries with the specified key.
/// </summary>
public IEnumerable<Entry> GetAll(string key)
{
for (int i = 0; i < entries.Count; i++)
{
if (entries[i].Key == key)
{
yield return entries[i];
}
}
}
/// <summary>
/// Gets the last metadata entry string value with the specified key.
/// </summary>
public string GetValue(string key)
{
return Get(key)?.Value;
}
/// <summary>
/// Gets the last metadata entry bytes value with the specified key.
/// </summary>
public byte[] GetValueBytes(string key)
{
return Get(key)?.ValueBytes;
}
/// <summary>
/// Adds a new ASCII-valued metadata entry. See <c>Metadata.Entry</c> constructor for params.
/// </summary>
public void Add(string key, string value)
{
Add(new Entry(key, value));
}
/// <summary>
/// Adds a new binary-valued metadata entry. See <c>Metadata.Entry</c> constructor for params.
/// </summary>
public void Add(string key, byte[] valueBytes)
{
Add(new Entry(key, valueBytes));
}
#region IList members
@ -135,22 +195,6 @@ namespace Grpc.Core
entries.Add(item);
}
/// <summary>
/// Adds a new ASCII-valued metadata entry. See <c>Metadata.Entry</c> constructor for params.
/// </summary>
public void Add(string key, string value)
{
Add(new Entry(key, value));
}
/// <summary>
/// Adds a new binary-valued metadata entry. See <c>Metadata.Entry</c> constructor for params.
/// </summary>
public void Add(string key, byte[] valueBytes)
{
Add(new Entry(key, valueBytes));
}
/// <summary>
/// <see cref="T:IList`1"/>
/// </summary>

Loading…
Cancel
Save