<PackageReference Include="System.ClientModel" Version="1.11.0" />
API Differences between 1.11.0 and 1.8.1
48 Additions
0 Removals
System.ClientModel
-
public abstract class AsyncCollectionResult<T> : AsyncCollectionResult, IAsyncEnumerable<T>
-
public abstract class CollectionResult<T> : CollectionResult, IEnumerable<T>, IEnumerable
-
public static class ConfigurationExtensions
- public static IClientBuilder AddClient<TClient, TSettings>(this IHostApplicationBuilder host, string sectionName) where TSettings : ClientSettings
- public static IClientBuilder AddClient<TClient, TSettings>(this IHostApplicationBuilder host, string sectionName, Action<TSettings> configureSettings) where TSettings : ClientSettings
- public static IServiceCollection AddCredentialResolver<T>(this IServiceCollection services) where T : CredentialResolver
- public static IHostApplicationBuilder AddCredentialResolver<T>(this IHostApplicationBuilder builder) where T : CredentialResolver
- public static IClientBuilder AddKeyedClient<TClient, TSettings>(this IHostApplicationBuilder host, string key, string sectionName) where TSettings : ClientSettings
- public static IClientBuilder AddKeyedClient<TClient, TSettings>(this IHostApplicationBuilder host, string key, string sectionName, Action<TSettings> configureSettings) where TSettings : ClientSettings
- public static T GetClientSettings<T>(this IConfiguration configuration, string sectionName) where T : ClientSettings
- public static T GetClientSettings<T>(this IConfiguration configuration, string sectionName, CredentialResolver[] resolvers) where T : ClientSettings
- public static T GetClientSettings<T>(this IConfiguration configuration, string sectionName, IEnumerable<CredentialResolver> resolvers, Action<IConfigurationSection> configureOverrides) where T : ClientSettings
- public static AuthenticationTokenProvider GetCredential(this IConfiguration configuration, string sectionName)
- public static AuthenticationTokenProvider GetCredential(this IConfiguration configuration, string sectionName, CredentialResolver[] resolvers)
- public static AuthenticationTokenProvider GetCredential(this IConfiguration configuration, string sectionName, IEnumerable<CredentialResolver> resolvers, Action<IConfigurationSection> configureOverrides)
System.ClientModel.Primitives