Initializes a new instance of ClientBase class that
throws NotImplementedException upon invocation of any RPC.
This constructor is only provided to allow creation of test doubles
for client classes (e.g. mocking requires a parameterless constructor).
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-12 UTC."],[[["`ClientBase` is an abstract base class designed for creating client-side stubs in gRPC applications, serving as a foundation for derived client types."],["This class offers multiple constructors, including one that initializes an instance with a `CallInvoker`, another with a `ChannelBase`, and a third with `ClientBase.ClientBaseConfiguration` for varied setup needs."],["The parameterless constructor for `ClientBase` is primarily intended for testing and mocking, throwing a `NotImplementedException` if any RPC is invoked."],["The `CallInvoker` property, accessible within derived classes, provides a means to invoke remote calls within the gRPC framework."]]],[]]