Merge pull request #18500 from jtattermusch/csharp_authcontext_constructor

Make AuthContext constructor public
pull/18534/head
Jan Tattermusch 6 years ago committed by GitHub
commit a1fac43aff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/csharp/Grpc.Core.Api/AuthContext.cs

@ -39,7 +39,7 @@ namespace Grpc.Core
/// </summary>
/// <param name="peerIdentityPropertyName">Peer identity property name.</param>
/// <param name="properties">Multimap of auth properties by name.</param>
internal AuthContext(string peerIdentityPropertyName, Dictionary<string, List<AuthProperty>> properties)
public AuthContext(string peerIdentityPropertyName, Dictionary<string, List<AuthProperty>> properties)
{
this.peerIdentityPropertyName = peerIdentityPropertyName;
this.properties = GrpcPreconditions.CheckNotNull(properties);

Loading…
Cancel
Save