partial void OnCopy(DomainCategoryServiceSettings existing);
private DomainCategoryServiceSettings(DomainCategoryServiceSettings existing) : base(existing) { gax::GaxPreconditions.CheckNotNull(existing, nameof(existing)); GetDomainCategorySettings = existing.GetDomainCategorySettings; OnCopy(existing); }
/// <summary> /// Constructs a client wrapper for the DomainCategoryService service, with the specified gRPC client and /// settings. /// </summary> /// <param name="grpcClient">The underlying gRPC client.</param> /// <param name="settings">The base <see cref="DomainCategoryServiceSettings"/> used within this client.</param> public DomainCategoryServiceClientImpl(DomainCategoryService.DomainCategoryServiceClient grpcClient, DomainCategoryServiceSettings settings) { GrpcClient = grpcClient; DomainCategoryServiceSettings effectiveSettings = settings ?? DomainCategoryServiceSettings.GetDefault(); gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings); _callGetDomainCategory = clientHelper.BuildApiCall <GetDomainCategoryRequest, gagvr::DomainCategory>(grpcClient.GetDomainCategoryAsync, grpcClient.GetDomainCategory, effectiveSettings.GetDomainCategorySettings).WithGoogleRequestParam("resource_name", request => request.ResourceName); Modify_ApiCall(ref _callGetDomainCategory); Modify_GetDomainCategoryApiCall(ref _callGetDomainCategory); OnConstruction(grpcClient, effectiveSettings, clientHelper); }
partial void OnConstruction(DomainCategoryService.DomainCategoryServiceClient grpcClient, DomainCategoryServiceSettings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
/// <summary> /// Creates a <see cref="DomainCategoryServiceClient"/> which uses the specified call invoker for remote /// operations. /// </summary> /// <param name="callInvoker"> /// The <see cref="grpccore::CallInvoker"/> for remote operations. Must not be null. /// </param> /// <param name="settings">Optional <see cref="DomainCategoryServiceSettings"/>.</param> /// <returns>The created <see cref="DomainCategoryServiceClient"/>.</returns> internal static DomainCategoryServiceClient Create(grpccore::CallInvoker callInvoker, DomainCategoryServiceSettings settings = null) { gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker)); grpcinter::Interceptor interceptor = settings?.Interceptor; if (interceptor != null) { callInvoker = grpcinter::CallInvokerExtensions.Intercept(callInvoker, interceptor); } DomainCategoryService.DomainCategoryServiceClient grpcClient = new DomainCategoryService.DomainCategoryServiceClient(callInvoker); return(new DomainCategoryServiceClientImpl(grpcClient, settings)); }