@tsonic/microsoft-extensions 10.0.2 → 10.0.5
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/Microsoft.Extensions.Caching.Distributed/internal/index.d.ts +9 -3
- package/Microsoft.Extensions.Caching.Hybrid/internal/index.d.ts +5 -2
- package/Microsoft.Extensions.Caching.Memory/internal/index.d.ts +21 -10
- package/Microsoft.Extensions.Configuration/internal/index.d.ts +80 -37
- package/Microsoft.Extensions.Configuration.CommandLine/internal/index.d.ts +5 -1
- package/Microsoft.Extensions.Configuration.EnvironmentVariables/internal/index.d.ts +5 -1
- package/Microsoft.Extensions.Configuration.Ini/internal/index.d.ts +11 -0
- package/Microsoft.Extensions.Configuration.Json/internal/index.d.ts +11 -0
- package/Microsoft.Extensions.Configuration.KeyPerFile/internal/index.d.ts +8 -1
- package/Microsoft.Extensions.Configuration.Memory/internal/index.d.ts +9 -1
- package/Microsoft.Extensions.Configuration.Xml/internal/index.d.ts +14 -8
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +48 -4
- package/Microsoft.Extensions.Diagnostics.HealthChecks/internal/index.d.ts +6 -3
- package/Microsoft.Extensions.Diagnostics.Metrics/internal/index.d.ts +13 -7
- package/Microsoft.Extensions.Diagnostics.Metrics.Configuration/internal/index.d.ts +2 -0
- package/Microsoft.Extensions.FileProviders/internal/index.d.ts +29 -7
- package/Microsoft.Extensions.FileProviders.Composite/internal/index.d.ts +4 -0
- package/Microsoft.Extensions.FileProviders.Embedded/internal/index.d.ts +2 -0
- package/Microsoft.Extensions.FileProviders.Internal/internal/index.d.ts +4 -0
- package/Microsoft.Extensions.FileProviders.Physical/internal/index.d.ts +17 -10
- package/Microsoft.Extensions.FileSystemGlobbing/internal/index.d.ts +2 -0
- package/Microsoft.Extensions.FileSystemGlobbing.Abstractions/internal/index.d.ts +3 -6
- package/Microsoft.Extensions.FileSystemGlobbing.Internal/internal/index.d.ts +11 -1
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments/internal/index.d.ts +10 -0
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts/internal/index.d.ts +19 -8
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +44 -13
- package/Microsoft.Extensions.Hosting.Internal/internal/index.d.ts +10 -1
- package/Microsoft.Extensions.Http/internal/index.d.ts +7 -3
- package/Microsoft.Extensions.Http.Logging/internal/index.d.ts +12 -12
- package/Microsoft.Extensions.Internal/internal/index.d.ts +4 -0
- package/Microsoft.Extensions.Localization/internal/index.d.ts +24 -11
- package/Microsoft.Extensions.Logging/internal/index.d.ts +31 -7
- package/Microsoft.Extensions.Logging.Abstractions/internal/index.d.ts +15 -5
- package/Microsoft.Extensions.Logging.Configuration/internal/index.d.ts +6 -0
- package/Microsoft.Extensions.Logging.Console/internal/index.d.ts +16 -7
- package/Microsoft.Extensions.Logging.Debug/internal/index.d.ts +3 -0
- package/Microsoft.Extensions.Logging.EventLog/internal/index.d.ts +8 -4
- package/Microsoft.Extensions.Logging.EventSource/internal/index.d.ts +6 -6
- package/Microsoft.Extensions.Logging.TraceSource/internal/index.d.ts +3 -0
- package/Microsoft.Extensions.ObjectPool/internal/index.d.ts +13 -6
- package/Microsoft.Extensions.Options/internal/index.d.ts +113 -27
- package/Microsoft.Extensions.Primitives/internal/index.d.ts +33 -4
- package/Microsoft.Extensions.Primitives.d.ts +3 -0
- package/Microsoft.Extensions.Validation/internal/index.d.ts +18 -23
- package/Microsoft.Extensions.WebEncoders/internal/index.d.ts +1 -1
- package/System.Diagnostics/internal/index.d.ts +20 -20
- package/System.Diagnostics.Eventing.Reader/internal/index.d.ts +44 -68
- package/System.Net.Http/internal/index.d.ts +4 -0
- package/System.Security.Cryptography/internal/index.d.ts +6 -2
- package/System.Security.Cryptography.Pkcs/internal/index.d.ts +26 -27
- package/System.Security.Cryptography.Xml/internal/index.d.ts +94 -115
- package/__internal/extensions/index.d.ts +292 -255
- package/package.json +1 -1
|
@@ -16,7 +16,9 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
16
16
|
import type { Task, ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
17
17
|
|
|
18
18
|
export interface IBufferDistributedCache$instance extends IDistributedCache {
|
|
19
|
-
|
|
19
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Distributed_IBufferDistributedCache: never;
|
|
20
|
+
|
|
21
|
+
Get(key: string): byte[] | undefined;
|
|
20
22
|
GetAsync(key: string, token?: CancellationToken): Task<byte[] | undefined>;
|
|
21
23
|
Refresh(key: string): void;
|
|
22
24
|
RefreshAsync(key: string, token?: CancellationToken): Task;
|
|
@@ -32,7 +34,9 @@ export interface IBufferDistributedCache$instance extends IDistributedCache {
|
|
|
32
34
|
export type IBufferDistributedCache = IBufferDistributedCache$instance;
|
|
33
35
|
|
|
34
36
|
export interface IDistributedCache$instance {
|
|
35
|
-
|
|
37
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Distributed_IDistributedCache: never;
|
|
38
|
+
|
|
39
|
+
Get(key: string): byte[] | undefined;
|
|
36
40
|
GetAsync(key: string, token?: CancellationToken): Task<byte[] | undefined>;
|
|
37
41
|
Refresh(key: string): void;
|
|
38
42
|
RefreshAsync(key: string, token?: CancellationToken): Task;
|
|
@@ -58,7 +62,9 @@ export const DistributedCacheEntryOptions: {
|
|
|
58
62
|
export type DistributedCacheEntryOptions = DistributedCacheEntryOptions$instance;
|
|
59
63
|
|
|
60
64
|
export interface MemoryDistributedCache$instance {
|
|
61
|
-
|
|
65
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Distributed_IDistributedCache: never;
|
|
66
|
+
|
|
67
|
+
Get(key: string): byte[] | undefined;
|
|
62
68
|
GetAsync(key: string, token?: CancellationToken): Task<byte[] | undefined>;
|
|
63
69
|
Refresh(key: string): void;
|
|
64
70
|
RefreshAsync(key: string, token?: CancellationToken): Task;
|
|
@@ -31,6 +31,8 @@ export enum HybridCacheEntryFlags {
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
export interface IHybridCacheSerializer_1$instance<T> {
|
|
34
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Hybrid_IHybridCacheSerializer_1: never;
|
|
35
|
+
|
|
34
36
|
Deserialize(source: ReadOnlySequence<System_Internal.Byte>): T;
|
|
35
37
|
Serialize(value: T, target: IBufferWriter<System_Internal.Byte>): void;
|
|
36
38
|
}
|
|
@@ -39,6 +41,8 @@ export interface IHybridCacheSerializer_1$instance<T> {
|
|
|
39
41
|
export type IHybridCacheSerializer_1<T> = IHybridCacheSerializer_1$instance<T>;
|
|
40
42
|
|
|
41
43
|
export interface IHybridCacheSerializerFactory$instance {
|
|
44
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Hybrid_IHybridCacheSerializerFactory: never;
|
|
45
|
+
|
|
42
46
|
TryCreateSerializer<T>(serializer: IHybridCacheSerializer_1<T>): boolean;
|
|
43
47
|
}
|
|
44
48
|
|
|
@@ -60,8 +64,7 @@ export interface HybridCache$instance {
|
|
|
60
64
|
}
|
|
61
65
|
|
|
62
66
|
|
|
63
|
-
export const HybridCache: {
|
|
64
|
-
new(): HybridCache;
|
|
67
|
+
export const HybridCache: (abstract new() => HybridCache) & {
|
|
65
68
|
};
|
|
66
69
|
|
|
67
70
|
|
|
@@ -43,9 +43,11 @@ export type PostEvictionDelegate = (key: unknown, value: unknown, reason: Evicti
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
export interface ICacheEntry$instance extends IDisposable {
|
|
46
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Memory_ICacheEntry: never;
|
|
47
|
+
|
|
46
48
|
readonly Key: unknown;
|
|
47
49
|
get Value(): unknown | undefined;
|
|
48
|
-
set Value(value: unknown);
|
|
50
|
+
set Value(value: unknown | undefined);
|
|
49
51
|
AbsoluteExpiration: Nullable<DateTimeOffset>;
|
|
50
52
|
AbsoluteExpirationRelativeToNow: Nullable<TimeSpan>;
|
|
51
53
|
SlidingExpiration: Nullable<TimeSpan>;
|
|
@@ -56,9 +58,13 @@ export interface ICacheEntry$instance extends IDisposable {
|
|
|
56
58
|
}
|
|
57
59
|
|
|
58
60
|
|
|
61
|
+
export interface ICacheEntry$instance extends System_Internal.IDisposable {}
|
|
62
|
+
|
|
59
63
|
export type ICacheEntry = ICacheEntry$instance;
|
|
60
64
|
|
|
61
65
|
export interface IMemoryCache$instance extends IDisposable {
|
|
66
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Memory_IMemoryCache: never;
|
|
67
|
+
|
|
62
68
|
CreateEntry(key: unknown): ICacheEntry;
|
|
63
69
|
GetCurrentStatistics(): MemoryCacheStatistics | undefined;
|
|
64
70
|
Remove(key: unknown): void;
|
|
@@ -66,21 +72,22 @@ export interface IMemoryCache$instance extends IDisposable {
|
|
|
66
72
|
}
|
|
67
73
|
|
|
68
74
|
|
|
69
|
-
export
|
|
75
|
+
export interface IMemoryCache$instance extends System_Internal.IDisposable {}
|
|
70
76
|
|
|
71
|
-
export
|
|
72
|
-
protected Dispose(disposing: boolean): void;
|
|
73
|
-
protected Finalize(): void;
|
|
74
|
-
}
|
|
77
|
+
export type IMemoryCache = IMemoryCache$instance;
|
|
75
78
|
|
|
79
|
+
export interface MemoryCache$instance {
|
|
80
|
+
readonly __tsonic_iface_Microsoft_Extensions_Caching_Memory_IMemoryCache: never;
|
|
81
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
76
82
|
|
|
77
|
-
export interface MemoryCache$instance extends MemoryCache$protected {
|
|
78
83
|
readonly Count: int;
|
|
79
84
|
readonly Keys: IEnumerable<unknown>;
|
|
80
85
|
Clear(): void;
|
|
81
86
|
Compact(percentage: double): void;
|
|
82
87
|
CreateEntry(key: unknown): ICacheEntry;
|
|
83
88
|
Dispose(): void;
|
|
89
|
+
Dispose(disposing: boolean): void;
|
|
90
|
+
Finalize(): void;
|
|
84
91
|
GetCurrentStatistics(): MemoryCacheStatistics | undefined;
|
|
85
92
|
Remove(key: unknown): void;
|
|
86
93
|
TryGetValue(key: unknown, result: unknown): boolean;
|
|
@@ -121,8 +128,10 @@ export const MemoryCacheEntryOptions: {
|
|
|
121
128
|
export type MemoryCacheEntryOptions = MemoryCacheEntryOptions$instance;
|
|
122
129
|
|
|
123
130
|
export interface MemoryCacheOptions$instance {
|
|
131
|
+
readonly __tsonic_iface_Microsoft_Extensions_Options_IOptions_1: never;
|
|
132
|
+
|
|
124
133
|
get Clock(): ISystemClock | undefined;
|
|
125
|
-
set Clock(value: ISystemClock);
|
|
134
|
+
set Clock(value: ISystemClock | undefined);
|
|
126
135
|
CompactionPercentage: double;
|
|
127
136
|
CompactOnMemoryPressure: boolean;
|
|
128
137
|
ExpirationScanFrequency: TimeSpan;
|
|
@@ -162,6 +171,8 @@ export const MemoryCacheStatistics: {
|
|
|
162
171
|
export type MemoryCacheStatistics = MemoryCacheStatistics$instance;
|
|
163
172
|
|
|
164
173
|
export interface MemoryDistributedCacheOptions$instance extends MemoryCacheOptions$instance {
|
|
174
|
+
readonly __tsonic_iface_Microsoft_Extensions_Options_IOptions_1: never;
|
|
175
|
+
|
|
165
176
|
}
|
|
166
177
|
|
|
167
178
|
|
|
@@ -181,9 +192,9 @@ export type MemoryDistributedCacheOptions = MemoryDistributedCacheOptions$instan
|
|
|
181
192
|
|
|
182
193
|
export interface PostEvictionCallbackRegistration$instance {
|
|
183
194
|
get EvictionCallback(): PostEvictionDelegate | undefined;
|
|
184
|
-
set EvictionCallback(value: PostEvictionDelegate);
|
|
195
|
+
set EvictionCallback(value: PostEvictionDelegate | undefined);
|
|
185
196
|
get State(): unknown | undefined;
|
|
186
|
-
set State(value: unknown);
|
|
197
|
+
set State(value: unknown | undefined);
|
|
187
198
|
}
|
|
188
199
|
|
|
189
200
|
|
|
@@ -26,8 +26,9 @@ import type { Action, Attribute, Boolean as ClrBoolean, Exception, Func, IDispos
|
|
|
26
26
|
import type { Assembly } from "@tsonic/dotnet/System.Reflection.js";
|
|
27
27
|
|
|
28
28
|
export interface IConfiguration$instance {
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
30
|
+
|
|
31
|
+
[key: string]: string | undefined;
|
|
31
32
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
32
33
|
GetReloadToken(): IChangeToken;
|
|
33
34
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -37,6 +38,8 @@ export interface IConfiguration$instance {
|
|
|
37
38
|
export type IConfiguration = IConfiguration$instance;
|
|
38
39
|
|
|
39
40
|
export interface IConfigurationBuilder$instance {
|
|
41
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationBuilder: never;
|
|
42
|
+
|
|
40
43
|
readonly Properties: IDictionary<System_Internal.String, unknown>;
|
|
41
44
|
readonly Sources: IList<IConfigurationSource>;
|
|
42
45
|
Add(source: IConfigurationSource): IConfigurationBuilder;
|
|
@@ -47,8 +50,9 @@ export interface IConfigurationBuilder$instance {
|
|
|
47
50
|
export type IConfigurationBuilder = IConfigurationBuilder$instance;
|
|
48
51
|
|
|
49
52
|
export interface IConfigurationManager$instance extends IConfiguration, IConfigurationBuilder {
|
|
50
|
-
|
|
51
|
-
|
|
53
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationManager: never;
|
|
54
|
+
|
|
55
|
+
[key: string]: string | undefined;
|
|
52
56
|
readonly Properties: IDictionary<System_Internal.String, unknown>;
|
|
53
57
|
readonly Sources: IList<IConfigurationSource>;
|
|
54
58
|
Add(source: IConfigurationSource): IConfigurationBuilder;
|
|
@@ -64,6 +68,8 @@ export interface IConfigurationManager$instance extends IConfiguration$instance,
|
|
|
64
68
|
export type IConfigurationManager = IConfigurationManager$instance;
|
|
65
69
|
|
|
66
70
|
export interface IConfigurationProvider$instance {
|
|
71
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
72
|
+
|
|
67
73
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
68
74
|
GetReloadToken(): IChangeToken;
|
|
69
75
|
Load(): void;
|
|
@@ -75,9 +81,10 @@ export interface IConfigurationProvider$instance {
|
|
|
75
81
|
export type IConfigurationProvider = IConfigurationProvider$instance;
|
|
76
82
|
|
|
77
83
|
export interface IConfigurationRoot$instance extends IConfiguration {
|
|
84
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
85
|
+
|
|
78
86
|
readonly Providers: IEnumerable<IConfigurationProvider>;
|
|
79
|
-
|
|
80
|
-
set Item(value: string);
|
|
87
|
+
[key: string]: string | undefined;
|
|
81
88
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
82
89
|
GetReloadToken(): IChangeToken;
|
|
83
90
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -90,11 +97,13 @@ export interface IConfigurationRoot$instance extends IConfiguration$instance {}
|
|
|
90
97
|
export type IConfigurationRoot = IConfigurationRoot$instance;
|
|
91
98
|
|
|
92
99
|
export interface IConfigurationSection$instance extends IConfiguration {
|
|
100
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSection: never;
|
|
101
|
+
|
|
93
102
|
readonly Key: string;
|
|
94
103
|
readonly Path: string;
|
|
95
|
-
Value: string;
|
|
96
|
-
|
|
97
|
-
|
|
104
|
+
get Value(): string | undefined;
|
|
105
|
+
set Value(value: string | undefined);
|
|
106
|
+
[key: string]: string | undefined;
|
|
98
107
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
99
108
|
GetReloadToken(): IChangeToken;
|
|
100
109
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -106,6 +115,8 @@ export interface IConfigurationSection$instance extends IConfiguration$instance
|
|
|
106
115
|
export type IConfigurationSection = IConfigurationSection$instance;
|
|
107
116
|
|
|
108
117
|
export interface IConfigurationSource$instance {
|
|
118
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
119
|
+
|
|
109
120
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
110
121
|
}
|
|
111
122
|
|
|
@@ -141,6 +152,9 @@ export const BinderOptions: {
|
|
|
141
152
|
export type BinderOptions = BinderOptions$instance;
|
|
142
153
|
|
|
143
154
|
export interface ChainedConfigurationProvider$instance {
|
|
155
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
156
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
157
|
+
|
|
144
158
|
readonly Configuration: IConfiguration;
|
|
145
159
|
Dispose(): void;
|
|
146
160
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
@@ -160,13 +174,16 @@ export interface __ChainedConfigurationProvider$views {
|
|
|
160
174
|
As_IConfigurationProvider(): IConfigurationProvider$instance;
|
|
161
175
|
}
|
|
162
176
|
|
|
163
|
-
export interface ChainedConfigurationProvider$instance extends IConfigurationProvider$instance {}
|
|
177
|
+
export interface ChainedConfigurationProvider$instance extends IConfigurationProvider$instance, System_Internal.IDisposable {}
|
|
164
178
|
|
|
165
179
|
export type ChainedConfigurationProvider = ChainedConfigurationProvider$instance & __ChainedConfigurationProvider$views;
|
|
166
180
|
|
|
167
181
|
|
|
168
182
|
export interface ChainedConfigurationSource$instance {
|
|
169
|
-
|
|
183
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
184
|
+
|
|
185
|
+
get Configuration(): IConfiguration | undefined;
|
|
186
|
+
set Configuration(value: IConfiguration | undefined);
|
|
170
187
|
ShouldDisposeConfiguration: boolean;
|
|
171
188
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
172
189
|
}
|
|
@@ -187,6 +204,8 @@ export type ChainedConfigurationSource = ChainedConfigurationSource$instance & _
|
|
|
187
204
|
|
|
188
205
|
|
|
189
206
|
export interface ConfigurationBuilder$instance {
|
|
207
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationBuilder: never;
|
|
208
|
+
|
|
190
209
|
readonly Properties: IDictionary<System_Internal.String, unknown>;
|
|
191
210
|
readonly Sources: IList<IConfigurationSource>;
|
|
192
211
|
Add(source: IConfigurationSource): IConfigurationBuilder;
|
|
@@ -209,6 +228,8 @@ export type ConfigurationBuilder = ConfigurationBuilder$instance & __Configurati
|
|
|
209
228
|
|
|
210
229
|
|
|
211
230
|
export interface ConfigurationKeyComparer$instance {
|
|
231
|
+
readonly __tsonic_iface_System_Collections_Generic_IComparer_1: never;
|
|
232
|
+
|
|
212
233
|
Compare(x: string, y: string): int;
|
|
213
234
|
}
|
|
214
235
|
|
|
@@ -234,8 +255,13 @@ export const ConfigurationKeyNameAttribute: {
|
|
|
234
255
|
export type ConfigurationKeyNameAttribute = ConfigurationKeyNameAttribute$instance;
|
|
235
256
|
|
|
236
257
|
export interface ConfigurationManager$instance {
|
|
237
|
-
|
|
238
|
-
|
|
258
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
259
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationBuilder: never;
|
|
260
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationManager: never;
|
|
261
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
262
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
263
|
+
|
|
264
|
+
[key: string]: string | undefined;
|
|
239
265
|
readonly Sources: IList<IConfigurationSource>;
|
|
240
266
|
Dispose(): void;
|
|
241
267
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
@@ -254,10 +280,14 @@ export interface __ConfigurationManager$views {
|
|
|
254
280
|
As_IConfigurationRoot(): IConfigurationRoot$instance;
|
|
255
281
|
}
|
|
256
282
|
|
|
283
|
+
export interface ConfigurationManager$instance extends System_Internal.IDisposable {}
|
|
284
|
+
|
|
257
285
|
export type ConfigurationManager = ConfigurationManager$instance & __ConfigurationManager$views;
|
|
258
286
|
|
|
259
287
|
|
|
260
288
|
export interface ConfigurationProvider$instance {
|
|
289
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
290
|
+
|
|
261
291
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
262
292
|
GetReloadToken(): IChangeToken;
|
|
263
293
|
Load(): void;
|
|
@@ -267,8 +297,7 @@ export interface ConfigurationProvider$instance {
|
|
|
267
297
|
}
|
|
268
298
|
|
|
269
299
|
|
|
270
|
-
export const ConfigurationProvider: {
|
|
271
|
-
new(): ConfigurationProvider;
|
|
300
|
+
export const ConfigurationProvider: (abstract new() => ConfigurationProvider) & {
|
|
272
301
|
};
|
|
273
302
|
|
|
274
303
|
|
|
@@ -282,6 +311,8 @@ export type ConfigurationProvider = ConfigurationProvider$instance & __Configura
|
|
|
282
311
|
|
|
283
312
|
|
|
284
313
|
export interface ConfigurationReloadToken$instance {
|
|
314
|
+
readonly __tsonic_iface_Microsoft_Extensions_Primitives_IChangeToken: never;
|
|
315
|
+
|
|
285
316
|
ActiveChangeCallbacks: boolean;
|
|
286
317
|
readonly HasChanged: boolean;
|
|
287
318
|
OnReload(): void;
|
|
@@ -302,8 +333,11 @@ export type ConfigurationReloadToken = ConfigurationReloadToken$instance & __Con
|
|
|
302
333
|
|
|
303
334
|
|
|
304
335
|
export interface ConfigurationRoot$instance {
|
|
305
|
-
|
|
306
|
-
|
|
336
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
337
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationRoot: never;
|
|
338
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
339
|
+
|
|
340
|
+
[key: string]: string | undefined;
|
|
307
341
|
readonly Providers: IEnumerable<IConfigurationProvider>;
|
|
308
342
|
Dispose(): void;
|
|
309
343
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
@@ -323,15 +357,20 @@ export interface __ConfigurationRoot$views {
|
|
|
323
357
|
As_IConfigurationRoot(): IConfigurationRoot$instance;
|
|
324
358
|
}
|
|
325
359
|
|
|
360
|
+
export interface ConfigurationRoot$instance extends System_Internal.IDisposable {}
|
|
361
|
+
|
|
326
362
|
export type ConfigurationRoot = ConfigurationRoot$instance & __ConfigurationRoot$views;
|
|
327
363
|
|
|
328
364
|
|
|
329
365
|
export interface ConfigurationSection$instance {
|
|
330
|
-
|
|
331
|
-
|
|
366
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfiguration: never;
|
|
367
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSection: never;
|
|
368
|
+
|
|
369
|
+
[key: string]: string | undefined;
|
|
332
370
|
readonly Key: string;
|
|
333
371
|
readonly Path: string;
|
|
334
|
-
Value: string;
|
|
372
|
+
get Value(): string | undefined;
|
|
373
|
+
set Value(value: string | undefined);
|
|
335
374
|
GetChildren(): IEnumerable<IConfigurationSection>;
|
|
336
375
|
GetReloadToken(): IChangeToken;
|
|
337
376
|
GetSection(key: string): IConfigurationSection;
|
|
@@ -352,14 +391,13 @@ export interface __ConfigurationSection$views {
|
|
|
352
391
|
export type ConfigurationSection = ConfigurationSection$instance & __ConfigurationSection$views;
|
|
353
392
|
|
|
354
393
|
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
394
|
+
export interface FileConfigurationProvider$instance extends ConfigurationProvider$instance {
|
|
395
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
396
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
359
397
|
|
|
360
|
-
export interface FileConfigurationProvider$instance extends FileConfigurationProvider$protected, ConfigurationProvider$instance {
|
|
361
398
|
readonly Source: FileConfigurationSource;
|
|
362
399
|
Dispose(): void;
|
|
400
|
+
Dispose(disposing: boolean): void;
|
|
363
401
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
364
402
|
GetReloadToken(): IChangeToken;
|
|
365
403
|
Load(): void;
|
|
@@ -369,8 +407,7 @@ export interface FileConfigurationProvider$instance extends FileConfigurationPro
|
|
|
369
407
|
}
|
|
370
408
|
|
|
371
409
|
|
|
372
|
-
export const FileConfigurationProvider: {
|
|
373
|
-
new(source: FileConfigurationSource): FileConfigurationProvider;
|
|
410
|
+
export const FileConfigurationProvider: (abstract new(source: FileConfigurationSource) => FileConfigurationProvider) & {
|
|
374
411
|
};
|
|
375
412
|
|
|
376
413
|
|
|
@@ -378,16 +415,21 @@ export interface __FileConfigurationProvider$views {
|
|
|
378
415
|
As_IConfigurationProvider(): IConfigurationProvider$instance;
|
|
379
416
|
}
|
|
380
417
|
|
|
418
|
+
export interface FileConfigurationProvider$instance extends System_Internal.IDisposable {}
|
|
419
|
+
|
|
381
420
|
export type FileConfigurationProvider = FileConfigurationProvider$instance & __FileConfigurationProvider$views;
|
|
382
421
|
|
|
383
422
|
|
|
384
423
|
export interface FileConfigurationSource$instance {
|
|
424
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
425
|
+
|
|
385
426
|
get FileProvider(): IFileProvider | undefined;
|
|
386
|
-
set FileProvider(value: IFileProvider);
|
|
427
|
+
set FileProvider(value: IFileProvider | undefined);
|
|
387
428
|
get OnLoadException(): Action<FileLoadExceptionContext> | undefined;
|
|
388
|
-
set OnLoadException(value: Action<FileLoadExceptionContext>);
|
|
429
|
+
set OnLoadException(value: Action<FileLoadExceptionContext> | undefined);
|
|
389
430
|
Optional: boolean;
|
|
390
|
-
Path: string;
|
|
431
|
+
get Path(): string | undefined;
|
|
432
|
+
set Path(value: string | undefined);
|
|
391
433
|
ReloadDelay: int;
|
|
392
434
|
ReloadOnChange: boolean;
|
|
393
435
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
@@ -396,8 +438,7 @@ export interface FileConfigurationSource$instance {
|
|
|
396
438
|
}
|
|
397
439
|
|
|
398
440
|
|
|
399
|
-
export const FileConfigurationSource: {
|
|
400
|
-
new(): FileConfigurationSource;
|
|
441
|
+
export const FileConfigurationSource: (abstract new() => FileConfigurationSource) & {
|
|
401
442
|
};
|
|
402
443
|
|
|
403
444
|
|
|
@@ -425,6 +466,8 @@ export const FileLoadExceptionContext: {
|
|
|
425
466
|
export type FileLoadExceptionContext = FileLoadExceptionContext$instance;
|
|
426
467
|
|
|
427
468
|
export interface StreamConfigurationProvider$instance extends ConfigurationProvider$instance {
|
|
469
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
470
|
+
|
|
428
471
|
readonly Source: StreamConfigurationSource;
|
|
429
472
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
430
473
|
GetReloadToken(): IChangeToken;
|
|
@@ -434,8 +477,7 @@ export interface StreamConfigurationProvider$instance extends ConfigurationProvi
|
|
|
434
477
|
}
|
|
435
478
|
|
|
436
479
|
|
|
437
|
-
export const StreamConfigurationProvider: {
|
|
438
|
-
new(source: StreamConfigurationSource): StreamConfigurationProvider;
|
|
480
|
+
export const StreamConfigurationProvider: (abstract new(source: StreamConfigurationSource) => StreamConfigurationProvider) & {
|
|
439
481
|
};
|
|
440
482
|
|
|
441
483
|
|
|
@@ -447,14 +489,15 @@ export type StreamConfigurationProvider = StreamConfigurationProvider$instance &
|
|
|
447
489
|
|
|
448
490
|
|
|
449
491
|
export interface StreamConfigurationSource$instance {
|
|
492
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
493
|
+
|
|
450
494
|
get Stream(): Stream | undefined;
|
|
451
|
-
set Stream(value: Stream);
|
|
495
|
+
set Stream(value: Stream | undefined);
|
|
452
496
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
453
497
|
}
|
|
454
498
|
|
|
455
499
|
|
|
456
|
-
export const StreamConfigurationSource: {
|
|
457
|
-
new(): StreamConfigurationSource;
|
|
500
|
+
export const StreamConfigurationSource: (abstract new() => StreamConfigurationSource) & {
|
|
458
501
|
};
|
|
459
502
|
|
|
460
503
|
|
|
@@ -17,6 +17,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
17
17
|
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
18
18
|
|
|
19
19
|
export interface CommandLineConfigurationProvider$instance extends ConfigurationProvider {
|
|
20
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
21
|
+
|
|
20
22
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
21
23
|
GetReloadToken(): IChangeToken;
|
|
22
24
|
Load(): void;
|
|
@@ -38,9 +40,11 @@ export type CommandLineConfigurationProvider = CommandLineConfigurationProvider$
|
|
|
38
40
|
|
|
39
41
|
|
|
40
42
|
export interface CommandLineConfigurationSource$instance {
|
|
43
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
44
|
+
|
|
41
45
|
Args: IEnumerable<System_Internal.String>;
|
|
42
46
|
get SwitchMappings(): IDictionary<System_Internal.String, System_Internal.String> | undefined;
|
|
43
|
-
set SwitchMappings(value: IDictionary<System_Internal.String, System_Internal.String>);
|
|
47
|
+
set SwitchMappings(value: IDictionary<System_Internal.String, System_Internal.String> | undefined);
|
|
44
48
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
45
49
|
}
|
|
46
50
|
|
|
@@ -17,6 +17,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
17
17
|
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
18
18
|
|
|
19
19
|
export interface EnvironmentVariablesConfigurationProvider$instance extends ConfigurationProvider {
|
|
20
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
21
|
+
|
|
20
22
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
21
23
|
GetReloadToken(): IChangeToken;
|
|
22
24
|
Load(): void;
|
|
@@ -40,8 +42,10 @@ export type EnvironmentVariablesConfigurationProvider = EnvironmentVariablesConf
|
|
|
40
42
|
|
|
41
43
|
|
|
42
44
|
export interface EnvironmentVariablesConfigurationSource$instance {
|
|
45
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
46
|
+
|
|
43
47
|
get Prefix(): string | undefined;
|
|
44
|
-
set Prefix(value: string);
|
|
48
|
+
set Prefix(value: string | undefined);
|
|
45
49
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
46
50
|
}
|
|
47
51
|
|
|
@@ -19,6 +19,9 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
19
19
|
import type { Action, Boolean as ClrBoolean, IDisposable, Int32, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
20
20
|
|
|
21
21
|
export interface IniConfigurationProvider$instance extends FileConfigurationProvider {
|
|
22
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
23
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
24
|
+
|
|
22
25
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
23
26
|
GetReloadToken(): IChangeToken;
|
|
24
27
|
Load(stream: Stream): void;
|
|
@@ -37,10 +40,14 @@ export interface __IniConfigurationProvider$views {
|
|
|
37
40
|
As_IConfigurationProvider(): Microsoft_Extensions_Configuration_Internal.IConfigurationProvider$instance;
|
|
38
41
|
}
|
|
39
42
|
|
|
43
|
+
export interface IniConfigurationProvider$instance extends System_Internal.IDisposable {}
|
|
44
|
+
|
|
40
45
|
export type IniConfigurationProvider = IniConfigurationProvider$instance & __IniConfigurationProvider$views;
|
|
41
46
|
|
|
42
47
|
|
|
43
48
|
export interface IniConfigurationSource$instance extends FileConfigurationSource {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
50
|
+
|
|
44
51
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
45
52
|
}
|
|
46
53
|
|
|
@@ -58,6 +65,8 @@ export type IniConfigurationSource = IniConfigurationSource$instance & __IniConf
|
|
|
58
65
|
|
|
59
66
|
|
|
60
67
|
export interface IniStreamConfigurationProvider$instance extends StreamConfigurationProvider {
|
|
68
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
69
|
+
|
|
61
70
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
62
71
|
GetReloadToken(): IChangeToken;
|
|
63
72
|
Load(stream: Stream): void;
|
|
@@ -81,6 +90,8 @@ export type IniStreamConfigurationProvider = IniStreamConfigurationProvider$inst
|
|
|
81
90
|
|
|
82
91
|
|
|
83
92
|
export interface IniStreamConfigurationSource$instance extends StreamConfigurationSource {
|
|
93
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
94
|
+
|
|
84
95
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
85
96
|
}
|
|
86
97
|
|
|
@@ -19,6 +19,9 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
19
19
|
import type { Action, Boolean as ClrBoolean, IDisposable, Int32, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
20
20
|
|
|
21
21
|
export interface JsonConfigurationProvider$instance extends FileConfigurationProvider {
|
|
22
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
23
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
24
|
+
|
|
22
25
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
23
26
|
GetReloadToken(): IChangeToken;
|
|
24
27
|
Load(stream: Stream): void;
|
|
@@ -37,10 +40,14 @@ export interface __JsonConfigurationProvider$views {
|
|
|
37
40
|
As_IConfigurationProvider(): Microsoft_Extensions_Configuration_Internal.IConfigurationProvider$instance;
|
|
38
41
|
}
|
|
39
42
|
|
|
43
|
+
export interface JsonConfigurationProvider$instance extends System_Internal.IDisposable {}
|
|
44
|
+
|
|
40
45
|
export type JsonConfigurationProvider = JsonConfigurationProvider$instance & __JsonConfigurationProvider$views;
|
|
41
46
|
|
|
42
47
|
|
|
43
48
|
export interface JsonConfigurationSource$instance extends FileConfigurationSource {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
50
|
+
|
|
44
51
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
45
52
|
}
|
|
46
53
|
|
|
@@ -58,6 +65,8 @@ export type JsonConfigurationSource = JsonConfigurationSource$instance & __JsonC
|
|
|
58
65
|
|
|
59
66
|
|
|
60
67
|
export interface JsonStreamConfigurationProvider$instance extends StreamConfigurationProvider {
|
|
68
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
69
|
+
|
|
61
70
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
62
71
|
GetReloadToken(): IChangeToken;
|
|
63
72
|
Load(stream: Stream): void;
|
|
@@ -80,6 +89,8 @@ export type JsonStreamConfigurationProvider = JsonStreamConfigurationProvider$in
|
|
|
80
89
|
|
|
81
90
|
|
|
82
91
|
export interface JsonStreamConfigurationSource$instance extends StreamConfigurationSource {
|
|
92
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
93
|
+
|
|
83
94
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
84
95
|
}
|
|
85
96
|
|
|
@@ -18,6 +18,9 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
18
18
|
import type { Boolean as ClrBoolean, Func, IDisposable, Int32, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
19
19
|
|
|
20
20
|
export interface KeyPerFileConfigurationProvider$instance extends ConfigurationProvider {
|
|
21
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
22
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
23
|
+
|
|
21
24
|
Dispose(): void;
|
|
22
25
|
GetChildKeys(earlierKeys: IEnumerable<System_Internal.String>, parentPath: string): IEnumerable<System_Internal.String>;
|
|
23
26
|
GetReloadToken(): IChangeToken;
|
|
@@ -37,12 +40,16 @@ export interface __KeyPerFileConfigurationProvider$views {
|
|
|
37
40
|
As_IConfigurationProvider(): Microsoft_Extensions_Configuration_Internal.IConfigurationProvider$instance;
|
|
38
41
|
}
|
|
39
42
|
|
|
43
|
+
export interface KeyPerFileConfigurationProvider$instance extends System_Internal.IDisposable {}
|
|
44
|
+
|
|
40
45
|
export type KeyPerFileConfigurationProvider = KeyPerFileConfigurationProvider$instance & __KeyPerFileConfigurationProvider$views;
|
|
41
46
|
|
|
42
47
|
|
|
43
48
|
export interface KeyPerFileConfigurationSource$instance {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
50
|
+
|
|
44
51
|
get FileProvider(): IFileProvider | undefined;
|
|
45
|
-
set FileProvider(value: IFileProvider);
|
|
52
|
+
set FileProvider(value: IFileProvider | undefined);
|
|
46
53
|
IgnoreCondition: Func<System_Internal.String, System_Internal.Boolean>;
|
|
47
54
|
IgnorePrefix: string;
|
|
48
55
|
Optional: boolean;
|
|
@@ -20,6 +20,10 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
20
20
|
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
21
21
|
|
|
22
22
|
export interface MemoryConfigurationProvider$instance extends ConfigurationProvider {
|
|
23
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationProvider: never;
|
|
24
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
25
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
26
|
+
|
|
23
27
|
Add(key: string, value: string): void;
|
|
24
28
|
GetChildKeys(earlierKeys: IEnumerable__System_Collections_Generic<System_Internal.String>, parentPath: string): IEnumerable__System_Collections_Generic<System_Internal.String>;
|
|
25
29
|
GetEnumerator(): IEnumerator<KeyValuePair<System_Internal.String, System_Internal.String>>;
|
|
@@ -39,12 +43,16 @@ export interface __MemoryConfigurationProvider$views {
|
|
|
39
43
|
As_IConfigurationProvider(): Microsoft_Extensions_Configuration_Internal.IConfigurationProvider$instance;
|
|
40
44
|
}
|
|
41
45
|
|
|
46
|
+
export interface MemoryConfigurationProvider$instance extends System_Collections_Generic_Internal.IEnumerable<KeyValuePair<System_Internal.String, System_Internal.String>> {}
|
|
47
|
+
|
|
42
48
|
export type MemoryConfigurationProvider = MemoryConfigurationProvider$instance & __MemoryConfigurationProvider$views;
|
|
43
49
|
|
|
44
50
|
|
|
45
51
|
export interface MemoryConfigurationSource$instance {
|
|
52
|
+
readonly __tsonic_iface_Microsoft_Extensions_Configuration_IConfigurationSource: never;
|
|
53
|
+
|
|
46
54
|
get InitialData(): IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, System_Internal.String>> | undefined;
|
|
47
|
-
set InitialData(value: IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, System_Internal.String>>);
|
|
55
|
+
set InitialData(value: IEnumerable__System_Collections_Generic<KeyValuePair<System_Internal.String, System_Internal.String>> | undefined);
|
|
48
56
|
Build(builder: IConfigurationBuilder): IConfigurationProvider;
|
|
49
57
|
}
|
|
50
58
|
|