Show / Hide Table of Contents

    Class GrpcClientFactoryOptions

    Options used to configure a gRPC client.

    Inheritance
    System.Object
    GrpcClientFactoryOptions
    Namespace: Grpc.Net.ClientFactory
    Assembly: Grpc.Net.ClientFactory.dll
    Syntax
    public class GrpcClientFactoryOptions : object

    Properties

    Address

    The address to use when making gRPC calls.

    Declaration
    public Uri? Address { get; set; }
    Property Value
    Type Description
    System.Nullable<Uri>

    ChannelOptionsActions

    Gets a list of operations used to configure a GrpcChannelOptions.

    Declaration
    public IList<Action<GrpcChannelOptions>> ChannelOptionsActions { get; }
    Property Value
    Type Description
    IList<Action<GrpcChannelOptions>>

    Interceptors

    Gets a list of instances used to configure a gRPC client pipeline.

    Declaration
    public IList<Interceptor> Interceptors { get; }
    Property Value
    Type Description
    IList<Interceptor>
    Back to top Generated by DocFX