Improve docs

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

@ -76,7 +76,7 @@ namespace Grpc.Core
}
/// <summary>
/// Gets the last metadata entry with the specified key.
/// Gets the last metadata entry with the specified key. If no entries have the key then <c>null</c> is returned.
/// </summary>
public Entry Get(string key)
{
@ -106,7 +106,7 @@ namespace Grpc.Core
}
/// <summary>
/// Gets the last metadata entry string value with the specified key.
/// Gets the last metadata entry string value with the specified key. If no entries have the key then <c>null</c> is returned.
/// </summary>
public string GetValue(string key)
{
@ -114,7 +114,7 @@ namespace Grpc.Core
}
/// <summary>
/// Gets the last metadata entry bytes value with the specified key.
/// Gets the last metadata entry bytes value with the specified key. If no entries have the key then <c>null</c> is returned.
/// </summary>
public byte[] GetValueBytes(string key)
{

Loading…
Cancel
Save