AsyncAuthInterceptor Delegate |
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 0.12.0.0
Syntaxpublic delegate Task AsyncAuthInterceptor(
AuthInterceptorContext context,
Metadata metadata
)
Public Delegate Function AsyncAuthInterceptor (
context As AuthInterceptorContext,
metadata As Metadata
) As Task
public delegate Task^ AsyncAuthInterceptor(
AuthInterceptorContext^ context,
Metadata^ metadata
)
type AsyncAuthInterceptor =
delegate of
context : AuthInterceptorContext *
metadata : Metadata -> Task
Parameters
- context
- Type: Grpc.CoreAuthInterceptorContext
The interceptor context. - metadata
- Type: Grpc.CoreMetadata
Metadata to populate with entries that will be added to outgoing call's headers.
Return Value
Type:
Task
See Also