public abstract void InternalPopulateConfiguration(CallCredentialsConfiguratorBase configurator, object? state)
Populates call credentials configurator with this instance's configuration.
End users never need to invoke this method as it is part of internal implementation.
[[["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-09-04 UTC."],[[["\u003cp\u003e\u003ccode\u003eCallCredentials\u003c/code\u003e is an abstract class used on the client-side to provide per-call authorization for gRPC calls.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eCompose\u003c/code\u003e method allows for combining multiple \u003ccode\u003eCallCredentials\u003c/code\u003e objects into a single composite object.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eFromInterceptor\u003c/code\u003e method creates a new \u003ccode\u003eCallCredentials\u003c/code\u003e instance from an \u003ccode\u003eAsyncAuthInterceptor\u003c/code\u003e that can attach metadata to outgoing calls.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eInternalPopulateConfiguration\u003c/code\u003e method populates a \u003ccode\u003eCallCredentialsConfiguratorBase\u003c/code\u003e with the current instance's configuration, but it is for internal use and not meant for end users.\u003c/p\u003e\n"]]],[],null,["# Class CallCredentials (2.66.0)\n\nVersion latestkeyboard_arrow_down\n\n- [2.66.0 (latest)](/dotnet/docs/reference/Grpc.Core/latest/Grpc.Core.CallCredentials)\n- [2.63.0](/dotnet/docs/reference/Grpc.Core/2.63.0/Grpc.Core.CallCredentials)\n- [2.48.0](/dotnet/docs/reference/Grpc.Core/2.48.0/Grpc.Core.CallCredentials) \n\n public abstract class CallCredentials\n\nClient-side call credentials. Provide authorization with per-call granularity. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e CallCredentials \n\nInherited Members\n-----------------\n\n[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)) \n[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)) \n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone) \n[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Grpc.Core](/dotnet/docs/reference/Grpc.Core/latest/Grpc.Core)\n\nAssembly\n--------\n\nGrpc.Core.Api.dll\n\nMethods\n-------\n\n### Compose(params CallCredentials\\[\\])\n\n public static CallCredentials Compose(params CallCredentials[] credentials)\n\nComposes multiple `CallCredentials` objects into\na single `CallCredentials` object.\n\n### FromInterceptor(AsyncAuthInterceptor)\n\n public static CallCredentials FromInterceptor(AsyncAuthInterceptor interceptor)\n\nCreates a new instance of `CallCredentials` class from an\ninterceptor that can attach metadata to outgoing calls.\n\n### InternalPopulateConfiguration(CallCredentialsConfiguratorBase, object?)\n\n public abstract void InternalPopulateConfiguration(CallCredentialsConfiguratorBase configurator, object? state)\n\nPopulates call credentials configurator with this instance's configuration.\nEnd users never need to invoke this method as it is part of internal implementation."]]