Grpc.Core.AuthContext
Authentication context for a call.
AuthContext is the only reliable source of truth when it comes to authenticating calls.
Using any other call/context properties for authentication purposes is wrong and inherently unsafe.
Note: experimental API that can change or be removed without any prior notice.
Returns true if the peer is authenticated.
Gets properties that represent the peer identity (there can be more than one). Returns an empty collection
if the peer is not authenticated.
Gets the name of the property that indicates the peer identity. Returns null
if the peer is not authenticated.
Gets the auth properties of this context.
public AuthContext(string peerIdentityPropertyName, Dictionary<string, List<AuthProperty>> properties)
Initializes a new instance of the AuthContext class.
Returns the auth properties with given name (there can be more than one).
If no properties of given name exist, an empty collection will be returned.