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"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-07 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."]]],[]]