@tsonic/aspnetcore 10.0.2 → 10.0.6
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.AspNetCore/internal/index.d.ts +6 -6
- package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +27 -9
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +250 -112
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +64 -34
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +47 -28
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +28 -11
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +137 -75
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +53 -32
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +221 -139
- package/Microsoft.AspNetCore.Builder.Extensions/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +358 -187
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +46 -17
- package/Microsoft.AspNetCore.Components.CompilerServices/internal/index.d.ts +8 -8
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components.Endpoints.Infrastructure/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +220 -89
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +10 -5
- package/Microsoft.AspNetCore.Components.Infrastructure/internal/index.d.ts +9 -7
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +44 -13
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +16 -8
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +55 -22
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +33 -20
- package/Microsoft.AspNetCore.Components.Server.Circuits/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +105 -37
- package/Microsoft.AspNetCore.Components.Web.HtmlRendering/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Web.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +27 -15
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +130 -49
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +64 -20
- package/Microsoft.AspNetCore.CookiePolicy/internal/index.d.ts +13 -7
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +19 -8
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +55 -29
- package/Microsoft.AspNetCore.Cryptography.KeyDerivation/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +43 -20
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +28 -16
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +59 -27
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +32 -19
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +19 -5
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +31 -15
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +58 -32
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +64 -21
- package/Microsoft.AspNetCore.Diagnostics.HealthChecks/internal/index.d.ts +15 -11
- package/Microsoft.AspNetCore.HostFiltering/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +89 -47
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +9 -5
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +16 -4
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting.StaticWebAssets/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +31 -13
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +408 -199
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +34 -16
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +21 -16
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +208 -88
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +31 -27
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +378 -171
- package/Microsoft.AspNetCore.Http.Json/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +74 -26
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +18 -8
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +23 -11
- package/Microsoft.AspNetCore.HttpOverrides/internal/index.d.ts +23 -13
- package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +725 -456
- package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +23 -3
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +57 -27
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +724 -205
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +27 -13
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +37 -13
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +76 -30
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +244 -125
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +59 -25
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +21 -10
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +51 -24
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +12 -7
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +431 -68
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +140 -44
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +192 -89
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +77 -36
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +162 -66
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +48 -25
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +379 -133
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +217 -128
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +156 -102
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +100 -43
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +105 -56
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +19 -9
- package/Microsoft.AspNetCore.Mvc.Razor.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Mvc.Razor.Internal/internal/index.d.ts +4 -2
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +81 -42
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +70 -37
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +123 -95
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +57 -25
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +151 -72
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +41 -23
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +94 -48
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +24 -11
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +266 -144
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure/internal/index.d.ts +7 -5
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +44 -26
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +22 -12
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +28 -10
- package/Microsoft.AspNetCore.Razor.Runtime.TagHelpers/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +100 -31
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +18 -10
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +64 -29
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +20 -12
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +291 -131
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +191 -79
- package/Microsoft.AspNetCore.Routing.Internal/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +61 -25
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +40 -20
- package/Microsoft.AspNetCore.Routing.Template/internal/index.d.ts +25 -9
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +29 -13
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +50 -18
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +12 -4
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Server.Kestrel/internal/index.d.ts +16 -12
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +56 -36
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +17 -3
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +20 -8
- package/Microsoft.AspNetCore.Server.Kestrel.Https/internal/index.d.ts +23 -17
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +29 -18
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +32 -22
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +191 -91
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +63 -25
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +21 -11
- package/Microsoft.AspNetCore.StaticAssets.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +38 -22
- package/Microsoft.AspNetCore.StaticFiles.Infrastructure/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +14 -10
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +119 -73
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +135 -123
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +10 -8
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +95 -52
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +40 -26
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +10 -2
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +92 -60
- package/System.Formats.Cbor/internal/index.d.ts +29 -21
- package/System.Security.Claims/internal/index.d.ts +3 -3
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +84 -29
- package/__internal/extensions/index.d.ts +1776 -1190
- package/package.json +4 -4
|
@@ -7,11 +7,13 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { IHtmlContent } from "../../Microsoft.AspNetCore.Html/internal/index.js";
|
|
10
|
-
import type { TextWriter } from "@tsonic/dotnet/System.IO.js";
|
|
11
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
|
-
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System.js";
|
|
10
|
+
import type { TextWriter } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface IViewBufferScope$instance {
|
|
15
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ViewFeatures_Buffers_IViewBufferScope: never;
|
|
16
|
+
|
|
15
17
|
CreateWriter(writer: TextWriter): TextWriter;
|
|
16
18
|
GetPage(pageSize: int): ViewBufferValue[];
|
|
17
19
|
ReturnSegment(segment: ViewBufferValue[]): void;
|
|
@@ -21,6 +23,8 @@ export interface IViewBufferScope$instance {
|
|
|
21
23
|
export type IViewBufferScope = IViewBufferScope$instance;
|
|
22
24
|
|
|
23
25
|
export interface ViewBufferValue$instance {
|
|
26
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewFeatures_Buffers_ViewBufferValue: never;
|
|
27
|
+
|
|
24
28
|
readonly Value: unknown;
|
|
25
29
|
}
|
|
26
30
|
|
|
@@ -6,14 +6,16 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
10
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
11
|
-
import type { Boolean as ClrBoolean, Byte, Object as ClrObject, String as ClrString, Type } from "@tsonic/dotnet/System.js";
|
|
9
|
+
import type { IDictionary_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
10
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
11
|
+
import type { Boolean as ClrBoolean, Byte, Object as ClrObject, String as ClrString, Type } from "@tsonic/dotnet/System/internal/index.js";
|
|
12
12
|
|
|
13
13
|
export interface TempDataSerializer$instance {
|
|
14
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ViewFeatures_Infrastructure_TempDataSerializer: never;
|
|
15
|
+
|
|
14
16
|
CanSerializeType(type: Type): boolean;
|
|
15
|
-
Deserialize(unprotectedData: byte[]):
|
|
16
|
-
Serialize(values:
|
|
17
|
+
Deserialize(unprotectedData: byte[]): IDictionary_2<System_Internal.String, unknown>;
|
|
18
|
+
Serialize(values: IDictionary_2<System_Internal.String, unknown>): byte[];
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
|
|
@@ -7,27 +7,31 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import type {
|
|
12
|
-
import type { PipeWriter } from "@tsonic/dotnet/System.IO.Pipelines.js";
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
10
|
+
import type { ReadOnlySequence_1 } from "@tsonic/dotnet/System.Buffers/internal/index.js";
|
|
11
|
+
import type { HashSet_1, IDictionary_2, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
12
|
+
import type { PipeWriter } from "@tsonic/dotnet/System.IO.Pipelines/internal/index.js";
|
|
13
|
+
import type { ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
14
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
15
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import type { Action_1, Attribute, Boolean as ClrBoolean, Byte, DateTimeOffset, Func_2, Func_3, Int32, Int64, IServiceProvider, Nullable_1, Object as ClrObject, ReadOnlyMemory_1, String as ClrString, TimeSpan, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { StringValues } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface IOutputCacheBufferStore$instance extends IOutputCacheStore {
|
|
20
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_OutputCaching_IOutputCacheBufferStore: never;
|
|
21
|
+
|
|
20
22
|
EvictByTagAsync(tag: string, cancellationToken: CancellationToken): ValueTask;
|
|
21
|
-
GetAsync(key: string, cancellationToken: CancellationToken):
|
|
22
|
-
SetAsync(key: string, value:
|
|
23
|
+
GetAsync(key: string, cancellationToken: CancellationToken): ValueTask_1<byte[]>;
|
|
24
|
+
SetAsync(key: string, value: ReadOnlySequence_1<System_Internal.Byte>, tags: ReadOnlyMemory_1<System_Internal.String>, validFor: TimeSpan, cancellationToken: CancellationToken): ValueTask;
|
|
23
25
|
SetAsync(key: string, value: byte[], tags: string[], validFor: TimeSpan, cancellationToken: CancellationToken): ValueTask;
|
|
24
|
-
TryGetAsync(key: string, destination: PipeWriter, cancellationToken: CancellationToken):
|
|
26
|
+
TryGetAsync(key: string, destination: PipeWriter, cancellationToken: CancellationToken): ValueTask_1<System_Internal.Boolean>;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
|
|
28
30
|
export type IOutputCacheBufferStore = IOutputCacheBufferStore$instance;
|
|
29
31
|
|
|
30
32
|
export interface IOutputCacheFeature$instance {
|
|
33
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_OutputCaching_IOutputCacheFeature: never;
|
|
34
|
+
|
|
31
35
|
readonly Context: OutputCacheContext;
|
|
32
36
|
}
|
|
33
37
|
|
|
@@ -35,6 +39,8 @@ export interface IOutputCacheFeature$instance {
|
|
|
35
39
|
export type IOutputCacheFeature = IOutputCacheFeature$instance;
|
|
36
40
|
|
|
37
41
|
export interface IOutputCachePolicy$instance {
|
|
42
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_OutputCaching_IOutputCachePolicy: never;
|
|
43
|
+
|
|
38
44
|
CacheRequestAsync(context: OutputCacheContext, cancellation: CancellationToken): ValueTask;
|
|
39
45
|
}
|
|
40
46
|
|
|
@@ -42,8 +48,10 @@ export interface IOutputCachePolicy$instance {
|
|
|
42
48
|
export type IOutputCachePolicy = IOutputCachePolicy$instance;
|
|
43
49
|
|
|
44
50
|
export interface IOutputCacheStore$instance {
|
|
51
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_OutputCaching_IOutputCacheStore: never;
|
|
52
|
+
|
|
45
53
|
EvictByTagAsync(tag: string, cancellationToken: CancellationToken): ValueTask;
|
|
46
|
-
GetAsync(key: string, cancellationToken: CancellationToken):
|
|
54
|
+
GetAsync(key: string, cancellationToken: CancellationToken): ValueTask_1<byte[]>;
|
|
47
55
|
SetAsync(key: string, value: byte[], tags: string[], validFor: TimeSpan, cancellationToken: CancellationToken): ValueTask;
|
|
48
56
|
}
|
|
49
57
|
|
|
@@ -51,13 +59,15 @@ export interface IOutputCacheStore$instance {
|
|
|
51
59
|
export type IOutputCacheStore = IOutputCacheStore$instance;
|
|
52
60
|
|
|
53
61
|
export interface CacheVaryByRules$instance {
|
|
62
|
+
readonly __tsonic_type_Microsoft_AspNetCore_OutputCaching_CacheVaryByRules: never;
|
|
63
|
+
|
|
54
64
|
get CacheKeyPrefix(): string | undefined;
|
|
55
65
|
set CacheKeyPrefix(value: string | undefined);
|
|
56
66
|
HeaderNames: StringValues;
|
|
57
67
|
QueryKeys: StringValues;
|
|
58
68
|
RouteValueNames: StringValues;
|
|
59
69
|
VaryByHost: boolean;
|
|
60
|
-
readonly VaryByValues:
|
|
70
|
+
readonly VaryByValues: IDictionary_2<System_Internal.String, System_Internal.String>;
|
|
61
71
|
}
|
|
62
72
|
|
|
63
73
|
|
|
@@ -69,6 +79,8 @@ export const CacheVaryByRules: {
|
|
|
69
79
|
export type CacheVaryByRules = CacheVaryByRules$instance;
|
|
70
80
|
|
|
71
81
|
export interface OutputCacheAttribute$instance extends Attribute {
|
|
82
|
+
readonly __tsonic_type_Microsoft_AspNetCore_OutputCaching_OutputCacheAttribute: never;
|
|
83
|
+
|
|
72
84
|
Duration: int;
|
|
73
85
|
NoStore: boolean;
|
|
74
86
|
get PolicyName(): string | undefined;
|
|
@@ -92,15 +104,17 @@ export const OutputCacheAttribute: {
|
|
|
92
104
|
export type OutputCacheAttribute = OutputCacheAttribute$instance;
|
|
93
105
|
|
|
94
106
|
export interface OutputCacheContext$instance {
|
|
107
|
+
readonly __tsonic_type_Microsoft_AspNetCore_OutputCaching_OutputCacheContext: never;
|
|
108
|
+
|
|
95
109
|
AllowCacheLookup: boolean;
|
|
96
110
|
AllowCacheStorage: boolean;
|
|
97
111
|
AllowLocking: boolean;
|
|
98
112
|
readonly CacheVaryByRules: CacheVaryByRules;
|
|
99
113
|
EnableOutputCaching: boolean;
|
|
100
114
|
HttpContext: HttpContext;
|
|
101
|
-
ResponseExpirationTimeSpan:
|
|
102
|
-
ResponseTime:
|
|
103
|
-
readonly Tags:
|
|
115
|
+
ResponseExpirationTimeSpan: Nullable_1<TimeSpan>;
|
|
116
|
+
ResponseTime: Nullable_1<DateTimeOffset>;
|
|
117
|
+
readonly Tags: HashSet_1<System_Internal.String>;
|
|
104
118
|
}
|
|
105
119
|
|
|
106
120
|
|
|
@@ -112,17 +126,19 @@ export const OutputCacheContext: {
|
|
|
112
126
|
export type OutputCacheContext = OutputCacheContext$instance;
|
|
113
127
|
|
|
114
128
|
export interface OutputCacheOptions$instance {
|
|
129
|
+
readonly __tsonic_type_Microsoft_AspNetCore_OutputCaching_OutputCacheOptions: never;
|
|
130
|
+
|
|
115
131
|
ApplicationServices: IServiceProvider;
|
|
116
132
|
DefaultExpirationTimeSpan: TimeSpan;
|
|
117
133
|
MaximumBodySize: long;
|
|
118
134
|
SizeLimit: long;
|
|
119
135
|
UseCaseSensitivePaths: boolean;
|
|
120
136
|
AddBasePolicy(policy: IOutputCachePolicy): void;
|
|
121
|
-
AddBasePolicy(build:
|
|
122
|
-
AddBasePolicy(build:
|
|
137
|
+
AddBasePolicy(build: Action_1<OutputCachePolicyBuilder>): void;
|
|
138
|
+
AddBasePolicy(build: Action_1<OutputCachePolicyBuilder>, excludeDefaultPolicy: boolean): void;
|
|
123
139
|
AddPolicy(name: string, policy: IOutputCachePolicy): void;
|
|
124
|
-
AddPolicy(name: string, build:
|
|
125
|
-
AddPolicy(name: string, build:
|
|
140
|
+
AddPolicy(name: string, build: Action_1<OutputCachePolicyBuilder>): void;
|
|
141
|
+
AddPolicy(name: string, build: Action_1<OutputCachePolicyBuilder>, excludeDefaultPolicy: boolean): void;
|
|
126
142
|
}
|
|
127
143
|
|
|
128
144
|
|
|
@@ -134,14 +150,16 @@ export const OutputCacheOptions: {
|
|
|
134
150
|
export type OutputCacheOptions = OutputCacheOptions$instance;
|
|
135
151
|
|
|
136
152
|
export interface OutputCachePolicyBuilder$instance {
|
|
153
|
+
readonly __tsonic_type_Microsoft_AspNetCore_OutputCaching_OutputCachePolicyBuilder: never;
|
|
154
|
+
|
|
137
155
|
AddPolicy(policyType: Type): OutputCachePolicyBuilder;
|
|
138
156
|
AddPolicy<T extends IOutputCachePolicy>(): OutputCachePolicyBuilder;
|
|
139
157
|
Cache(): OutputCachePolicyBuilder;
|
|
140
158
|
Expire(expiration: TimeSpan): OutputCachePolicyBuilder;
|
|
141
159
|
NoCache(): OutputCachePolicyBuilder;
|
|
142
160
|
SetCacheKeyPrefix(keyPrefix: string): OutputCachePolicyBuilder;
|
|
143
|
-
SetCacheKeyPrefix(keyPrefix:
|
|
144
|
-
SetCacheKeyPrefix(keyPrefix:
|
|
161
|
+
SetCacheKeyPrefix(keyPrefix: Func_2<HttpContext, System_Internal.String>): OutputCachePolicyBuilder;
|
|
162
|
+
SetCacheKeyPrefix(keyPrefix: Func_3<HttpContext, CancellationToken, ValueTask_1<System_Internal.String>>): OutputCachePolicyBuilder;
|
|
145
163
|
SetLocking(enabled: boolean): OutputCachePolicyBuilder;
|
|
146
164
|
SetVaryByHeader(headerName: string, ...headerNames: string[]): OutputCachePolicyBuilder;
|
|
147
165
|
SetVaryByHeader(headerNames: string[]): OutputCachePolicyBuilder;
|
|
@@ -152,10 +170,10 @@ export interface OutputCachePolicyBuilder$instance {
|
|
|
152
170
|
SetVaryByRouteValue(routeValueNames: string[]): OutputCachePolicyBuilder;
|
|
153
171
|
Tag(...tags: string[]): OutputCachePolicyBuilder;
|
|
154
172
|
VaryByValue(key: string, value: string): OutputCachePolicyBuilder;
|
|
155
|
-
VaryByValue(varyBy:
|
|
156
|
-
VaryByValue(varyBy:
|
|
157
|
-
With(predicate:
|
|
158
|
-
With(predicate:
|
|
173
|
+
VaryByValue(varyBy: Func_2<HttpContext, KeyValuePair_2<System_Internal.String, System_Internal.String>>): OutputCachePolicyBuilder;
|
|
174
|
+
VaryByValue(varyBy: Func_3<HttpContext, CancellationToken, ValueTask_1<KeyValuePair_2<System_Internal.String, System_Internal.String>>>): OutputCachePolicyBuilder;
|
|
175
|
+
With(predicate: Func_3<OutputCacheContext, CancellationToken, ValueTask_1<System_Internal.Boolean>>): OutputCachePolicyBuilder;
|
|
176
|
+
With(predicate: Func_2<OutputCacheContext, System_Internal.Boolean>): OutputCachePolicyBuilder;
|
|
159
177
|
}
|
|
160
178
|
|
|
161
179
|
|
|
@@ -8,13 +8,15 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
10
10
|
import type { ConcurrencyLimiterOptions, FixedWindowRateLimiterOptions, PartitionedRateLimiter_1, RateLimitLease, RateLimitPartition_1, SlidingWindowRateLimiterOptions, TokenBucketRateLimiterOptions } from "../../System.Threading.RateLimiting/internal/index.js";
|
|
11
|
-
import
|
|
12
|
-
import type {
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
11
|
+
import type { ValueTask } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
12
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Action_1, Attribute, Func_2, Func_3, Int32, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface IRateLimiterPolicy_1$instance<TPartitionKey> {
|
|
17
|
-
readonly
|
|
17
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_RateLimiting_IRateLimiterPolicy_1: never;
|
|
18
|
+
|
|
19
|
+
readonly OnRejected: Func_3<OnRejectedContext, CancellationToken, ValueTask> | undefined;
|
|
18
20
|
GetPartition(httpContext: HttpContext): RateLimitPartition_1<TPartitionKey>;
|
|
19
21
|
}
|
|
20
22
|
|
|
@@ -22,6 +24,8 @@ export interface IRateLimiterPolicy_1$instance<TPartitionKey> {
|
|
|
22
24
|
export type IRateLimiterPolicy_1<TPartitionKey> = IRateLimiterPolicy_1$instance<TPartitionKey>;
|
|
23
25
|
|
|
24
26
|
export interface DisableRateLimitingAttribute$instance extends Attribute {
|
|
27
|
+
readonly __tsonic_type_Microsoft_AspNetCore_RateLimiting_DisableRateLimitingAttribute: never;
|
|
28
|
+
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
|
|
@@ -33,6 +37,8 @@ export const DisableRateLimitingAttribute: {
|
|
|
33
37
|
export type DisableRateLimitingAttribute = DisableRateLimitingAttribute$instance;
|
|
34
38
|
|
|
35
39
|
export interface EnableRateLimitingAttribute$instance extends Attribute {
|
|
40
|
+
readonly __tsonic_type_Microsoft_AspNetCore_RateLimiting_EnableRateLimitingAttribute: never;
|
|
41
|
+
|
|
36
42
|
readonly PolicyName: string | undefined;
|
|
37
43
|
}
|
|
38
44
|
|
|
@@ -45,6 +51,8 @@ export const EnableRateLimitingAttribute: {
|
|
|
45
51
|
export type EnableRateLimitingAttribute = EnableRateLimitingAttribute$instance;
|
|
46
52
|
|
|
47
53
|
export interface OnRejectedContext$instance {
|
|
54
|
+
readonly __tsonic_type_Microsoft_AspNetCore_RateLimiting_OnRejectedContext: never;
|
|
55
|
+
|
|
48
56
|
HttpContext: HttpContext;
|
|
49
57
|
Lease: RateLimitLease;
|
|
50
58
|
}
|
|
@@ -58,12 +66,14 @@ export const OnRejectedContext: {
|
|
|
58
66
|
export type OnRejectedContext = OnRejectedContext$instance;
|
|
59
67
|
|
|
60
68
|
export interface RateLimiterOptions$instance {
|
|
69
|
+
readonly __tsonic_type_Microsoft_AspNetCore_RateLimiting_RateLimiterOptions: never;
|
|
70
|
+
|
|
61
71
|
get GlobalLimiter(): PartitionedRateLimiter_1<HttpContext> | undefined;
|
|
62
72
|
set GlobalLimiter(value: PartitionedRateLimiter_1<HttpContext> | undefined);
|
|
63
|
-
get OnRejected():
|
|
64
|
-
set OnRejected(value:
|
|
73
|
+
get OnRejected(): Func_3<OnRejectedContext, CancellationToken, ValueTask> | undefined;
|
|
74
|
+
set OnRejected(value: Func_3<OnRejectedContext, CancellationToken, ValueTask> | undefined);
|
|
65
75
|
RejectionStatusCode: int;
|
|
66
|
-
AddPolicy<TPartitionKey>(policyName: string, partitioner:
|
|
76
|
+
AddPolicy<TPartitionKey>(policyName: string, partitioner: Func_2<HttpContext, RateLimitPartition_1<TPartitionKey>>): RateLimiterOptions;
|
|
67
77
|
AddPolicy<TPartitionKey, TPolicy extends IRateLimiterPolicy_1<TPartitionKey>>(policyName: string): RateLimiterOptions;
|
|
68
78
|
AddPolicy<TPartitionKey>(policyName: string, policy: IRateLimiterPolicy_1<TPartitionKey>): RateLimiterOptions;
|
|
69
79
|
}
|
|
@@ -77,10 +87,10 @@ export const RateLimiterOptions: {
|
|
|
77
87
|
export type RateLimiterOptions = RateLimiterOptions$instance;
|
|
78
88
|
|
|
79
89
|
export abstract class RateLimiterOptionsExtensions$instance {
|
|
80
|
-
static AddConcurrencyLimiter(options: RateLimiterOptions, policyName: string, configureOptions:
|
|
81
|
-
static AddFixedWindowLimiter(options: RateLimiterOptions, policyName: string, configureOptions:
|
|
82
|
-
static AddSlidingWindowLimiter(options: RateLimiterOptions, policyName: string, configureOptions:
|
|
83
|
-
static AddTokenBucketLimiter(options: RateLimiterOptions, policyName: string, configureOptions:
|
|
90
|
+
static AddConcurrencyLimiter(options: RateLimiterOptions, policyName: string, configureOptions: Action_1<ConcurrencyLimiterOptions>): RateLimiterOptions;
|
|
91
|
+
static AddFixedWindowLimiter(options: RateLimiterOptions, policyName: string, configureOptions: Action_1<FixedWindowRateLimiterOptions>): RateLimiterOptions;
|
|
92
|
+
static AddSlidingWindowLimiter(options: RateLimiterOptions, policyName: string, configureOptions: Action_1<SlidingWindowRateLimiterOptions>): RateLimiterOptions;
|
|
93
|
+
static AddTokenBucketLimiter(options: RateLimiterOptions, policyName: string, configureOptions: Action_1<TokenBucketRateLimiterOptions>): RateLimiterOptions;
|
|
84
94
|
}
|
|
85
95
|
|
|
86
96
|
|
|
@@ -6,12 +6,14 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import type {
|
|
9
|
+
import type { IEnumerable_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
10
|
+
import type { Assembly } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { Attribute, Object as ClrObject, String as ClrString, Type } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface IRazorSourceChecksumMetadata$instance {
|
|
15
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Razor_Hosting_IRazorSourceChecksumMetadata: never;
|
|
16
|
+
|
|
15
17
|
readonly Checksum: string;
|
|
16
18
|
readonly ChecksumAlgorithm: string;
|
|
17
19
|
readonly Identifier: string;
|
|
@@ -21,9 +23,11 @@ export interface IRazorSourceChecksumMetadata$instance {
|
|
|
21
23
|
export type IRazorSourceChecksumMetadata = IRazorSourceChecksumMetadata$instance;
|
|
22
24
|
|
|
23
25
|
export interface RazorCompiledItem$instance {
|
|
26
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorCompiledItem: never;
|
|
27
|
+
|
|
24
28
|
readonly Identifier: string;
|
|
25
29
|
readonly Kind: string;
|
|
26
|
-
readonly Metadata:
|
|
30
|
+
readonly Metadata: IReadOnlyList_1<unknown>;
|
|
27
31
|
readonly Type: Type;
|
|
28
32
|
}
|
|
29
33
|
|
|
@@ -35,6 +39,8 @@ export const RazorCompiledItem: (abstract new() => RazorCompiledItem) & {
|
|
|
35
39
|
export type RazorCompiledItem = RazorCompiledItem$instance;
|
|
36
40
|
|
|
37
41
|
export interface RazorCompiledItemAttribute$instance extends Attribute {
|
|
42
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorCompiledItemAttribute: never;
|
|
43
|
+
|
|
38
44
|
readonly Identifier: string;
|
|
39
45
|
readonly Kind: string;
|
|
40
46
|
readonly Type: Type;
|
|
@@ -49,8 +55,10 @@ export const RazorCompiledItemAttribute: {
|
|
|
49
55
|
export type RazorCompiledItemAttribute = RazorCompiledItemAttribute$instance;
|
|
50
56
|
|
|
51
57
|
export interface RazorCompiledItemLoader$instance {
|
|
58
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorCompiledItemLoader: never;
|
|
59
|
+
|
|
52
60
|
CreateItem(attribute: RazorCompiledItemAttribute): RazorCompiledItem;
|
|
53
|
-
LoadItems(assembly: Assembly):
|
|
61
|
+
LoadItems(assembly: Assembly): IReadOnlyList_1<RazorCompiledItem>;
|
|
54
62
|
}
|
|
55
63
|
|
|
56
64
|
|
|
@@ -62,6 +70,8 @@ export const RazorCompiledItemLoader: {
|
|
|
62
70
|
export type RazorCompiledItemLoader = RazorCompiledItemLoader$instance;
|
|
63
71
|
|
|
64
72
|
export interface RazorCompiledItemMetadataAttribute$instance extends Attribute {
|
|
73
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorCompiledItemMetadataAttribute: never;
|
|
74
|
+
|
|
65
75
|
readonly Key: string;
|
|
66
76
|
readonly Value: string;
|
|
67
77
|
}
|
|
@@ -75,6 +85,8 @@ export const RazorCompiledItemMetadataAttribute: {
|
|
|
75
85
|
export type RazorCompiledItemMetadataAttribute = RazorCompiledItemMetadataAttribute$instance;
|
|
76
86
|
|
|
77
87
|
export interface RazorConfigurationNameAttribute$instance extends Attribute {
|
|
88
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorConfigurationNameAttribute: never;
|
|
89
|
+
|
|
78
90
|
readonly ConfigurationName: string;
|
|
79
91
|
}
|
|
80
92
|
|
|
@@ -87,6 +99,8 @@ export const RazorConfigurationNameAttribute: {
|
|
|
87
99
|
export type RazorConfigurationNameAttribute = RazorConfigurationNameAttribute$instance;
|
|
88
100
|
|
|
89
101
|
export interface RazorExtensionAssemblyNameAttribute$instance extends Attribute {
|
|
102
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorExtensionAssemblyNameAttribute: never;
|
|
103
|
+
|
|
90
104
|
readonly AssemblyName: string;
|
|
91
105
|
readonly ExtensionName: string;
|
|
92
106
|
}
|
|
@@ -100,6 +114,8 @@ export const RazorExtensionAssemblyNameAttribute: {
|
|
|
100
114
|
export type RazorExtensionAssemblyNameAttribute = RazorExtensionAssemblyNameAttribute$instance;
|
|
101
115
|
|
|
102
116
|
export interface RazorLanguageVersionAttribute$instance extends Attribute {
|
|
117
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorLanguageVersionAttribute: never;
|
|
118
|
+
|
|
103
119
|
readonly LanguageVersion: string;
|
|
104
120
|
}
|
|
105
121
|
|
|
@@ -111,7 +127,11 @@ export const RazorLanguageVersionAttribute: {
|
|
|
111
127
|
|
|
112
128
|
export type RazorLanguageVersionAttribute = RazorLanguageVersionAttribute$instance;
|
|
113
129
|
|
|
114
|
-
export interface RazorSourceChecksumAttribute$instance extends Attribute {
|
|
130
|
+
export interface RazorSourceChecksumAttribute$instance extends Attribute, IRazorSourceChecksumMetadata$instance {
|
|
131
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Hosting_RazorSourceChecksumAttribute: never;
|
|
132
|
+
|
|
133
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Razor_Hosting_IRazorSourceChecksumMetadata: never;
|
|
134
|
+
|
|
115
135
|
readonly Checksum: string;
|
|
116
136
|
readonly ChecksumAlgorithm: string;
|
|
117
137
|
readonly Identifier: string;
|
|
@@ -127,13 +147,11 @@ export interface __RazorSourceChecksumAttribute$views {
|
|
|
127
147
|
As_IRazorSourceChecksumMetadata(): IRazorSourceChecksumMetadata$instance;
|
|
128
148
|
}
|
|
129
149
|
|
|
130
|
-
export interface RazorSourceChecksumAttribute$instance extends IRazorSourceChecksumMetadata$instance {}
|
|
131
|
-
|
|
132
150
|
export type RazorSourceChecksumAttribute = RazorSourceChecksumAttribute$instance & __RazorSourceChecksumAttribute$views;
|
|
133
151
|
|
|
134
152
|
|
|
135
153
|
export abstract class RazorCompiledItemExtensions$instance {
|
|
136
|
-
static GetChecksumMetadata(item: RazorCompiledItem):
|
|
154
|
+
static GetChecksumMetadata(item: RazorCompiledItem): IReadOnlyList_1<IRazorSourceChecksumMetadata>;
|
|
137
155
|
}
|
|
138
156
|
|
|
139
157
|
|
|
@@ -7,36 +7,40 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { HtmlAttributeValueStyle, ITagHelper, TagHelperAttribute, TagHelperContent, TagHelperContext, TagHelperOutput, TagMode } from "../../Microsoft.AspNetCore.Razor.TagHelpers/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import
|
|
12
|
-
import type {
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
10
|
+
import type { IDictionary_2, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
11
|
+
import type { HtmlEncoder } from "@tsonic/dotnet/System.Text.Encodings.Web/internal/index.js";
|
|
12
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Action_1, Boolean as ClrBoolean, Func_1, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface TagHelperExecutionContext$instance {
|
|
17
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Runtime_TagHelpers_TagHelperExecutionContext: never;
|
|
18
|
+
|
|
17
19
|
readonly ChildContentRetrieved: boolean;
|
|
18
20
|
readonly Context: TagHelperContext;
|
|
19
|
-
Items:
|
|
21
|
+
Items: IDictionary_2<unknown, unknown>;
|
|
20
22
|
Output: TagHelperOutput;
|
|
21
|
-
readonly TagHelpers:
|
|
23
|
+
readonly TagHelpers: IList_1<ITagHelper>;
|
|
22
24
|
Add(tagHelper: ITagHelper): void;
|
|
23
25
|
AddHtmlAttribute(name: string, value: unknown, valueStyle: HtmlAttributeValueStyle): void;
|
|
24
26
|
AddHtmlAttribute(attribute: TagHelperAttribute): void;
|
|
25
27
|
AddTagHelperAttribute(name: string, value: unknown, valueStyle: HtmlAttributeValueStyle): void;
|
|
26
28
|
AddTagHelperAttribute(attribute: TagHelperAttribute): void;
|
|
27
|
-
Reinitialize(tagName: string, tagMode: TagMode, items:
|
|
29
|
+
Reinitialize(tagName: string, tagMode: TagMode, items: IDictionary_2<unknown, unknown>, uniqueId: string, executeChildContentAsync: Func_1<Task>): void;
|
|
28
30
|
SetOutputContentAsync(): Task;
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
|
|
32
34
|
export const TagHelperExecutionContext: {
|
|
33
|
-
new(tagName: string, tagMode: TagMode, items:
|
|
35
|
+
new(tagName: string, tagMode: TagMode, items: IDictionary_2<unknown, unknown>, uniqueId: string, executeChildContentAsync: Func_1<Task>, startTagHelperWritingScope: Action_1<HtmlEncoder>, endTagHelperWritingScope: Func_1<TagHelperContent>): TagHelperExecutionContext;
|
|
34
36
|
};
|
|
35
37
|
|
|
36
38
|
|
|
37
39
|
export type TagHelperExecutionContext = TagHelperExecutionContext$instance;
|
|
38
40
|
|
|
39
41
|
export interface TagHelperRunner$instance {
|
|
42
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Runtime_TagHelpers_TagHelperRunner: never;
|
|
43
|
+
|
|
40
44
|
RunAsync(executionContext: TagHelperExecutionContext): Task;
|
|
41
45
|
}
|
|
42
46
|
|
|
@@ -49,13 +53,15 @@ export const TagHelperRunner: {
|
|
|
49
53
|
export type TagHelperRunner = TagHelperRunner$instance;
|
|
50
54
|
|
|
51
55
|
export interface TagHelperScopeManager$instance {
|
|
52
|
-
|
|
56
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Razor_Runtime_TagHelpers_TagHelperScopeManager: never;
|
|
57
|
+
|
|
58
|
+
Begin(tagName: string, tagMode: TagMode, uniqueId: string, executeChildContentAsync: Func_1<Task>): TagHelperExecutionContext;
|
|
53
59
|
End(): TagHelperExecutionContext;
|
|
54
60
|
}
|
|
55
61
|
|
|
56
62
|
|
|
57
63
|
export const TagHelperScopeManager: {
|
|
58
|
-
new(startTagHelperWritingScope:
|
|
64
|
+
new(startTagHelperWritingScope: Action_1<HtmlEncoder>, endTagHelperWritingScope: Func_1<TagHelperContent>): TagHelperScopeManager;
|
|
59
65
|
};
|
|
60
66
|
|
|
61
67
|
|