Show / Hide Table of Contents

Class AuthInterceptorContext

Context for an RPC being intercepted by AsyncAuthInterceptor.

Inheritance
System.Object
AuthInterceptorContext
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Grpc.Core
Assembly: Grpc.Core.Api.dll
Syntax
public class AuthInterceptorContext

Constructors

AuthInterceptorContext(String, String)

Initializes a new instance of AuthInterceptorContext.

Declaration
public AuthInterceptorContext(string serviceUrl, string methodName)
Parameters
Type Name Description
System.String serviceUrl
System.String methodName

Properties

MethodName

The method name of the RPC being called.

Declaration
public string MethodName { get; }
Property Value
Type Description
System.String

ServiceUrl

The fully qualified service URL for the RPC being called.

Declaration
public string ServiceUrl { get; }
Property Value
Type Description
System.String
Back to top