@tsonic/microsoft-extensions 10.0.34 → 10.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__internal/extensions/index.d.ts +533 -653
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
// Generated by tsbindgen - Extension Method
|
|
2
|
-
// This file contains
|
|
3
|
-
//
|
|
1
|
+
// Generated by tsbindgen - Extension Method Tables
|
|
2
|
+
// This file contains method-table interfaces for C# extension methods.
|
|
3
|
+
// Tables are scoped by declaring namespace (C# using semantics).
|
|
4
4
|
// For each namespace with extension methods, this file exports an ExtensionMethods_<Namespace> helper.
|
|
5
5
|
|
|
6
6
|
// Import namespace modules for cross-namespace type references
|
|
@@ -52,793 +52,673 @@ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
|
52
52
|
// Import unsafe type markers
|
|
53
53
|
import type { ptr } from '@tsonic/core/types.js';
|
|
54
54
|
|
|
55
|
-
export interface __Ext_Microsoft_Extensions_Caching_Distributed_DistributedCacheEntryOptions {
|
|
56
|
-
SetAbsoluteExpiration(relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
57
|
-
SetAbsoluteExpiration(absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
58
|
-
SetSlidingExpiration(offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export interface __Ext_Microsoft_Extensions_Caching_Distributed_IDistributedCache {
|
|
62
|
-
Set(key: string, value: byte[]): Rewrap<this, void>;
|
|
63
|
-
SetAsync(key: string, value: byte[], token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
64
|
-
SetString(key: string, value: string): Rewrap<this, void>;
|
|
65
|
-
SetString(key: string, value: string, options: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions): Rewrap<this, void>;
|
|
66
|
-
SetStringAsync(key: string, value: string, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
67
|
-
SetStringAsync(key: string, value: string, options: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
68
|
-
GetString(key: string): Rewrap<this, string | undefined>;
|
|
69
|
-
GetStringAsync(key: string, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export interface __Ext_Microsoft_Extensions_Caching_Memory_ICacheEntry {
|
|
73
|
-
SetPriority(priority: Microsoft_Extensions_Caching_Memory.CacheItemPriority): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
74
|
-
AddExpirationToken(expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
75
|
-
SetAbsoluteExpiration(relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
76
|
-
SetAbsoluteExpiration(absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
77
|
-
SetSlidingExpiration(offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
78
|
-
RegisterPostEvictionCallback(callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
79
|
-
RegisterPostEvictionCallback(callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate, state: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
80
|
-
SetValue(value: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
81
|
-
SetSize(size: long): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
82
|
-
SetOptions(options: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export interface __Ext_Microsoft_Extensions_Caching_Memory_IMemoryCache {
|
|
86
|
-
Get(key: unknown): Rewrap<this, unknown | undefined>;
|
|
87
|
-
Get<TItem>(key: unknown): Rewrap<this, TItem | undefined>;
|
|
88
|
-
TryGetValue<TItem>(key: unknown, value: TItem): Rewrap<this, boolean>;
|
|
89
|
-
Set<TItem>(key: unknown, value: TItem): Rewrap<this, TItem>;
|
|
90
|
-
Set<TItem>(key: unknown, value: TItem, absoluteExpiration: System.DateTimeOffset): Rewrap<this, TItem>;
|
|
91
|
-
Set<TItem>(key: unknown, value: TItem, absoluteExpirationRelativeToNow: System.TimeSpan): Rewrap<this, TItem>;
|
|
92
|
-
Set<TItem>(key: unknown, value: TItem, expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, TItem>;
|
|
93
|
-
Set<TItem>(key: unknown, value: TItem, options: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, TItem>;
|
|
94
|
-
GetOrCreate<TItem>(key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, TItem>): Rewrap<this, TItem | undefined>;
|
|
95
|
-
GetOrCreate<TItem>(key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, TItem>, createOptions: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, TItem | undefined>;
|
|
96
|
-
GetOrCreateAsync<TItem>(key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, System_Threading_Tasks.Task_1<TItem>>): Rewrap<this, System_Threading_Tasks.Task_1<TItem | undefined>>;
|
|
97
|
-
GetOrCreateAsync<TItem>(key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, System_Threading_Tasks.Task_1<TItem>>, createOptions: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, System_Threading_Tasks.Task_1<TItem | undefined>>;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
export interface __Ext_Microsoft_Extensions_Caching_Memory_MemoryCacheEntryOptions {
|
|
101
|
-
SetPriority(priority: Microsoft_Extensions_Caching_Memory.CacheItemPriority): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
102
|
-
SetSize(size: long): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
103
|
-
AddExpirationToken(expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
104
|
-
SetAbsoluteExpiration(relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
105
|
-
SetAbsoluteExpiration(absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
106
|
-
SetSlidingExpiration(offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
107
|
-
RegisterPostEvictionCallback(callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
108
|
-
RegisterPostEvictionCallback(callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate, state: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export interface __Ext_Microsoft_Extensions_Configuration_IConfiguration {
|
|
112
|
-
GetConnectionString(name: string): Rewrap<this, string | undefined>;
|
|
113
|
-
AsEnumerable(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>>;
|
|
114
|
-
AsEnumerable(makePathsRelative: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>>;
|
|
115
|
-
GetRequiredSection(key: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationSection>;
|
|
116
|
-
Get<T>(): Rewrap<this, T | undefined>;
|
|
117
|
-
Get<T>(configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, T | undefined>;
|
|
118
|
-
Get(type: System.Type): Rewrap<this, unknown | undefined>;
|
|
119
|
-
Get(type: System.Type, configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, unknown | undefined>;
|
|
120
|
-
Bind(key: string, instance: unknown): Rewrap<this, void>;
|
|
121
|
-
Bind(instance: unknown): Rewrap<this, void>;
|
|
122
|
-
Bind(instance: unknown, configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, void>;
|
|
123
|
-
GetValue<T>(key: string): Rewrap<this, T | undefined>;
|
|
124
|
-
GetValue<T>(key: string, defaultValue: T): Rewrap<this, T | undefined>;
|
|
125
|
-
GetValue(type: System.Type, key: string): Rewrap<this, unknown | undefined>;
|
|
126
|
-
GetValue(type: System.Type, key: string, defaultValue: unknown): Rewrap<this, unknown | undefined>;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export interface __Ext_Microsoft_Extensions_Configuration_IConfigurationBuilder {
|
|
130
|
-
AddConfiguration(config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
131
|
-
AddConfiguration(config: Microsoft_Extensions_Configuration.IConfiguration, shouldDisposeConfiguration: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
132
|
-
AddInMemoryCollection(): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
133
|
-
AddInMemoryCollection(initialData: System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
134
|
-
Add<TSource>(configureSource: System.Action_1<TSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
135
|
-
AddCommandLine(args: string[]): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
136
|
-
AddCommandLine(args: string[], switchMappings: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
137
|
-
AddCommandLine(configureSource: System.Action_1<Microsoft_Extensions_Configuration_CommandLine.CommandLineConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
138
|
-
AddEnvironmentVariables(): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
139
|
-
AddEnvironmentVariables(prefix: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
140
|
-
AddEnvironmentVariables(configureSource: System.Action_1<Microsoft_Extensions_Configuration_EnvironmentVariables.EnvironmentVariablesConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
141
|
-
SetFileProvider(fileProvider: Microsoft_Extensions_FileProviders.IFileProvider): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
142
|
-
GetFileProvider(): Rewrap<this, Microsoft_Extensions_FileProviders.IFileProvider>;
|
|
143
|
-
SetBasePath(basePath: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
144
|
-
SetFileLoadExceptionHandler(handler: System.Action_1<Microsoft_Extensions_Configuration.FileLoadExceptionContext>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
145
|
-
GetFileLoadExceptionHandler(): Rewrap<this, System.Action_1<Microsoft_Extensions_Configuration.FileLoadExceptionContext> | undefined>;
|
|
146
|
-
AddIniFile(path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
147
|
-
AddIniFile(path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
148
|
-
AddIniFile(path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
149
|
-
AddIniFile(provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
150
|
-
AddIniFile(configureSource: System.Action_1<Microsoft_Extensions_Configuration_Ini.IniConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
151
|
-
AddIniStream(stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
152
|
-
AddJsonFile(path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
153
|
-
AddJsonFile(path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
154
|
-
AddJsonFile(path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
155
|
-
AddJsonFile(provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
156
|
-
AddJsonFile(configureSource: System.Action_1<Microsoft_Extensions_Configuration_Json.JsonConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
157
|
-
AddJsonStream(stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
158
|
-
AddKeyPerFile(directoryPath: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
159
|
-
AddKeyPerFile(directoryPath: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
160
|
-
AddKeyPerFile(directoryPath: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
161
|
-
AddKeyPerFile(configureSource: System.Action_1<Microsoft_Extensions_Configuration_KeyPerFile.KeyPerFileConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
162
|
-
AddUserSecrets<T>(): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
163
|
-
AddUserSecrets<T>(optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
164
|
-
AddUserSecrets<T>(optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
165
|
-
AddUserSecrets(assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
166
|
-
AddUserSecrets(assembly: System_Reflection.Assembly, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
167
|
-
AddUserSecrets(assembly: System_Reflection.Assembly, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
168
|
-
AddUserSecrets(userSecretsId: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
169
|
-
AddUserSecrets(userSecretsId: string, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
170
|
-
AddXmlFile(path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
171
|
-
AddXmlFile(path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
172
|
-
AddXmlFile(path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
173
|
-
AddXmlFile(provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
174
|
-
AddXmlFile(configureSource: System.Action_1<Microsoft_Extensions_Configuration_Xml.XmlConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
175
|
-
AddXmlStream(stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
export interface __Ext_Microsoft_Extensions_Configuration_IConfigurationRoot {
|
|
179
|
-
GetDebugView(): Rewrap<this, string>;
|
|
180
|
-
GetDebugView(processValue: System.Func_2<Microsoft_Extensions_Configuration.ConfigurationDebugViewContext, System_Internal.String>): Rewrap<this, string>;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
export interface __Ext_Microsoft_Extensions_Configuration_IConfigurationSection {
|
|
184
|
-
Exists(): Rewrap<this, boolean>;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IHealthChecksBuilder {
|
|
188
|
-
AddCheck(name: string, instance: Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
189
|
-
AddCheck(name: string, instance: Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck, failureStatus?: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
190
|
-
AddCheck<T>(name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
191
|
-
AddCheck<T>(name: string, failureStatus?: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
192
|
-
AddTypeActivatedCheck<T>(name: string, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
193
|
-
AddTypeActivatedCheck<T>(name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
194
|
-
AddTypeActivatedCheck<T>(name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
195
|
-
AddTypeActivatedCheck<T>(name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
196
|
-
AddCheck(name: string, check: System.Func_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
197
|
-
AddCheck(name: string, check: System.Func_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
198
|
-
AddCheck(name: string, check: System.Func_2<System_Threading.CancellationToken, Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
199
|
-
AddCheck(name: string, check: System.Func_2<System_Threading.CancellationToken, Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
200
|
-
AddAsyncCheck(name: string, check: System.Func_1<System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
201
|
-
AddAsyncCheck(name: string, check: System.Func_1<System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
202
|
-
AddAsyncCheck(name: string, check: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
203
|
-
AddAsyncCheck(name: string, check: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IHttpClientBuilder {
|
|
207
|
-
ConfigureHttpClient(configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
208
|
-
ConfigureHttpClient(configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
209
|
-
AddHttpMessageHandler(configureHandler: System.Func_1<System_Net_Http.DelegatingHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
210
|
-
AddHttpMessageHandler(configureHandler: System.Func_2<System.IServiceProvider, System_Net_Http.DelegatingHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
211
|
-
AddHttpMessageHandler<THandler>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
212
|
-
ConfigurePrimaryHttpMessageHandler(configureHandler: System.Func_1<System_Net_Http.HttpMessageHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
213
|
-
ConfigurePrimaryHttpMessageHandler(configureHandler: System.Func_2<System.IServiceProvider, System_Net_Http.HttpMessageHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
214
|
-
ConfigurePrimaryHttpMessageHandler<THandler>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
215
|
-
ConfigurePrimaryHttpMessageHandler(configureHandler: System.Action_2<System_Net_Http.HttpMessageHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
216
|
-
ConfigureHttpMessageHandlerBuilder(configureBuilder: System.Action_1<Microsoft_Extensions_Http.HttpMessageHandlerBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
217
|
-
UseSocketsHttpHandler(configureHandler?: System.Action_2<System_Net_Http.SocketsHttpHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
218
|
-
UseSocketsHttpHandler(configureBuilder: System.Action_1<Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
219
|
-
AddTypedClient<TClient>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
220
|
-
AddTypedClient<TClient>(factory: System.Func_2<System_Net_Http.HttpClient, TClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
221
|
-
AddTypedClient<TClient>(factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
222
|
-
RedactLoggedHeaders(shouldRedactHeaderValue: System.Func_2<System_Internal.String, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
223
|
-
RedactLoggedHeaders(redactedLoggedHeaderNames: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
224
|
-
SetHandlerLifetime(handlerLifetime: System.TimeSpan): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
225
|
-
ConfigureAdditionalHttpMessageHandlers(configureAdditionalHandlers: System.Action_2<System_Collections_Generic.IList_1<System_Net_Http.DelegatingHandler>, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
226
|
-
AddAsKeyed(lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
227
|
-
RemoveAsKeyed(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
228
|
-
AddLogger(httpClientLoggerFactory: System.Func_2<System.IServiceProvider, Microsoft_Extensions_Http_Logging.IHttpClientLogger>, wrapHandlersPipeline?: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
229
|
-
AddLogger<TLogger>(wrapHandlersPipeline?: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
230
|
-
RemoveAllLoggers(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
231
|
-
AddDefaultLogger(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
|
|
235
|
-
AddMemoryCache(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
236
|
-
AddMemoryCache(setupAction: System.Action_1<Microsoft_Extensions_Caching_Memory.MemoryCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
237
|
-
AddDistributedMemoryCache(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
238
|
-
AddDistributedMemoryCache(setupAction: System.Action_1<Microsoft_Extensions_Caching_Memory.MemoryDistributedCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
239
|
-
BuildServiceProvider(): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
240
|
-
BuildServiceProvider(validateScopes: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
241
|
-
BuildServiceProvider(options: Microsoft_Extensions_DependencyInjection.ServiceProviderOptions): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
242
|
-
AddTransient(serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
243
|
-
AddTransient(serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
244
|
-
AddTransient<TService, TImplementation>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
245
|
-
AddTransient(serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
246
|
-
AddTransient<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
247
|
-
AddScoped(serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
248
|
-
AddScoped(serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
249
|
-
AddScoped<TService, TImplementation>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
250
|
-
AddScoped(serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
251
|
-
AddScoped<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
252
|
-
AddSingleton(serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
253
|
-
AddSingleton(serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
254
|
-
AddSingleton<TService, TImplementation>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
255
|
-
AddSingleton(serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
256
|
-
AddSingleton<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
257
|
-
AddSingleton(serviceType: System.Type, implementationInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
258
|
-
AddSingleton<TService>(implementationInstance: TService): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
259
|
-
AddKeyedTransient(serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
260
|
-
AddKeyedTransient(serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
261
|
-
AddKeyedTransient<TService, TImplementation>(serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
262
|
-
AddKeyedTransient(serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
263
|
-
AddKeyedTransient<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
264
|
-
AddKeyedScoped(serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
265
|
-
AddKeyedScoped(serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
266
|
-
AddKeyedScoped<TService, TImplementation>(serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
267
|
-
AddKeyedScoped(serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
268
|
-
AddKeyedScoped<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
269
|
-
AddKeyedSingleton(serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
270
|
-
AddKeyedSingleton(serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
271
|
-
AddKeyedSingleton<TService, TImplementation>(serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
272
|
-
AddKeyedSingleton(serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
273
|
-
AddKeyedSingleton<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
274
|
-
AddKeyedSingleton(serviceType: System.Type, serviceKey: unknown, implementationInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
275
|
-
AddKeyedSingleton<TService>(serviceKey: unknown, implementationInstance: TService): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
276
|
-
AddMetrics(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
277
|
-
AddMetrics(configure: System.Action_1<Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
278
|
-
AddHealthChecks(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
279
|
-
AddHostedService<THostedService>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
280
|
-
AddHostedService<THostedService>(implementationFactory: System.Func_2<System.IServiceProvider, THostedService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
281
|
-
AddHttpClient(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
282
|
-
ConfigureHttpClientDefaults(configure: System.Action_1<Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
283
|
-
AddHttpClient(name: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
284
|
-
AddHttpClient(name: string, configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
285
|
-
AddHttpClient(name: string, configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
286
|
-
AddHttpClient<TClient>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
287
|
-
AddHttpClient<TClient>(configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
288
|
-
AddHttpClient<TClient>(configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
289
|
-
AddHttpClient<TClient, TImplementation>(factory: System.Func_2<System_Net_Http.HttpClient, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
290
|
-
AddHttpClient<TClient, TImplementation>(name: string, factory: System.Func_2<System_Net_Http.HttpClient, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
291
|
-
AddHttpClient<TClient, TImplementation>(factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
292
|
-
AddHttpClient<TClient, TImplementation>(name: string, factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
293
|
-
AddLocalization(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
294
|
-
AddLocalization(setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
295
|
-
AddLogging(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
296
|
-
AddLogging(configure: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
297
|
-
AddOptions(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
298
|
-
AddOptionsWithValidateOnStart<TOptions>(name?: string): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
299
|
-
Configure<TOptions>(configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
300
|
-
Configure<TOptions>(name: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
301
|
-
ConfigureAll<TOptions>(configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
302
|
-
PostConfigure<TOptions>(configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
303
|
-
PostConfigure<TOptions>(name: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
304
|
-
PostConfigureAll<TOptions>(configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
305
|
-
ConfigureOptions<TConfigureOptions>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
306
|
-
ConfigureOptions(configureType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
307
|
-
ConfigureOptions(configureInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
308
|
-
AddOptions<TOptions>(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
309
|
-
AddOptions<TOptions>(name: string): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
310
|
-
Configure<TOptions>(config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
311
|
-
Configure<TOptions>(name: string, config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
312
|
-
Configure<TOptions>(config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
313
|
-
Configure<TOptions>(name: string, config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
314
|
-
AddValidation(configureOptions?: System.Action_1<Microsoft_Extensions_Validation.ValidationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
315
|
-
AddWebEncoders(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
316
|
-
AddWebEncoders(setupAction: System.Action_1<Microsoft_Extensions_WebEncoders.WebEncoderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceScopeFactory {
|
|
320
|
-
CreateAsyncScope(): Rewrap<this, Microsoft_Extensions_DependencyInjection.AsyncServiceScope>;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_ISocketsHttpHandlerBuilder {
|
|
324
|
-
Configure(configure: System.Action_2<System_Net_Http.SocketsHttpHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>;
|
|
325
|
-
Configure(configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_OptionsBuilder_1<TOptions> {
|
|
329
|
-
ValidateOnStart(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
330
|
-
Bind(config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
331
|
-
Bind(config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
332
|
-
BindConfiguration(configSectionPath: string, configureBinder?: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
333
|
-
ValidateDataAnnotations(): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceProvider {
|
|
337
|
-
GetKeyedService<T>(serviceKey: unknown): Rewrap<this, T | undefined>;
|
|
338
|
-
GetKeyedService(serviceType: System.Type, serviceKey: unknown): Rewrap<this, unknown | undefined>;
|
|
339
|
-
GetRequiredKeyedService(serviceType: System.Type, serviceKey: unknown): Rewrap<this, unknown>;
|
|
340
|
-
GetRequiredKeyedService<T>(serviceKey: unknown): Rewrap<this, T>;
|
|
341
|
-
GetKeyedServices<T>(serviceKey: unknown): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
342
|
-
GetKeyedServices(serviceType: System.Type, serviceKey: unknown): Rewrap<this, System_Collections_Generic.IEnumerable_1<unknown | undefined>>;
|
|
343
|
-
GetService<T>(): Rewrap<this, T | undefined>;
|
|
344
|
-
GetRequiredService(serviceType: System.Type): Rewrap<this, unknown>;
|
|
345
|
-
GetRequiredService<T>(): Rewrap<this, T>;
|
|
346
|
-
GetServices<T>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
347
|
-
GetServices(serviceType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<unknown | undefined>>;
|
|
348
|
-
CreateScope(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceScope>;
|
|
349
|
-
CreateAsyncScope(): Rewrap<this, Microsoft_Extensions_DependencyInjection.AsyncServiceScope>;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
export interface __Ext_Microsoft_Extensions_DependencyInjection_Extensions_IServiceCollection {
|
|
353
|
-
Add(descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
354
|
-
Add(descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
355
|
-
TryAdd(descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, void>;
|
|
356
|
-
TryAdd(descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, void>;
|
|
357
|
-
TryAddTransient(service: System.Type): Rewrap<this, void>;
|
|
358
|
-
TryAddTransient(service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
359
|
-
TryAddTransient(service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
360
|
-
TryAddTransient<TService>(): Rewrap<this, void>;
|
|
361
|
-
TryAddTransient<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
362
|
-
TryAddScoped(service: System.Type): Rewrap<this, void>;
|
|
363
|
-
TryAddScoped(service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
364
|
-
TryAddScoped(service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
365
|
-
TryAddScoped<TService>(): Rewrap<this, void>;
|
|
366
|
-
TryAddScoped<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
367
|
-
TryAddSingleton(service: System.Type): Rewrap<this, void>;
|
|
368
|
-
TryAddSingleton(service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
369
|
-
TryAddSingleton(service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
370
|
-
TryAddSingleton<TService>(): Rewrap<this, void>;
|
|
371
|
-
TryAddSingleton<TService>(instance: TService): Rewrap<this, void>;
|
|
372
|
-
TryAddSingleton<TService>(implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
373
|
-
TryAddEnumerable(descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, void>;
|
|
374
|
-
TryAddEnumerable(descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, void>;
|
|
375
|
-
Replace(descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
376
|
-
RemoveAll<T>(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
377
|
-
RemoveAll(serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
378
|
-
TryAddKeyedTransient(service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
379
|
-
TryAddKeyedTransient(service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
380
|
-
TryAddKeyedTransient(service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
381
|
-
TryAddKeyedTransient<TService>(serviceKey: unknown): Rewrap<this, void>;
|
|
382
|
-
TryAddKeyedTransient<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
383
|
-
TryAddKeyedScoped(service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
384
|
-
TryAddKeyedScoped(service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
385
|
-
TryAddKeyedScoped(service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
386
|
-
TryAddKeyedScoped<TService>(serviceKey: unknown): Rewrap<this, void>;
|
|
387
|
-
TryAddKeyedScoped<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
388
|
-
TryAddKeyedSingleton(service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
389
|
-
TryAddKeyedSingleton(service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
390
|
-
TryAddKeyedSingleton(service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
391
|
-
TryAddKeyedSingleton<TService>(serviceKey: unknown): Rewrap<this, void>;
|
|
392
|
-
TryAddKeyedSingleton<TService>(serviceKey: unknown, instance: TService): Rewrap<this, void>;
|
|
393
|
-
TryAddKeyedSingleton<TService>(serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
394
|
-
RemoveAllKeyed<T>(serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
395
|
-
RemoveAllKeyed(serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
export interface __Ext_Microsoft_Extensions_Diagnostics_Metrics_IMetricsBuilder {
|
|
399
|
-
AddConfiguration(configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
400
|
-
AddDebugConsole(): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
401
|
-
AddListener<T>(): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
402
|
-
AddListener(listener: Microsoft_Extensions_Diagnostics_Metrics.IMetricsListener): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
403
|
-
ClearListeners(): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
404
|
-
EnableMetrics(meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
405
|
-
EnableMetrics(meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
406
|
-
DisableMetrics(meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
407
|
-
DisableMetrics(meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
export interface __Ext_Microsoft_Extensions_Diagnostics_Metrics_MetricsOptions {
|
|
411
|
-
EnableMetrics(meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
412
|
-
EnableMetrics(meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
413
|
-
DisableMetrics(meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
414
|
-
DisableMetrics(meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
export interface __Ext_Microsoft_Extensions_FileSystemGlobbing_Matcher {
|
|
418
|
-
AddExcludePatterns(...excludePatternsGroups: System_Collections_Generic.IEnumerable_1<System_Internal.String>[]): Rewrap<this, void>;
|
|
419
|
-
AddIncludePatterns(...includePatternsGroups: System_Collections_Generic.IEnumerable_1<System_Internal.String>[]): Rewrap<this, void>;
|
|
420
|
-
GetResultsInFullPath(directoryPath: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
421
|
-
Match(file: string): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
422
|
-
Match(rootDir: string, file: string): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
423
|
-
Match(files: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
424
|
-
Match(rootDir: string, files: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
export interface __Ext_Microsoft_Extensions_Hosting_IHost {
|
|
428
|
-
Start(): Rewrap<this, void>;
|
|
429
|
-
StopAsync(timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.Task>;
|
|
430
|
-
WaitForShutdown(): Rewrap<this, void>;
|
|
431
|
-
Run(): Rewrap<this, void>;
|
|
432
|
-
RunAsync(token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
433
|
-
WaitForShutdownAsync(token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
export interface __Ext_Microsoft_Extensions_Hosting_IHostBuilder {
|
|
437
|
-
UseEnvironment(environment: string): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
438
|
-
UseContentRoot(contentRoot: string): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
439
|
-
UseDefaultServiceProvider(configure: System.Action_1<Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
440
|
-
UseDefaultServiceProvider(configure: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
441
|
-
ConfigureLogging(configureLogging: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
442
|
-
ConfigureLogging(configureLogging: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
443
|
-
ConfigureHostOptions(configureOptions: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Hosting.HostOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
444
|
-
ConfigureHostOptions(configureOptions: System.Action_1<Microsoft_Extensions_Hosting.HostOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
445
|
-
ConfigureAppConfiguration(configureDelegate: System.Action_1<Microsoft_Extensions_Configuration.IConfigurationBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
446
|
-
ConfigureServices(configureDelegate: System.Action_1<Microsoft_Extensions_DependencyInjection.IServiceCollection>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
447
|
-
ConfigureContainer<TContainerBuilder>(configureDelegate: System.Action_1<TContainerBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
448
|
-
ConfigureDefaults(args: string[]): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
449
|
-
UseConsoleLifetime(): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
450
|
-
UseConsoleLifetime(configureOptions: System.Action_1<Microsoft_Extensions_Hosting.ConsoleLifetimeOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
451
|
-
RunConsoleAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
452
|
-
RunConsoleAsync(configureOptions: System.Action_1<Microsoft_Extensions_Hosting.ConsoleLifetimeOptions>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
453
|
-
ConfigureMetrics(configureMetrics: System.Action_1<Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
454
|
-
ConfigureMetrics(configureMetrics: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
455
|
-
Start(): Rewrap<this, Microsoft_Extensions_Hosting.IHost>;
|
|
456
|
-
StartAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_Extensions_Hosting.IHost>>;
|
|
457
|
-
}
|
|
458
|
-
|
|
459
|
-
export interface __Ext_Microsoft_Extensions_Hosting_IHostEnvironment {
|
|
460
|
-
IsDevelopment(): Rewrap<this, boolean>;
|
|
461
|
-
IsStaging(): Rewrap<this, boolean>;
|
|
462
|
-
IsProduction(): Rewrap<this, boolean>;
|
|
463
|
-
IsEnvironment(environmentName: string): Rewrap<this, boolean>;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
export interface __Ext_Microsoft_Extensions_Hosting_IHostingEnvironment {
|
|
467
|
-
IsDevelopment(): Rewrap<this, boolean>;
|
|
468
|
-
IsStaging(): Rewrap<this, boolean>;
|
|
469
|
-
IsProduction(): Rewrap<this, boolean>;
|
|
470
|
-
IsEnvironment(environmentName: string): Rewrap<this, boolean>;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
export interface __Ext_Microsoft_Extensions_Localization_IStringLocalizer {
|
|
474
|
-
GetString(name: string): Rewrap<this, Microsoft_Extensions_Localization.LocalizedString>;
|
|
475
|
-
GetString(name: string, ...arguments: unknown[]): Rewrap<this, Microsoft_Extensions_Localization.LocalizedString>;
|
|
476
|
-
GetAllStrings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_Localization.LocalizedString>>;
|
|
477
|
-
}
|
|
478
|
-
|
|
479
|
-
export interface __Ext_Microsoft_Extensions_Logging_ILogger {
|
|
480
|
-
LogDebug(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
481
|
-
LogDebug(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
482
|
-
LogDebug(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
483
|
-
LogDebug(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
484
|
-
LogTrace(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
485
|
-
LogTrace(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
486
|
-
LogTrace(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
487
|
-
LogTrace(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
488
|
-
LogInformation(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
489
|
-
LogInformation(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
490
|
-
LogInformation(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
491
|
-
LogInformation(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
492
|
-
LogWarning(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
493
|
-
LogWarning(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
494
|
-
LogWarning(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
495
|
-
LogWarning(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
496
|
-
LogError(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
497
|
-
LogError(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
498
|
-
LogError(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
499
|
-
LogError(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
500
|
-
LogCritical(eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
501
|
-
LogCritical(eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
502
|
-
LogCritical(exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
503
|
-
LogCritical(message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
504
|
-
Log(logLevel: Microsoft_Extensions_Logging.LogLevel, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
505
|
-
Log(logLevel: Microsoft_Extensions_Logging.LogLevel, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
506
|
-
Log(logLevel: Microsoft_Extensions_Logging.LogLevel, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
507
|
-
Log(logLevel: Microsoft_Extensions_Logging.LogLevel, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
508
|
-
BeginScope(messageFormat: string, ...args: unknown[]): Rewrap<this, System.IDisposable | undefined>;
|
|
509
|
-
}
|
|
510
|
-
|
|
511
|
-
export interface __Ext_Microsoft_Extensions_Logging_ILoggerFactory {
|
|
512
|
-
CreateLogger<T>(): Rewrap<this, Microsoft_Extensions_Logging.ILogger_1<T>>;
|
|
513
|
-
CreateLogger(type: System.Type): Rewrap<this, Microsoft_Extensions_Logging.ILogger>;
|
|
514
|
-
AddConsole(configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
515
|
-
AddConsole(settings: Microsoft_Extensions_Logging_Console.IConsoleLoggerSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
516
|
-
AddConsole(minLevel: Microsoft_Extensions_Logging.LogLevel, includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
517
|
-
AddConsole(minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
518
|
-
AddConsole(includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
519
|
-
AddConsole(filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>, includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
520
|
-
AddConsole(filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
521
|
-
AddConsole(): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
522
|
-
AddDebug(minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
523
|
-
AddDebug(filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
524
|
-
AddDebug(): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
525
|
-
AddEventLog(settings: Microsoft_Extensions_Logging_EventLog.EventLogSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
526
|
-
AddEventLog(minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
527
|
-
AddEventLog(): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
528
|
-
AddEventSourceLogger(): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
529
|
-
AddTraceSource(sourceSwitch: System_Diagnostics.SourceSwitch, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
530
|
-
AddTraceSource(sourceSwitch: System_Diagnostics.SourceSwitch): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
531
|
-
AddTraceSource(switchName: string, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
532
|
-
AddTraceSource(switchName: string): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
export interface __Ext_Microsoft_Extensions_Logging_ILoggingBuilder {
|
|
536
|
-
AddFilter(filter: System.Func_4<System_Internal.String, System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
537
|
-
AddFilter(categoryLevelFilter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
538
|
-
AddFilter(levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
539
|
-
AddFilter(category: string, level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
540
|
-
AddFilter(category: string, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
541
|
-
SetMinimumLevel(level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
542
|
-
AddProvider(provider: Microsoft_Extensions_Logging.ILoggerProvider): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
543
|
-
ClearProviders(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
544
|
-
Configure(action: System.Action_1<Microsoft_Extensions_Logging.LoggerFactoryOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
545
|
-
AddConfiguration(configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
546
|
-
AddConsole(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
547
|
-
AddConsole(configure: System.Action_1<Microsoft_Extensions_Logging_Console.ConsoleLoggerOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
548
|
-
AddSimpleConsole(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
549
|
-
AddSimpleConsole(configure: System.Action_1<Microsoft_Extensions_Logging_Console.SimpleConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
550
|
-
AddJsonConsole(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
551
|
-
AddJsonConsole(configure: System.Action_1<Microsoft_Extensions_Logging_Console.JsonConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
552
|
-
AddSystemdConsole(configure: System.Action_1<Microsoft_Extensions_Logging_Console.ConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
553
|
-
AddSystemdConsole(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
554
|
-
AddConsoleFormatter<TFormatter, TOptions>(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
555
|
-
AddConsoleFormatter<TFormatter, TOptions>(configure: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
556
|
-
AddDebug(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
557
|
-
AddEventLog(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
558
|
-
AddEventLog(settings: Microsoft_Extensions_Logging_EventLog.EventLogSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
559
|
-
AddEventLog(configure: System.Action_1<Microsoft_Extensions_Logging_EventLog.EventLogSettings>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
560
|
-
AddEventSourceLogger(): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
561
|
-
AddTraceSource(switchName: string): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
562
|
-
AddTraceSource(switchName: string, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
563
|
-
AddTraceSource(sourceSwitch: System_Diagnostics.SourceSwitch): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
564
|
-
AddTraceSource(sourceSwitch: System_Diagnostics.SourceSwitch, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
export interface __Ext_Microsoft_Extensions_Logging_LoggerFilterOptions {
|
|
568
|
-
AddFilter(filter: System.Func_4<System_Internal.String, System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
569
|
-
AddFilter(categoryLevelFilter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
570
|
-
AddFilter(levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
571
|
-
AddFilter(category: string, level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
572
|
-
AddFilter(category: string, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
export interface __Ext_Microsoft_Extensions_Logging_Configuration_ILoggingBuilder {
|
|
576
|
-
AddConfiguration(): Rewrap<this, void>;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
export interface __Ext_Microsoft_Extensions_ObjectPool_ObjectPoolProvider {
|
|
580
|
-
CreateStringBuilderPool(): Rewrap<this, Microsoft_Extensions_ObjectPool.ObjectPool_1<System_Text.StringBuilder>>;
|
|
581
|
-
CreateStringBuilderPool(initialCapacity: int, maximumRetainedCapacity: int): Rewrap<this, Microsoft_Extensions_ObjectPool.ObjectPool_1<System_Text.StringBuilder>>;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
export interface __Ext_Microsoft_Extensions_Options_IOptionsMonitor_1<TOptions> {
|
|
585
|
-
OnChange(listener: System.Action_1<TOptions>): Rewrap<this, System.IDisposable | undefined>;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
export interface __Ext_Microsoft_Extensions_Primitives_StringBuilder {
|
|
589
|
-
Append(segment: Microsoft_Extensions_Primitives.StringSegment): Rewrap<this, System_Text.StringBuilder>;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
export interface __Ext_System_Net_Http_IHttpClientFactory {
|
|
593
|
-
CreateClient(): Rewrap<this, System_Net_Http.HttpClient>;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
export interface __Ext_System_Net_Http_IHttpMessageHandlerFactory {
|
|
597
|
-
CreateHandler(): Rewrap<this, System_Net_Http.HttpMessageHandler>;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
55
|
// Internal helper types for sticky extension scopes
|
|
601
56
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
602
57
|
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
603
58
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
604
59
|
|
|
605
|
-
//
|
|
606
|
-
|
|
607
|
-
(
|
|
608
|
-
|
|
609
|
-
)
|
|
60
|
+
// Extension method table for namespace: Microsoft.Extensions.Caching.Distributed
|
|
61
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Caching_Distributed {
|
|
62
|
+
GetString(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string): Rewrap<this, string | undefined>;
|
|
63
|
+
GetStringAsync(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<string | undefined>>;
|
|
64
|
+
Set(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: byte[]): Rewrap<this, void>;
|
|
65
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions, relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
66
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions, absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
67
|
+
SetAsync(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: byte[], token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
68
|
+
SetSlidingExpiration(this: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions, offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions>;
|
|
69
|
+
SetString(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: string): Rewrap<this, void>;
|
|
70
|
+
SetString(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: string, options: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions): Rewrap<this, void>;
|
|
71
|
+
SetStringAsync(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: string, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
72
|
+
SetStringAsync(this: Microsoft_Extensions_Caching_Distributed.IDistributedCache, key: string, value: string, options: Microsoft_Extensions_Caching_Distributed.DistributedCacheEntryOptions, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
73
|
+
}
|
|
610
74
|
|
|
75
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Caching.Distributed
|
|
611
76
|
interface __TsonicExtApplier_Microsoft_Extensions_Caching_Distributed {
|
|
612
77
|
__tsonic_shape: unknown;
|
|
613
|
-
__tsonic_type:
|
|
78
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Caching_Distributed;
|
|
614
79
|
}
|
|
615
80
|
|
|
616
81
|
export type ExtensionMethods_Microsoft_Extensions_Caching_Distributed<TShape> =
|
|
617
82
|
TShape extends null | undefined ? TShape
|
|
618
83
|
: TShape extends void ? void
|
|
619
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Caching.Distributed", __TsonicExtApplier_Microsoft_Extensions_Caching_Distributed> &
|
|
84
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Caching.Distributed", __TsonicExtApplier_Microsoft_Extensions_Caching_Distributed> & __TsonicExtMethods_Microsoft_Extensions_Caching_Distributed;
|
|
85
|
+
|
|
86
|
+
// Extension method table for namespace: Microsoft.Extensions.Caching.Memory
|
|
87
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Caching_Memory {
|
|
88
|
+
AddExpirationToken(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
89
|
+
AddExpirationToken(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
90
|
+
Get(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown): Rewrap<this, unknown | undefined>;
|
|
91
|
+
Get<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown): Rewrap<this, TItem | undefined>;
|
|
92
|
+
GetOrCreate<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, TItem>): Rewrap<this, TItem | undefined>;
|
|
93
|
+
GetOrCreate<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, TItem>, createOptions: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, TItem | undefined>;
|
|
94
|
+
GetOrCreateAsync<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, System_Threading_Tasks.Task_1<TItem>>): Rewrap<this, System_Threading_Tasks.Task_1<TItem | undefined>>;
|
|
95
|
+
GetOrCreateAsync<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, factory: System.Func_2<Microsoft_Extensions_Caching_Memory.ICacheEntry, System_Threading_Tasks.Task_1<TItem>>, createOptions: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, System_Threading_Tasks.Task_1<TItem | undefined>>;
|
|
96
|
+
RegisterPostEvictionCallback(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
97
|
+
RegisterPostEvictionCallback(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate, state: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
98
|
+
RegisterPostEvictionCallback(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
99
|
+
RegisterPostEvictionCallback(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, callback: Microsoft_Extensions_Caching_Memory.PostEvictionDelegate, state: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
100
|
+
Set<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem): Rewrap<this, TItem>;
|
|
101
|
+
Set<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem, absoluteExpiration: System.DateTimeOffset): Rewrap<this, TItem>;
|
|
102
|
+
Set<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem, absoluteExpirationRelativeToNow: System.TimeSpan): Rewrap<this, TItem>;
|
|
103
|
+
Set<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem, expirationToken: Microsoft_Extensions_Primitives.IChangeToken): Rewrap<this, TItem>;
|
|
104
|
+
Set<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem, options: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, TItem>;
|
|
105
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
106
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
107
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, relative: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
108
|
+
SetAbsoluteExpiration(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, absolute: System.DateTimeOffset): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
109
|
+
SetOptions(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, options: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
110
|
+
SetPriority(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, priority: Microsoft_Extensions_Caching_Memory.CacheItemPriority): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
111
|
+
SetPriority(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, priority: Microsoft_Extensions_Caching_Memory.CacheItemPriority): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
112
|
+
SetSize(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, size: long): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
113
|
+
SetSize(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, size: long): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
114
|
+
SetSlidingExpiration(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
115
|
+
SetSlidingExpiration(this: Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions, offset: System.TimeSpan): Rewrap<this, Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions>;
|
|
116
|
+
SetValue(this: Microsoft_Extensions_Caching_Memory.ICacheEntry, value: unknown): Rewrap<this, Microsoft_Extensions_Caching_Memory.ICacheEntry>;
|
|
117
|
+
TryGetValue<TItem>(this: Microsoft_Extensions_Caching_Memory.IMemoryCache, key: unknown, value: TItem): Rewrap<this, boolean>;
|
|
118
|
+
}
|
|
620
119
|
|
|
621
120
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Caching.Memory
|
|
622
|
-
type __TsonicExtSurface_Microsoft_Extensions_Caching_Memory<TShape> =
|
|
623
|
-
(
|
|
624
|
-
(TShape extends Microsoft_Extensions_Caching_Memory.ICacheEntry ? __Ext_Microsoft_Extensions_Caching_Memory_ICacheEntry : {}) & (TShape extends Microsoft_Extensions_Caching_Memory.IMemoryCache ? __Ext_Microsoft_Extensions_Caching_Memory_IMemoryCache : {}) & (TShape extends Microsoft_Extensions_Caching_Memory.MemoryCacheEntryOptions ? __Ext_Microsoft_Extensions_Caching_Memory_MemoryCacheEntryOptions : {})
|
|
625
|
-
);
|
|
626
|
-
|
|
627
121
|
interface __TsonicExtApplier_Microsoft_Extensions_Caching_Memory {
|
|
628
122
|
__tsonic_shape: unknown;
|
|
629
|
-
__tsonic_type:
|
|
123
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Caching_Memory;
|
|
630
124
|
}
|
|
631
125
|
|
|
632
126
|
export type ExtensionMethods_Microsoft_Extensions_Caching_Memory<TShape> =
|
|
633
127
|
TShape extends null | undefined ? TShape
|
|
634
128
|
: TShape extends void ? void
|
|
635
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Caching.Memory", __TsonicExtApplier_Microsoft_Extensions_Caching_Memory> &
|
|
129
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Caching.Memory", __TsonicExtApplier_Microsoft_Extensions_Caching_Memory> & __TsonicExtMethods_Microsoft_Extensions_Caching_Memory;
|
|
130
|
+
|
|
131
|
+
// Extension method table for namespace: Microsoft.Extensions.Configuration
|
|
132
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Configuration {
|
|
133
|
+
Add<TSource extends Microsoft_Extensions_Configuration.IConfigurationSource>(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<TSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
134
|
+
AddCommandLine(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, args: string[]): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
135
|
+
AddCommandLine(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, args: string[], switchMappings: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
136
|
+
AddCommandLine(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_CommandLine.CommandLineConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
137
|
+
AddConfiguration(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
138
|
+
AddConfiguration(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, config: Microsoft_Extensions_Configuration.IConfiguration, shouldDisposeConfiguration: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
139
|
+
AddEnvironmentVariables(this: Microsoft_Extensions_Configuration.IConfigurationBuilder): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
140
|
+
AddEnvironmentVariables(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, prefix: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
141
|
+
AddEnvironmentVariables(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_EnvironmentVariables.EnvironmentVariablesConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
142
|
+
AddInMemoryCollection(this: Microsoft_Extensions_Configuration.IConfigurationBuilder): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
143
|
+
AddInMemoryCollection(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, initialData: System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
144
|
+
AddIniFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
145
|
+
AddIniFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
146
|
+
AddIniFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
147
|
+
AddIniFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
148
|
+
AddIniFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_Ini.IniConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
149
|
+
AddIniStream(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
150
|
+
AddJsonFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
151
|
+
AddJsonFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
152
|
+
AddJsonFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
153
|
+
AddJsonFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
154
|
+
AddJsonFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_Json.JsonConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
155
|
+
AddJsonStream(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
156
|
+
AddKeyPerFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, directoryPath: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
157
|
+
AddKeyPerFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, directoryPath: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
158
|
+
AddKeyPerFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, directoryPath: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
159
|
+
AddKeyPerFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_KeyPerFile.KeyPerFileConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
160
|
+
AddUserSecrets<T>(this: Microsoft_Extensions_Configuration.IConfigurationBuilder): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
161
|
+
AddUserSecrets<T>(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
162
|
+
AddUserSecrets<T>(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
163
|
+
AddUserSecrets(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, assembly: System_Reflection.Assembly): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
164
|
+
AddUserSecrets(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, assembly: System_Reflection.Assembly, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
165
|
+
AddUserSecrets(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, assembly: System_Reflection.Assembly, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
166
|
+
AddUserSecrets(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, userSecretsId: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
167
|
+
AddUserSecrets(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, userSecretsId: string, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
168
|
+
AddXmlFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
169
|
+
AddXmlFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
170
|
+
AddXmlFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
171
|
+
AddXmlFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, provider: Microsoft_Extensions_FileProviders.IFileProvider, path: string, optional: boolean, reloadOnChange: boolean): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
172
|
+
AddXmlFile(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, configureSource: System.Action_1<Microsoft_Extensions_Configuration_Xml.XmlConfigurationSource>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
173
|
+
AddXmlStream(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, stream: System_IO.Stream): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
174
|
+
AsEnumerable(this: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>>;
|
|
175
|
+
AsEnumerable(this: Microsoft_Extensions_Configuration.IConfiguration, makePathsRelative: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<System_Internal.String, System_Internal.String>>>;
|
|
176
|
+
Bind(this: Microsoft_Extensions_Configuration.IConfiguration, key: string, instance: unknown): Rewrap<this, void>;
|
|
177
|
+
Bind(this: Microsoft_Extensions_Configuration.IConfiguration, instance: unknown): Rewrap<this, void>;
|
|
178
|
+
Bind(this: Microsoft_Extensions_Configuration.IConfiguration, instance: unknown, configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, void>;
|
|
179
|
+
Exists(this: Microsoft_Extensions_Configuration.IConfigurationSection): Rewrap<this, boolean>;
|
|
180
|
+
Get<T>(this: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, T | undefined>;
|
|
181
|
+
Get<T>(this: Microsoft_Extensions_Configuration.IConfiguration, configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, T | undefined>;
|
|
182
|
+
Get(this: Microsoft_Extensions_Configuration.IConfiguration, type: System.Type): Rewrap<this, unknown | undefined>;
|
|
183
|
+
Get(this: Microsoft_Extensions_Configuration.IConfiguration, type: System.Type, configureOptions: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, unknown | undefined>;
|
|
184
|
+
GetConnectionString(this: Microsoft_Extensions_Configuration.IConfiguration, name: string): Rewrap<this, string | undefined>;
|
|
185
|
+
GetDebugView(this: Microsoft_Extensions_Configuration.IConfigurationRoot): Rewrap<this, string>;
|
|
186
|
+
GetDebugView(this: Microsoft_Extensions_Configuration.IConfigurationRoot, processValue: System.Func_2<Microsoft_Extensions_Configuration.ConfigurationDebugViewContext, System_Internal.String>): Rewrap<this, string>;
|
|
187
|
+
GetFileLoadExceptionHandler(this: Microsoft_Extensions_Configuration.IConfigurationBuilder): Rewrap<this, System.Action_1<Microsoft_Extensions_Configuration.FileLoadExceptionContext> | undefined>;
|
|
188
|
+
GetFileProvider(this: Microsoft_Extensions_Configuration.IConfigurationBuilder): Rewrap<this, Microsoft_Extensions_FileProviders.IFileProvider>;
|
|
189
|
+
GetRequiredSection(this: Microsoft_Extensions_Configuration.IConfiguration, key: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationSection>;
|
|
190
|
+
GetValue<T>(this: Microsoft_Extensions_Configuration.IConfiguration, key: string): Rewrap<this, T | undefined>;
|
|
191
|
+
GetValue<T>(this: Microsoft_Extensions_Configuration.IConfiguration, key: string, defaultValue: T): Rewrap<this, T | undefined>;
|
|
192
|
+
GetValue(this: Microsoft_Extensions_Configuration.IConfiguration, type: System.Type, key: string): Rewrap<this, unknown | undefined>;
|
|
193
|
+
GetValue(this: Microsoft_Extensions_Configuration.IConfiguration, type: System.Type, key: string, defaultValue: unknown): Rewrap<this, unknown | undefined>;
|
|
194
|
+
SetBasePath(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, basePath: string): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
195
|
+
SetFileLoadExceptionHandler(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, handler: System.Action_1<Microsoft_Extensions_Configuration.FileLoadExceptionContext>): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
196
|
+
SetFileProvider(this: Microsoft_Extensions_Configuration.IConfigurationBuilder, fileProvider: Microsoft_Extensions_FileProviders.IFileProvider): Rewrap<this, Microsoft_Extensions_Configuration.IConfigurationBuilder>;
|
|
197
|
+
}
|
|
636
198
|
|
|
637
199
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Configuration
|
|
638
|
-
type __TsonicExtSurface_Microsoft_Extensions_Configuration<TShape> =
|
|
639
|
-
(
|
|
640
|
-
(TShape extends Microsoft_Extensions_Configuration.IConfiguration ? __Ext_Microsoft_Extensions_Configuration_IConfiguration : {}) & (TShape extends Microsoft_Extensions_Configuration.IConfigurationBuilder ? __Ext_Microsoft_Extensions_Configuration_IConfigurationBuilder : {}) & (TShape extends Microsoft_Extensions_Configuration.IConfigurationRoot ? __Ext_Microsoft_Extensions_Configuration_IConfigurationRoot : {}) & (TShape extends Microsoft_Extensions_Configuration.IConfigurationSection ? __Ext_Microsoft_Extensions_Configuration_IConfigurationSection : {})
|
|
641
|
-
);
|
|
642
|
-
|
|
643
200
|
interface __TsonicExtApplier_Microsoft_Extensions_Configuration {
|
|
644
201
|
__tsonic_shape: unknown;
|
|
645
|
-
__tsonic_type:
|
|
202
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Configuration;
|
|
646
203
|
}
|
|
647
204
|
|
|
648
205
|
export type ExtensionMethods_Microsoft_Extensions_Configuration<TShape> =
|
|
649
206
|
TShape extends null | undefined ? TShape
|
|
650
207
|
: TShape extends void ? void
|
|
651
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Configuration", __TsonicExtApplier_Microsoft_Extensions_Configuration> &
|
|
208
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Configuration", __TsonicExtApplier_Microsoft_Extensions_Configuration> & __TsonicExtMethods_Microsoft_Extensions_Configuration;
|
|
209
|
+
|
|
210
|
+
// Extension method table for namespace: Microsoft.Extensions.DependencyInjection
|
|
211
|
+
interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
|
|
212
|
+
AddAsKeyed(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
213
|
+
AddAsyncCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_1<System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
214
|
+
AddAsyncCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_1<System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
215
|
+
AddAsyncCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
216
|
+
AddAsyncCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
217
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, instance: Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
218
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, instance: Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck, failureStatus?: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
219
|
+
AddCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
220
|
+
AddCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, failureStatus?: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
221
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
222
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
223
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_2<System_Threading.CancellationToken, Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
224
|
+
AddCheck(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, check: System.Func_2<System_Threading.CancellationToken, Microsoft_Extensions_Diagnostics_HealthChecks.HealthCheckResult>, tags?: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout?: System.Nullable_1<System.TimeSpan>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
225
|
+
AddDefaultLogger(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
226
|
+
AddDistributedMemoryCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
227
|
+
AddDistributedMemoryCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_Extensions_Caching_Memory.MemoryDistributedCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
228
|
+
AddHealthChecks(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
229
|
+
AddHostedService<THostedService extends Microsoft_Extensions_Hosting.IHostedService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
230
|
+
AddHostedService<THostedService extends Microsoft_Extensions_Hosting.IHostedService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, THostedService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
231
|
+
AddHttpClient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
232
|
+
AddHttpClient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
233
|
+
AddHttpClient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
234
|
+
AddHttpClient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
235
|
+
AddHttpClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
236
|
+
AddHttpClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
237
|
+
AddHttpClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
238
|
+
AddHttpClient<TClient, TImplementation extends TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, factory: System.Func_2<System_Net_Http.HttpClient, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
239
|
+
AddHttpClient<TClient, TImplementation extends TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, factory: System.Func_2<System_Net_Http.HttpClient, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
240
|
+
AddHttpClient<TClient, TImplementation extends TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
241
|
+
AddHttpClient<TClient, TImplementation extends TClient>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TImplementation>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
242
|
+
AddHttpMessageHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler: System.Func_1<System_Net_Http.DelegatingHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
243
|
+
AddHttpMessageHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler: System.Func_2<System.IServiceProvider, System_Net_Http.DelegatingHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
244
|
+
AddHttpMessageHandler<THandler extends System_Net_Http.DelegatingHandler>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
245
|
+
AddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
246
|
+
AddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
247
|
+
AddKeyedScoped<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
248
|
+
AddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
249
|
+
AddKeyedScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
250
|
+
AddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
251
|
+
AddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
252
|
+
AddKeyedSingleton<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
253
|
+
AddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
254
|
+
AddKeyedSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
255
|
+
AddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
256
|
+
AddKeyedSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationInstance: TService): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
257
|
+
AddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
258
|
+
AddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
259
|
+
AddKeyedTransient<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
260
|
+
AddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
261
|
+
AddKeyedTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
262
|
+
AddLocalization(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
263
|
+
AddLocalization(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_Extensions_Localization.LocalizationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
264
|
+
AddLogger(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, httpClientLoggerFactory: System.Func_2<System.IServiceProvider, Microsoft_Extensions_Http_Logging.IHttpClientLogger>, wrapHandlersPipeline?: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
265
|
+
AddLogger<TLogger extends Microsoft_Extensions_Http_Logging.IHttpClientLogger>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, wrapHandlersPipeline?: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
266
|
+
AddLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
267
|
+
AddLogging(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
268
|
+
AddMemoryCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
269
|
+
AddMemoryCache(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_Extensions_Caching_Memory.MemoryCacheOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
270
|
+
AddMetrics(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
271
|
+
AddMetrics(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
272
|
+
AddOptions(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
273
|
+
AddOptions<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
274
|
+
AddOptions<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
275
|
+
AddOptionsWithValidateOnStart<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name?: string): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
276
|
+
AddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
277
|
+
AddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
278
|
+
AddScoped<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
279
|
+
AddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
280
|
+
AddScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
281
|
+
AddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
282
|
+
AddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
283
|
+
AddSingleton<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
284
|
+
AddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
285
|
+
AddSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
286
|
+
AddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
287
|
+
AddSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationInstance: TService): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
288
|
+
AddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
289
|
+
AddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
290
|
+
AddTransient<TService, TImplementation extends TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
291
|
+
AddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
292
|
+
AddTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
293
|
+
AddTypeActivatedCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
294
|
+
AddTypeActivatedCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
295
|
+
AddTypeActivatedCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
296
|
+
AddTypeActivatedCheck<T extends Microsoft_Extensions_Diagnostics_HealthChecks.IHealthCheck>(this: Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder, name: string, failureStatus: System.Nullable_1<Microsoft_Extensions_Diagnostics_HealthChecks.HealthStatus>, tags: System_Collections_Generic.IEnumerable_1<System_Internal.String>, timeout: System.TimeSpan, ...args: unknown[]): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder>;
|
|
297
|
+
AddTypedClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
298
|
+
AddTypedClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, factory: System.Func_2<System_Net_Http.HttpClient, TClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
299
|
+
AddTypedClient<TClient>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, factory: System.Func_3<System_Net_Http.HttpClient, System.IServiceProvider, TClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
300
|
+
AddValidation(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions?: System.Action_1<Microsoft_Extensions_Validation.ValidationOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
301
|
+
AddWebEncoders(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
302
|
+
AddWebEncoders(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, setupAction: System.Action_1<Microsoft_Extensions_WebEncoders.WebEncoderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
303
|
+
Bind<TOptions>(this: Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>, config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
304
|
+
Bind<TOptions>(this: Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>, config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
305
|
+
BindConfiguration<TOptions>(this: Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>, configSectionPath: string, configureBinder?: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
306
|
+
BuildServiceProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
307
|
+
BuildServiceProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, validateScopes: boolean): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
308
|
+
BuildServiceProvider(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, options: Microsoft_Extensions_DependencyInjection.ServiceProviderOptions): Rewrap<this, Microsoft_Extensions_DependencyInjection.ServiceProvider>;
|
|
309
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
310
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
311
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
312
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, config: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
313
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
314
|
+
Configure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, config: Microsoft_Extensions_Configuration.IConfiguration, configureBinder: System.Action_1<Microsoft_Extensions_Configuration.BinderOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
315
|
+
Configure(this: Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder, configure: System.Action_2<System_Net_Http.SocketsHttpHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>;
|
|
316
|
+
Configure(this: Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder, configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>;
|
|
317
|
+
ConfigureAdditionalHttpMessageHandlers(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureAdditionalHandlers: System.Action_2<System_Collections_Generic.IList_1<System_Net_Http.DelegatingHandler>, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
318
|
+
ConfigureAll<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
319
|
+
ConfigureHttpClient(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureClient: System.Action_1<System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
320
|
+
ConfigureHttpClient(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureClient: System.Action_2<System.IServiceProvider, System_Net_Http.HttpClient>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
321
|
+
ConfigureHttpClientDefaults(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configure: System.Action_1<Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
322
|
+
ConfigureHttpMessageHandlerBuilder(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureBuilder: System.Action_1<Microsoft_Extensions_Http.HttpMessageHandlerBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
323
|
+
ConfigureOptions<TConfigureOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
324
|
+
ConfigureOptions(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
325
|
+
ConfigureOptions(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureInstance: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
326
|
+
ConfigurePrimaryHttpMessageHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler: System.Func_1<System_Net_Http.HttpMessageHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
327
|
+
ConfigurePrimaryHttpMessageHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler: System.Func_2<System.IServiceProvider, System_Net_Http.HttpMessageHandler>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
328
|
+
ConfigurePrimaryHttpMessageHandler<THandler extends System_Net_Http.HttpMessageHandler>(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
329
|
+
ConfigurePrimaryHttpMessageHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler: System.Action_2<System_Net_Http.HttpMessageHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
330
|
+
CreateAsyncScope(this: Microsoft_Extensions_DependencyInjection.IServiceScopeFactory): Rewrap<this, Microsoft_Extensions_DependencyInjection.AsyncServiceScope>;
|
|
331
|
+
CreateAsyncScope(this: System.IServiceProvider): Rewrap<this, Microsoft_Extensions_DependencyInjection.AsyncServiceScope>;
|
|
332
|
+
CreateScope(this: System.IServiceProvider): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceScope>;
|
|
333
|
+
GetKeyedService<T>(this: System.IServiceProvider, serviceKey: unknown): Rewrap<this, T | undefined>;
|
|
334
|
+
GetKeyedService(this: System.IServiceProvider, serviceType: System.Type, serviceKey: unknown): Rewrap<this, unknown | undefined>;
|
|
335
|
+
GetKeyedServices<T>(this: System.IServiceProvider, serviceKey: unknown): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
336
|
+
GetKeyedServices(this: System.IServiceProvider, serviceType: System.Type, serviceKey: unknown): Rewrap<this, System_Collections_Generic.IEnumerable_1<unknown | undefined>>;
|
|
337
|
+
GetRequiredKeyedService(this: System.IServiceProvider, serviceType: System.Type, serviceKey: unknown): Rewrap<this, unknown>;
|
|
338
|
+
GetRequiredKeyedService<T>(this: System.IServiceProvider, serviceKey: unknown): Rewrap<this, T>;
|
|
339
|
+
GetRequiredService(this: System.IServiceProvider, serviceType: System.Type): Rewrap<this, unknown>;
|
|
340
|
+
GetRequiredService<T>(this: System.IServiceProvider): Rewrap<this, T>;
|
|
341
|
+
GetService<T>(this: System.IServiceProvider): Rewrap<this, T | undefined>;
|
|
342
|
+
GetServices<T>(this: System.IServiceProvider): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
343
|
+
GetServices(this: System.IServiceProvider, serviceType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<unknown | undefined>>;
|
|
344
|
+
PostConfigure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
345
|
+
PostConfigure<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, name: string, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
346
|
+
PostConfigureAll<TOptions>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, configureOptions: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
347
|
+
RedactLoggedHeaders(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, shouldRedactHeaderValue: System.Func_2<System_Internal.String, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
348
|
+
RedactLoggedHeaders(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, redactedLoggedHeaderNames: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
349
|
+
RemoveAllLoggers(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
350
|
+
RemoveAsKeyed(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
351
|
+
SetHandlerLifetime(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, handlerLifetime: System.TimeSpan): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
352
|
+
UseSocketsHttpHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureHandler?: System.Action_2<System_Net_Http.SocketsHttpHandler, System.IServiceProvider>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
353
|
+
UseSocketsHttpHandler(this: Microsoft_Extensions_DependencyInjection.IHttpClientBuilder, configureBuilder: System.Action_1<Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IHttpClientBuilder>;
|
|
354
|
+
ValidateDataAnnotations<TOptions>(this: Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
355
|
+
ValidateOnStart<TOptions>(this: Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>): Rewrap<this, Microsoft_Extensions_Options.OptionsBuilder_1<TOptions>>;
|
|
356
|
+
}
|
|
652
357
|
|
|
653
358
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
|
|
654
|
-
type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
655
|
-
(
|
|
656
|
-
(TShape extends Microsoft_Extensions_DependencyInjection.IHealthChecksBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IHealthChecksBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IHttpClientBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_IHttpClientBuilder : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.IServiceScopeFactory ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceScopeFactory : {}) & (TShape extends Microsoft_Extensions_DependencyInjection.ISocketsHttpHandlerBuilder ? __Ext_Microsoft_Extensions_DependencyInjection_ISocketsHttpHandlerBuilder : {}) & (TShape extends Microsoft_Extensions_Options.OptionsBuilder_1<infer T0> ? __Ext_Microsoft_Extensions_DependencyInjection_OptionsBuilder_1<T0> : {}) & (TShape extends System.IServiceProvider ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceProvider : {})
|
|
657
|
-
);
|
|
658
|
-
|
|
659
359
|
interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
|
|
660
360
|
__tsonic_shape: unknown;
|
|
661
|
-
__tsonic_type:
|
|
361
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
|
|
662
362
|
}
|
|
663
363
|
|
|
664
364
|
export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
665
365
|
TShape extends null | undefined ? TShape
|
|
666
366
|
: TShape extends void ? void
|
|
667
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> &
|
|
367
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
|
|
368
|
+
|
|
369
|
+
// Extension method table for namespace: Microsoft.Extensions.DependencyInjection.Extensions
|
|
370
|
+
interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection_Extensions {
|
|
371
|
+
Add(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
372
|
+
Add(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
373
|
+
RemoveAll<T>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
374
|
+
RemoveAll(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
375
|
+
RemoveAllKeyed<T>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
376
|
+
RemoveAllKeyed(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceType: System.Type, serviceKey: unknown): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
377
|
+
Replace(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
378
|
+
TryAdd(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, void>;
|
|
379
|
+
TryAdd(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, void>;
|
|
380
|
+
TryAddEnumerable(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptor: Microsoft_Extensions_DependencyInjection.ServiceDescriptor): Rewrap<this, void>;
|
|
381
|
+
TryAddEnumerable(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, descriptors: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyInjection.ServiceDescriptor>): Rewrap<this, void>;
|
|
382
|
+
TryAddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
383
|
+
TryAddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
384
|
+
TryAddKeyedScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
385
|
+
TryAddKeyedScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, void>;
|
|
386
|
+
TryAddKeyedScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
387
|
+
TryAddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
388
|
+
TryAddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
389
|
+
TryAddKeyedSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
390
|
+
TryAddKeyedSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, void>;
|
|
391
|
+
TryAddKeyedSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, instance: TService): Rewrap<this, void>;
|
|
392
|
+
TryAddKeyedSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
393
|
+
TryAddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown): Rewrap<this, void>;
|
|
394
|
+
TryAddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationType: System.Type): Rewrap<this, void>;
|
|
395
|
+
TryAddKeyedTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, unknown>): Rewrap<this, void>;
|
|
396
|
+
TryAddKeyedTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown): Rewrap<this, void>;
|
|
397
|
+
TryAddKeyedTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, serviceKey: unknown, implementationFactory: System.Func_3<System.IServiceProvider, unknown, TService>): Rewrap<this, void>;
|
|
398
|
+
TryAddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type): Rewrap<this, void>;
|
|
399
|
+
TryAddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
400
|
+
TryAddScoped(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
401
|
+
TryAddScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, void>;
|
|
402
|
+
TryAddScoped<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
403
|
+
TryAddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type): Rewrap<this, void>;
|
|
404
|
+
TryAddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
405
|
+
TryAddSingleton(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
406
|
+
TryAddSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, void>;
|
|
407
|
+
TryAddSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, instance: TService): Rewrap<this, void>;
|
|
408
|
+
TryAddSingleton<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
409
|
+
TryAddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type): Rewrap<this, void>;
|
|
410
|
+
TryAddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationType: System.Type): Rewrap<this, void>;
|
|
411
|
+
TryAddTransient(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, service: System.Type, implementationFactory: System.Func_2<System.IServiceProvider, unknown>): Rewrap<this, void>;
|
|
412
|
+
TryAddTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, void>;
|
|
413
|
+
TryAddTransient<TService>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, implementationFactory: System.Func_2<System.IServiceProvider, TService>): Rewrap<this, void>;
|
|
414
|
+
}
|
|
668
415
|
|
|
669
416
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection.Extensions
|
|
670
|
-
type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection_Extensions<TShape> =
|
|
671
|
-
(
|
|
672
|
-
(TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_Extensions_IServiceCollection : {})
|
|
673
|
-
);
|
|
674
|
-
|
|
675
417
|
interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection_Extensions {
|
|
676
418
|
__tsonic_shape: unknown;
|
|
677
|
-
__tsonic_type:
|
|
419
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyInjection_Extensions;
|
|
678
420
|
}
|
|
679
421
|
|
|
680
422
|
export type ExtensionMethods_Microsoft_Extensions_DependencyInjection_Extensions<TShape> =
|
|
681
423
|
TShape extends null | undefined ? TShape
|
|
682
424
|
: TShape extends void ? void
|
|
683
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection.Extensions", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection_Extensions> &
|
|
425
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection.Extensions", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection_Extensions> & __TsonicExtMethods_Microsoft_Extensions_DependencyInjection_Extensions;
|
|
426
|
+
|
|
427
|
+
// Extension method table for namespace: Microsoft.Extensions.Diagnostics.Metrics
|
|
428
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Diagnostics_Metrics {
|
|
429
|
+
AddConfiguration(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
430
|
+
AddDebugConsole(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
431
|
+
AddListener<T extends Microsoft_Extensions_Diagnostics_Metrics.IMetricsListener>(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
432
|
+
AddListener(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, listener: Microsoft_Extensions_Diagnostics_Metrics.IMetricsListener): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
433
|
+
ClearListeners(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
434
|
+
DisableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
435
|
+
DisableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
436
|
+
DisableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions, meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
437
|
+
DisableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions, meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
438
|
+
EnableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
439
|
+
EnableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder, meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>;
|
|
440
|
+
EnableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions, meterName: string): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
441
|
+
EnableMetrics(this: Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions, meterName: string, instrumentName?: string, listenerName?: string, scopes?: Microsoft_Extensions_Diagnostics_Metrics.MeterScope): Rewrap<this, Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions>;
|
|
442
|
+
}
|
|
684
443
|
|
|
685
444
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Diagnostics.Metrics
|
|
686
|
-
type __TsonicExtSurface_Microsoft_Extensions_Diagnostics_Metrics<TShape> =
|
|
687
|
-
(
|
|
688
|
-
(TShape extends Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder ? __Ext_Microsoft_Extensions_Diagnostics_Metrics_IMetricsBuilder : {}) & (TShape extends Microsoft_Extensions_Diagnostics_Metrics.MetricsOptions ? __Ext_Microsoft_Extensions_Diagnostics_Metrics_MetricsOptions : {})
|
|
689
|
-
);
|
|
690
|
-
|
|
691
445
|
interface __TsonicExtApplier_Microsoft_Extensions_Diagnostics_Metrics {
|
|
692
446
|
__tsonic_shape: unknown;
|
|
693
|
-
__tsonic_type:
|
|
447
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Diagnostics_Metrics;
|
|
694
448
|
}
|
|
695
449
|
|
|
696
450
|
export type ExtensionMethods_Microsoft_Extensions_Diagnostics_Metrics<TShape> =
|
|
697
451
|
TShape extends null | undefined ? TShape
|
|
698
452
|
: TShape extends void ? void
|
|
699
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Diagnostics.Metrics", __TsonicExtApplier_Microsoft_Extensions_Diagnostics_Metrics> &
|
|
453
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Diagnostics.Metrics", __TsonicExtApplier_Microsoft_Extensions_Diagnostics_Metrics> & __TsonicExtMethods_Microsoft_Extensions_Diagnostics_Metrics;
|
|
700
454
|
|
|
701
|
-
//
|
|
702
|
-
|
|
703
|
-
(
|
|
704
|
-
|
|
705
|
-
)
|
|
455
|
+
// Extension method table for namespace: Microsoft.Extensions.FileSystemGlobbing
|
|
456
|
+
interface __TsonicExtMethods_Microsoft_Extensions_FileSystemGlobbing {
|
|
457
|
+
AddExcludePatterns(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, ...excludePatternsGroups: System_Collections_Generic.IEnumerable_1<System_Internal.String>[]): Rewrap<this, void>;
|
|
458
|
+
AddIncludePatterns(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, ...includePatternsGroups: System_Collections_Generic.IEnumerable_1<System_Internal.String>[]): Rewrap<this, void>;
|
|
459
|
+
GetResultsInFullPath(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, directoryPath: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
460
|
+
Match(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, file: string): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
461
|
+
Match(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, rootDir: string, file: string): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
462
|
+
Match(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, files: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
463
|
+
Match(this: Microsoft_Extensions_FileSystemGlobbing.Matcher, rootDir: string, files: System_Collections_Generic.IEnumerable_1<System_Internal.String>): Rewrap<this, Microsoft_Extensions_FileSystemGlobbing.PatternMatchingResult>;
|
|
464
|
+
}
|
|
706
465
|
|
|
466
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.FileSystemGlobbing
|
|
707
467
|
interface __TsonicExtApplier_Microsoft_Extensions_FileSystemGlobbing {
|
|
708
468
|
__tsonic_shape: unknown;
|
|
709
|
-
__tsonic_type:
|
|
469
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_FileSystemGlobbing;
|
|
710
470
|
}
|
|
711
471
|
|
|
712
472
|
export type ExtensionMethods_Microsoft_Extensions_FileSystemGlobbing<TShape> =
|
|
713
473
|
TShape extends null | undefined ? TShape
|
|
714
474
|
: TShape extends void ? void
|
|
715
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.FileSystemGlobbing", __TsonicExtApplier_Microsoft_Extensions_FileSystemGlobbing> &
|
|
475
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.FileSystemGlobbing", __TsonicExtApplier_Microsoft_Extensions_FileSystemGlobbing> & __TsonicExtMethods_Microsoft_Extensions_FileSystemGlobbing;
|
|
476
|
+
|
|
477
|
+
// Extension method table for namespace: Microsoft.Extensions.Hosting
|
|
478
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Hosting {
|
|
479
|
+
ConfigureAppConfiguration(this: Microsoft_Extensions_Hosting.IHostBuilder, configureDelegate: System.Action_1<Microsoft_Extensions_Configuration.IConfigurationBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
480
|
+
ConfigureContainer<TContainerBuilder>(this: Microsoft_Extensions_Hosting.IHostBuilder, configureDelegate: System.Action_1<TContainerBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
481
|
+
ConfigureDefaults(this: Microsoft_Extensions_Hosting.IHostBuilder, args: string[]): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
482
|
+
ConfigureHostOptions(this: Microsoft_Extensions_Hosting.IHostBuilder, configureOptions: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Hosting.HostOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
483
|
+
ConfigureHostOptions(this: Microsoft_Extensions_Hosting.IHostBuilder, configureOptions: System.Action_1<Microsoft_Extensions_Hosting.HostOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
484
|
+
ConfigureLogging(this: Microsoft_Extensions_Hosting.IHostBuilder, configureLogging: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
485
|
+
ConfigureLogging(this: Microsoft_Extensions_Hosting.IHostBuilder, configureLogging: System.Action_1<Microsoft_Extensions_Logging.ILoggingBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
486
|
+
ConfigureMetrics(this: Microsoft_Extensions_Hosting.IHostBuilder, configureMetrics: System.Action_1<Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
487
|
+
ConfigureMetrics(this: Microsoft_Extensions_Hosting.IHostBuilder, configureMetrics: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_Diagnostics_Metrics.IMetricsBuilder>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
488
|
+
ConfigureServices(this: Microsoft_Extensions_Hosting.IHostBuilder, configureDelegate: System.Action_1<Microsoft_Extensions_DependencyInjection.IServiceCollection>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
489
|
+
IsDevelopment(this: Microsoft_Extensions_Hosting.IHostEnvironment): Rewrap<this, boolean>;
|
|
490
|
+
IsDevelopment(this: Microsoft_Extensions_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
491
|
+
IsEnvironment(this: Microsoft_Extensions_Hosting.IHostEnvironment, environmentName: string): Rewrap<this, boolean>;
|
|
492
|
+
IsEnvironment(this: Microsoft_Extensions_Hosting.IHostingEnvironment, environmentName: string): Rewrap<this, boolean>;
|
|
493
|
+
IsProduction(this: Microsoft_Extensions_Hosting.IHostEnvironment): Rewrap<this, boolean>;
|
|
494
|
+
IsProduction(this: Microsoft_Extensions_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
495
|
+
IsStaging(this: Microsoft_Extensions_Hosting.IHostEnvironment): Rewrap<this, boolean>;
|
|
496
|
+
IsStaging(this: Microsoft_Extensions_Hosting.IHostingEnvironment): Rewrap<this, boolean>;
|
|
497
|
+
Run(this: Microsoft_Extensions_Hosting.IHost): Rewrap<this, void>;
|
|
498
|
+
RunAsync(this: Microsoft_Extensions_Hosting.IHost, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
499
|
+
RunConsoleAsync(this: Microsoft_Extensions_Hosting.IHostBuilder, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
500
|
+
RunConsoleAsync(this: Microsoft_Extensions_Hosting.IHostBuilder, configureOptions: System.Action_1<Microsoft_Extensions_Hosting.ConsoleLifetimeOptions>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
501
|
+
Start(this: Microsoft_Extensions_Hosting.IHost): Rewrap<this, void>;
|
|
502
|
+
Start(this: Microsoft_Extensions_Hosting.IHostBuilder): Rewrap<this, Microsoft_Extensions_Hosting.IHost>;
|
|
503
|
+
StartAsync(this: Microsoft_Extensions_Hosting.IHostBuilder, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_Extensions_Hosting.IHost>>;
|
|
504
|
+
StopAsync(this: Microsoft_Extensions_Hosting.IHost, timeout: System.TimeSpan): Rewrap<this, System_Threading_Tasks.Task>;
|
|
505
|
+
UseConsoleLifetime(this: Microsoft_Extensions_Hosting.IHostBuilder): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
506
|
+
UseConsoleLifetime(this: Microsoft_Extensions_Hosting.IHostBuilder, configureOptions: System.Action_1<Microsoft_Extensions_Hosting.ConsoleLifetimeOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
507
|
+
UseContentRoot(this: Microsoft_Extensions_Hosting.IHostBuilder, contentRoot: string): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
508
|
+
UseDefaultServiceProvider(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_1<Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
509
|
+
UseDefaultServiceProvider(this: Microsoft_Extensions_Hosting.IHostBuilder, configure: System.Action_2<Microsoft_Extensions_Hosting.HostBuilderContext, Microsoft_Extensions_DependencyInjection.ServiceProviderOptions>): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
510
|
+
UseEnvironment(this: Microsoft_Extensions_Hosting.IHostBuilder, environment: string): Rewrap<this, Microsoft_Extensions_Hosting.IHostBuilder>;
|
|
511
|
+
WaitForShutdown(this: Microsoft_Extensions_Hosting.IHost): Rewrap<this, void>;
|
|
512
|
+
WaitForShutdownAsync(this: Microsoft_Extensions_Hosting.IHost, token?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
|
|
513
|
+
}
|
|
716
514
|
|
|
717
515
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Hosting
|
|
718
|
-
type __TsonicExtSurface_Microsoft_Extensions_Hosting<TShape> =
|
|
719
|
-
(
|
|
720
|
-
(TShape extends Microsoft_Extensions_Hosting.IHost ? __Ext_Microsoft_Extensions_Hosting_IHost : {}) & (TShape extends Microsoft_Extensions_Hosting.IHostBuilder ? __Ext_Microsoft_Extensions_Hosting_IHostBuilder : {}) & (TShape extends Microsoft_Extensions_Hosting.IHostEnvironment ? __Ext_Microsoft_Extensions_Hosting_IHostEnvironment : {}) & (TShape extends Microsoft_Extensions_Hosting.IHostingEnvironment ? __Ext_Microsoft_Extensions_Hosting_IHostingEnvironment : {})
|
|
721
|
-
);
|
|
722
|
-
|
|
723
516
|
interface __TsonicExtApplier_Microsoft_Extensions_Hosting {
|
|
724
517
|
__tsonic_shape: unknown;
|
|
725
|
-
__tsonic_type:
|
|
518
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Hosting;
|
|
726
519
|
}
|
|
727
520
|
|
|
728
521
|
export type ExtensionMethods_Microsoft_Extensions_Hosting<TShape> =
|
|
729
522
|
TShape extends null | undefined ? TShape
|
|
730
523
|
: TShape extends void ? void
|
|
731
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Hosting", __TsonicExtApplier_Microsoft_Extensions_Hosting> &
|
|
524
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Hosting", __TsonicExtApplier_Microsoft_Extensions_Hosting> & __TsonicExtMethods_Microsoft_Extensions_Hosting;
|
|
732
525
|
|
|
733
|
-
//
|
|
734
|
-
|
|
735
|
-
(
|
|
736
|
-
|
|
737
|
-
)
|
|
526
|
+
// Extension method table for namespace: Microsoft.Extensions.Localization
|
|
527
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Localization {
|
|
528
|
+
GetAllStrings(this: Microsoft_Extensions_Localization.IStringLocalizer): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_Localization.LocalizedString>>;
|
|
529
|
+
GetString(this: Microsoft_Extensions_Localization.IStringLocalizer, name: string): Rewrap<this, Microsoft_Extensions_Localization.LocalizedString>;
|
|
530
|
+
GetString(this: Microsoft_Extensions_Localization.IStringLocalizer, name: string, ...arguments: unknown[]): Rewrap<this, Microsoft_Extensions_Localization.LocalizedString>;
|
|
531
|
+
}
|
|
738
532
|
|
|
533
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Localization
|
|
739
534
|
interface __TsonicExtApplier_Microsoft_Extensions_Localization {
|
|
740
535
|
__tsonic_shape: unknown;
|
|
741
|
-
__tsonic_type:
|
|
536
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Localization;
|
|
742
537
|
}
|
|
743
538
|
|
|
744
539
|
export type ExtensionMethods_Microsoft_Extensions_Localization<TShape> =
|
|
745
540
|
TShape extends null | undefined ? TShape
|
|
746
541
|
: TShape extends void ? void
|
|
747
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Localization", __TsonicExtApplier_Microsoft_Extensions_Localization> &
|
|
542
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Localization", __TsonicExtApplier_Microsoft_Extensions_Localization> & __TsonicExtMethods_Microsoft_Extensions_Localization;
|
|
543
|
+
|
|
544
|
+
// Extension method table for namespace: Microsoft.Extensions.Logging
|
|
545
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Logging {
|
|
546
|
+
AddConfiguration(this: Microsoft_Extensions_Logging.ILoggingBuilder, configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
547
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, configuration: Microsoft_Extensions_Configuration.IConfiguration): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
548
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, settings: Microsoft_Extensions_Logging_Console.IConsoleLoggerSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
549
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, minLevel: Microsoft_Extensions_Logging.LogLevel, includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
550
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
551
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
552
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>, includeScopes: boolean): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
553
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory, filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
554
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggerFactory): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
555
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
556
|
+
AddConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<Microsoft_Extensions_Logging_Console.ConsoleLoggerOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
557
|
+
AddConsoleFormatter<TFormatter extends Microsoft_Extensions_Logging_Console.ConsoleFormatter, TOptions extends Microsoft_Extensions_Logging_Console.ConsoleFormatterOptions>(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
558
|
+
AddConsoleFormatter<TFormatter extends Microsoft_Extensions_Logging_Console.ConsoleFormatter, TOptions extends Microsoft_Extensions_Logging_Console.ConsoleFormatterOptions>(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<TOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
559
|
+
AddDebug(this: Microsoft_Extensions_Logging.ILoggerFactory, minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
560
|
+
AddDebug(this: Microsoft_Extensions_Logging.ILoggerFactory, filter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
561
|
+
AddDebug(this: Microsoft_Extensions_Logging.ILoggerFactory): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
562
|
+
AddDebug(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
563
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggerFactory, settings: Microsoft_Extensions_Logging_EventLog.EventLogSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
564
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggerFactory, minLevel: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
565
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggerFactory): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
566
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
567
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggingBuilder, settings: Microsoft_Extensions_Logging_EventLog.EventLogSettings): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
568
|
+
AddEventLog(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<Microsoft_Extensions_Logging_EventLog.EventLogSettings>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
569
|
+
AddEventSourceLogger(this: Microsoft_Extensions_Logging.ILoggerFactory): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
570
|
+
AddEventSourceLogger(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
571
|
+
AddFilter(this: Microsoft_Extensions_Logging.ILoggingBuilder, filter: System.Func_4<System_Internal.String, System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
572
|
+
AddFilter(this: Microsoft_Extensions_Logging.ILoggingBuilder, categoryLevelFilter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
573
|
+
AddFilter(this: Microsoft_Extensions_Logging.ILoggingBuilder, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
574
|
+
AddFilter(this: Microsoft_Extensions_Logging.ILoggingBuilder, category: string, level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
575
|
+
AddFilter(this: Microsoft_Extensions_Logging.ILoggingBuilder, category: string, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
576
|
+
AddFilter(this: Microsoft_Extensions_Logging.LoggerFilterOptions, filter: System.Func_4<System_Internal.String, System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
577
|
+
AddFilter(this: Microsoft_Extensions_Logging.LoggerFilterOptions, categoryLevelFilter: System.Func_3<System_Internal.String, Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
578
|
+
AddFilter(this: Microsoft_Extensions_Logging.LoggerFilterOptions, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
579
|
+
AddFilter(this: Microsoft_Extensions_Logging.LoggerFilterOptions, category: string, level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
580
|
+
AddFilter(this: Microsoft_Extensions_Logging.LoggerFilterOptions, category: string, levelFilter: System.Func_2<Microsoft_Extensions_Logging.LogLevel, System_Internal.Boolean>): Rewrap<this, Microsoft_Extensions_Logging.LoggerFilterOptions>;
|
|
581
|
+
AddJsonConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
582
|
+
AddJsonConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<Microsoft_Extensions_Logging_Console.JsonConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
583
|
+
AddProvider(this: Microsoft_Extensions_Logging.ILoggingBuilder, provider: Microsoft_Extensions_Logging.ILoggerProvider): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
584
|
+
AddSimpleConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
585
|
+
AddSimpleConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<Microsoft_Extensions_Logging_Console.SimpleConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
586
|
+
AddSystemdConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder, configure: System.Action_1<Microsoft_Extensions_Logging_Console.ConsoleFormatterOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
587
|
+
AddSystemdConsole(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
588
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggerFactory, sourceSwitch: System_Diagnostics.SourceSwitch, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
589
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggerFactory, sourceSwitch: System_Diagnostics.SourceSwitch): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
590
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggerFactory, switchName: string, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
591
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggerFactory, switchName: string): Rewrap<this, Microsoft_Extensions_Logging.ILoggerFactory>;
|
|
592
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggingBuilder, switchName: string): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
593
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggingBuilder, switchName: string, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
594
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggingBuilder, sourceSwitch: System_Diagnostics.SourceSwitch): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
595
|
+
AddTraceSource(this: Microsoft_Extensions_Logging.ILoggingBuilder, sourceSwitch: System_Diagnostics.SourceSwitch, listener: System_Diagnostics.TraceListener): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
596
|
+
BeginScope(this: Microsoft_Extensions_Logging.ILogger, messageFormat: string, ...args: unknown[]): Rewrap<this, System.IDisposable | undefined>;
|
|
597
|
+
ClearProviders(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
598
|
+
Configure(this: Microsoft_Extensions_Logging.ILoggingBuilder, action: System.Action_1<Microsoft_Extensions_Logging.LoggerFactoryOptions>): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
599
|
+
CreateLogger<T>(this: Microsoft_Extensions_Logging.ILoggerFactory): Rewrap<this, Microsoft_Extensions_Logging.ILogger_1<T>>;
|
|
600
|
+
CreateLogger(this: Microsoft_Extensions_Logging.ILoggerFactory, type: System.Type): Rewrap<this, Microsoft_Extensions_Logging.ILogger>;
|
|
601
|
+
Log(this: Microsoft_Extensions_Logging.ILogger, logLevel: Microsoft_Extensions_Logging.LogLevel, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
602
|
+
Log(this: Microsoft_Extensions_Logging.ILogger, logLevel: Microsoft_Extensions_Logging.LogLevel, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
603
|
+
Log(this: Microsoft_Extensions_Logging.ILogger, logLevel: Microsoft_Extensions_Logging.LogLevel, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
604
|
+
Log(this: Microsoft_Extensions_Logging.ILogger, logLevel: Microsoft_Extensions_Logging.LogLevel, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
605
|
+
LogCritical(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
606
|
+
LogCritical(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
607
|
+
LogCritical(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
608
|
+
LogCritical(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
609
|
+
LogDebug(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
610
|
+
LogDebug(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
611
|
+
LogDebug(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
612
|
+
LogDebug(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
613
|
+
LogError(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
614
|
+
LogError(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
615
|
+
LogError(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
616
|
+
LogError(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
617
|
+
LogInformation(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
618
|
+
LogInformation(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
619
|
+
LogInformation(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
620
|
+
LogInformation(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
621
|
+
LogTrace(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
622
|
+
LogTrace(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
623
|
+
LogTrace(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
624
|
+
LogTrace(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
625
|
+
LogWarning(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
626
|
+
LogWarning(this: Microsoft_Extensions_Logging.ILogger, eventId: Microsoft_Extensions_Logging.EventId, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
627
|
+
LogWarning(this: Microsoft_Extensions_Logging.ILogger, exception: System.Exception, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
628
|
+
LogWarning(this: Microsoft_Extensions_Logging.ILogger, message: string, ...args: unknown[]): Rewrap<this, void>;
|
|
629
|
+
SetMinimumLevel(this: Microsoft_Extensions_Logging.ILoggingBuilder, level: Microsoft_Extensions_Logging.LogLevel): Rewrap<this, Microsoft_Extensions_Logging.ILoggingBuilder>;
|
|
630
|
+
}
|
|
748
631
|
|
|
749
632
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Logging
|
|
750
|
-
type __TsonicExtSurface_Microsoft_Extensions_Logging<TShape> =
|
|
751
|
-
(
|
|
752
|
-
(TShape extends Microsoft_Extensions_Logging.ILogger ? __Ext_Microsoft_Extensions_Logging_ILogger : {}) & (TShape extends Microsoft_Extensions_Logging.ILoggerFactory ? __Ext_Microsoft_Extensions_Logging_ILoggerFactory : {}) & (TShape extends Microsoft_Extensions_Logging.ILoggingBuilder ? __Ext_Microsoft_Extensions_Logging_ILoggingBuilder : {}) & (TShape extends Microsoft_Extensions_Logging.LoggerFilterOptions ? __Ext_Microsoft_Extensions_Logging_LoggerFilterOptions : {})
|
|
753
|
-
);
|
|
754
|
-
|
|
755
633
|
interface __TsonicExtApplier_Microsoft_Extensions_Logging {
|
|
756
634
|
__tsonic_shape: unknown;
|
|
757
|
-
__tsonic_type:
|
|
635
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Logging;
|
|
758
636
|
}
|
|
759
637
|
|
|
760
638
|
export type ExtensionMethods_Microsoft_Extensions_Logging<TShape> =
|
|
761
639
|
TShape extends null | undefined ? TShape
|
|
762
640
|
: TShape extends void ? void
|
|
763
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Logging", __TsonicExtApplier_Microsoft_Extensions_Logging> &
|
|
641
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Logging", __TsonicExtApplier_Microsoft_Extensions_Logging> & __TsonicExtMethods_Microsoft_Extensions_Logging;
|
|
764
642
|
|
|
765
|
-
//
|
|
766
|
-
|
|
767
|
-
(
|
|
768
|
-
|
|
769
|
-
);
|
|
643
|
+
// Extension method table for namespace: Microsoft.Extensions.Logging.Configuration
|
|
644
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Logging_Configuration {
|
|
645
|
+
AddConfiguration(this: Microsoft_Extensions_Logging.ILoggingBuilder): Rewrap<this, void>;
|
|
646
|
+
}
|
|
770
647
|
|
|
648
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Logging.Configuration
|
|
771
649
|
interface __TsonicExtApplier_Microsoft_Extensions_Logging_Configuration {
|
|
772
650
|
__tsonic_shape: unknown;
|
|
773
|
-
__tsonic_type:
|
|
651
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Logging_Configuration;
|
|
774
652
|
}
|
|
775
653
|
|
|
776
654
|
export type ExtensionMethods_Microsoft_Extensions_Logging_Configuration<TShape> =
|
|
777
655
|
TShape extends null | undefined ? TShape
|
|
778
656
|
: TShape extends void ? void
|
|
779
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Logging.Configuration", __TsonicExtApplier_Microsoft_Extensions_Logging_Configuration> &
|
|
657
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Logging.Configuration", __TsonicExtApplier_Microsoft_Extensions_Logging_Configuration> & __TsonicExtMethods_Microsoft_Extensions_Logging_Configuration;
|
|
780
658
|
|
|
781
|
-
//
|
|
782
|
-
|
|
783
|
-
(
|
|
784
|
-
|
|
785
|
-
|
|
659
|
+
// Extension method table for namespace: Microsoft.Extensions.ObjectPool
|
|
660
|
+
interface __TsonicExtMethods_Microsoft_Extensions_ObjectPool {
|
|
661
|
+
CreateStringBuilderPool(this: Microsoft_Extensions_ObjectPool.ObjectPoolProvider): Rewrap<this, Microsoft_Extensions_ObjectPool.ObjectPool_1<System_Text.StringBuilder>>;
|
|
662
|
+
CreateStringBuilderPool(this: Microsoft_Extensions_ObjectPool.ObjectPoolProvider, initialCapacity: int, maximumRetainedCapacity: int): Rewrap<this, Microsoft_Extensions_ObjectPool.ObjectPool_1<System_Text.StringBuilder>>;
|
|
663
|
+
}
|
|
786
664
|
|
|
665
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.ObjectPool
|
|
787
666
|
interface __TsonicExtApplier_Microsoft_Extensions_ObjectPool {
|
|
788
667
|
__tsonic_shape: unknown;
|
|
789
|
-
__tsonic_type:
|
|
668
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_ObjectPool;
|
|
790
669
|
}
|
|
791
670
|
|
|
792
671
|
export type ExtensionMethods_Microsoft_Extensions_ObjectPool<TShape> =
|
|
793
672
|
TShape extends null | undefined ? TShape
|
|
794
673
|
: TShape extends void ? void
|
|
795
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.ObjectPool", __TsonicExtApplier_Microsoft_Extensions_ObjectPool> &
|
|
674
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.ObjectPool", __TsonicExtApplier_Microsoft_Extensions_ObjectPool> & __TsonicExtMethods_Microsoft_Extensions_ObjectPool;
|
|
796
675
|
|
|
797
|
-
//
|
|
798
|
-
|
|
799
|
-
(
|
|
800
|
-
|
|
801
|
-
);
|
|
676
|
+
// Extension method table for namespace: Microsoft.Extensions.Options
|
|
677
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Options {
|
|
678
|
+
OnChange<TOptions>(this: Microsoft_Extensions_Options.IOptionsMonitor_1<TOptions>, listener: System.Action_1<TOptions>): Rewrap<this, System.IDisposable | undefined>;
|
|
679
|
+
}
|
|
802
680
|
|
|
681
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Options
|
|
803
682
|
interface __TsonicExtApplier_Microsoft_Extensions_Options {
|
|
804
683
|
__tsonic_shape: unknown;
|
|
805
|
-
__tsonic_type:
|
|
684
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Options;
|
|
806
685
|
}
|
|
807
686
|
|
|
808
687
|
export type ExtensionMethods_Microsoft_Extensions_Options<TShape> =
|
|
809
688
|
TShape extends null | undefined ? TShape
|
|
810
689
|
: TShape extends void ? void
|
|
811
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Options", __TsonicExtApplier_Microsoft_Extensions_Options> &
|
|
690
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Options", __TsonicExtApplier_Microsoft_Extensions_Options> & __TsonicExtMethods_Microsoft_Extensions_Options;
|
|
812
691
|
|
|
813
|
-
//
|
|
814
|
-
|
|
815
|
-
(
|
|
816
|
-
|
|
817
|
-
);
|
|
692
|
+
// Extension method table for namespace: Microsoft.Extensions.Primitives
|
|
693
|
+
interface __TsonicExtMethods_Microsoft_Extensions_Primitives {
|
|
694
|
+
Append(this: System_Text.StringBuilder, segment: Microsoft_Extensions_Primitives.StringSegment): Rewrap<this, System_Text.StringBuilder>;
|
|
695
|
+
}
|
|
818
696
|
|
|
697
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.Primitives
|
|
819
698
|
interface __TsonicExtApplier_Microsoft_Extensions_Primitives {
|
|
820
699
|
__tsonic_shape: unknown;
|
|
821
|
-
__tsonic_type:
|
|
700
|
+
__tsonic_type: __TsonicExtMethods_Microsoft_Extensions_Primitives;
|
|
822
701
|
}
|
|
823
702
|
|
|
824
703
|
export type ExtensionMethods_Microsoft_Extensions_Primitives<TShape> =
|
|
825
704
|
TShape extends null | undefined ? TShape
|
|
826
705
|
: TShape extends void ? void
|
|
827
|
-
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Primitives", __TsonicExtApplier_Microsoft_Extensions_Primitives> &
|
|
706
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.Primitives", __TsonicExtApplier_Microsoft_Extensions_Primitives> & __TsonicExtMethods_Microsoft_Extensions_Primitives;
|
|
828
707
|
|
|
829
|
-
//
|
|
830
|
-
|
|
831
|
-
(
|
|
832
|
-
|
|
833
|
-
|
|
708
|
+
// Extension method table for namespace: System.Net.Http
|
|
709
|
+
interface __TsonicExtMethods_System_Net_Http {
|
|
710
|
+
CreateClient(this: System_Net_Http.IHttpClientFactory): Rewrap<this, System_Net_Http.HttpClient>;
|
|
711
|
+
CreateHandler(this: System_Net_Http.IHttpMessageHandlerFactory): Rewrap<this, System_Net_Http.HttpMessageHandler>;
|
|
712
|
+
}
|
|
834
713
|
|
|
714
|
+
// Generic helper type for extension methods in namespace: System.Net.Http
|
|
835
715
|
interface __TsonicExtApplier_System_Net_Http {
|
|
836
716
|
__tsonic_shape: unknown;
|
|
837
|
-
__tsonic_type:
|
|
717
|
+
__tsonic_type: __TsonicExtMethods_System_Net_Http;
|
|
838
718
|
}
|
|
839
719
|
|
|
840
720
|
export type ExtensionMethods_System_Net_Http<TShape> =
|
|
841
721
|
TShape extends null | undefined ? TShape
|
|
842
722
|
: TShape extends void ? void
|
|
843
|
-
: TShape & __TsonicWithExt<TShape, "System.Net.Http", __TsonicExtApplier_System_Net_Http> &
|
|
723
|
+
: TShape & __TsonicWithExt<TShape, "System.Net.Http", __TsonicExtApplier_System_Net_Http> & __TsonicExtMethods_System_Net_Http;
|
|
844
724
|
|