@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
|
@@ -17,15 +17,21 @@ import type { ViewComponentContext } from "../../Microsoft.AspNetCore.Mvc.ViewCo
|
|
|
17
17
|
import type { IView } from "../../Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.js";
|
|
18
18
|
import type { ActionContext, ActionResult, IActionResult, IViewComponentResult } from "../../Microsoft.AspNetCore.Mvc/internal/index.js";
|
|
19
19
|
import type { RouteData } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
20
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
21
|
-
import type {
|
|
22
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
23
|
-
import type { IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections.js";
|
|
24
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
25
|
-
import type { Boolean as ClrBoolean, IDisposable, Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System.js";
|
|
20
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
21
|
+
import type { IEnumerable_1, IEnumerator_1, IReadOnlyCollection_1, IReadOnlyDictionary_2, IReadOnlyList_1, KeyValuePair_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
22
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
23
|
+
import type { IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
24
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
25
|
+
import type { Boolean as ClrBoolean, IDisposable, Int32, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
26
26
|
|
|
27
27
|
export interface EventData_Enumerator$instance {
|
|
28
|
-
|
|
28
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_EventData_Enumerator: never;
|
|
29
|
+
|
|
30
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerator_1: never;
|
|
31
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
32
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
33
|
+
|
|
34
|
+
Current: KeyValuePair_2<System_Internal.String, unknown>;
|
|
29
35
|
Dispose(): void;
|
|
30
36
|
MoveNext(): boolean;
|
|
31
37
|
Reset(): void;
|
|
@@ -40,10 +46,17 @@ export const EventData_Enumerator: {
|
|
|
40
46
|
export type EventData_Enumerator = EventData_Enumerator$instance;
|
|
41
47
|
|
|
42
48
|
export interface AfterActionEventData$instance extends EventData {
|
|
49
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterActionEventData: never;
|
|
50
|
+
|
|
51
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
52
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
53
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
54
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
55
|
+
|
|
43
56
|
readonly ActionDescriptor: ActionDescriptor;
|
|
44
57
|
readonly Count: int;
|
|
45
58
|
readonly HttpContext: HttpContext;
|
|
46
|
-
readonly [index: number]:
|
|
59
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
47
60
|
readonly RouteData: RouteData;
|
|
48
61
|
}
|
|
49
62
|
|
|
@@ -57,11 +70,18 @@ export const AfterActionEventData: {
|
|
|
57
70
|
export type AfterActionEventData = AfterActionEventData$instance;
|
|
58
71
|
|
|
59
72
|
export interface AfterActionFilterOnActionExecutedEventData$instance extends EventData {
|
|
73
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterActionFilterOnActionExecutedEventData: never;
|
|
74
|
+
|
|
75
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
76
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
77
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
78
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
79
|
+
|
|
60
80
|
readonly ActionDescriptor: ActionDescriptor;
|
|
61
81
|
readonly ActionExecutedContext: ActionExecutedContext;
|
|
62
82
|
readonly Count: int;
|
|
63
83
|
readonly Filter: IFilterMetadata;
|
|
64
|
-
readonly [index: number]:
|
|
84
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
65
85
|
}
|
|
66
86
|
|
|
67
87
|
|
|
@@ -74,11 +94,18 @@ export const AfterActionFilterOnActionExecutedEventData: {
|
|
|
74
94
|
export type AfterActionFilterOnActionExecutedEventData = AfterActionFilterOnActionExecutedEventData$instance;
|
|
75
95
|
|
|
76
96
|
export interface AfterActionFilterOnActionExecutingEventData$instance extends EventData {
|
|
97
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterActionFilterOnActionExecutingEventData: never;
|
|
98
|
+
|
|
99
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
100
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
101
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
102
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
103
|
+
|
|
77
104
|
readonly ActionDescriptor: ActionDescriptor;
|
|
78
105
|
readonly ActionExecutingContext: ActionExecutingContext;
|
|
79
106
|
readonly Count: int;
|
|
80
107
|
readonly Filter: IFilterMetadata;
|
|
81
|
-
readonly [index: number]:
|
|
108
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
82
109
|
}
|
|
83
110
|
|
|
84
111
|
|
|
@@ -91,11 +118,18 @@ export const AfterActionFilterOnActionExecutingEventData: {
|
|
|
91
118
|
export type AfterActionFilterOnActionExecutingEventData = AfterActionFilterOnActionExecutingEventData$instance;
|
|
92
119
|
|
|
93
120
|
export interface AfterActionFilterOnActionExecutionEventData$instance extends EventData {
|
|
121
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterActionFilterOnActionExecutionEventData: never;
|
|
122
|
+
|
|
123
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
124
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
125
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
126
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
127
|
+
|
|
94
128
|
readonly ActionDescriptor: ActionDescriptor;
|
|
95
129
|
readonly ActionExecutedContext: ActionExecutedContext;
|
|
96
130
|
readonly Count: int;
|
|
97
131
|
readonly Filter: IFilterMetadata;
|
|
98
|
-
readonly [index: number]:
|
|
132
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
99
133
|
}
|
|
100
134
|
|
|
101
135
|
|
|
@@ -108,9 +142,16 @@ export const AfterActionFilterOnActionExecutionEventData: {
|
|
|
108
142
|
export type AfterActionFilterOnActionExecutionEventData = AfterActionFilterOnActionExecutionEventData$instance;
|
|
109
143
|
|
|
110
144
|
export interface AfterActionResultEventData$instance extends EventData {
|
|
145
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterActionResultEventData: never;
|
|
146
|
+
|
|
147
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
148
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
149
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
150
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
151
|
+
|
|
111
152
|
readonly ActionContext: ActionContext;
|
|
112
153
|
readonly Count: int;
|
|
113
|
-
readonly [index: number]:
|
|
154
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
114
155
|
readonly Result: IActionResult;
|
|
115
156
|
}
|
|
116
157
|
|
|
@@ -124,11 +165,18 @@ export const AfterActionResultEventData: {
|
|
|
124
165
|
export type AfterActionResultEventData = AfterActionResultEventData$instance;
|
|
125
166
|
|
|
126
167
|
export interface AfterAuthorizationFilterOnAuthorizationEventData$instance extends EventData {
|
|
168
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterAuthorizationFilterOnAuthorizationEventData: never;
|
|
169
|
+
|
|
170
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
171
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
172
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
173
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
174
|
+
|
|
127
175
|
readonly ActionDescriptor: ActionDescriptor;
|
|
128
176
|
readonly AuthorizationContext: AuthorizationFilterContext;
|
|
129
177
|
readonly Count: int;
|
|
130
178
|
readonly Filter: IFilterMetadata;
|
|
131
|
-
readonly [index: number]:
|
|
179
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
132
180
|
}
|
|
133
181
|
|
|
134
182
|
|
|
@@ -141,17 +189,24 @@ export const AfterAuthorizationFilterOnAuthorizationEventData: {
|
|
|
141
189
|
export type AfterAuthorizationFilterOnAuthorizationEventData = AfterAuthorizationFilterOnAuthorizationEventData$instance;
|
|
142
190
|
|
|
143
191
|
export interface AfterControllerActionMethodEventData$instance extends EventData {
|
|
192
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterControllerActionMethodEventData: never;
|
|
193
|
+
|
|
194
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
195
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
196
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
197
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
198
|
+
|
|
144
199
|
readonly ActionContext: ActionContext;
|
|
145
|
-
readonly Arguments:
|
|
200
|
+
readonly Arguments: IReadOnlyDictionary_2<System_Internal.String, unknown>;
|
|
146
201
|
readonly Controller: unknown;
|
|
147
202
|
readonly Count: int;
|
|
148
|
-
readonly [index: number]:
|
|
203
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
149
204
|
readonly Result: IActionResult;
|
|
150
205
|
}
|
|
151
206
|
|
|
152
207
|
|
|
153
208
|
export const AfterControllerActionMethodEventData: {
|
|
154
|
-
new(actionContext: ActionContext, arguments:
|
|
209
|
+
new(actionContext: ActionContext, arguments: IReadOnlyDictionary_2<System_Internal.String, unknown>, controller: unknown, result: IActionResult): AfterControllerActionMethodEventData;
|
|
155
210
|
readonly EventName: string;
|
|
156
211
|
};
|
|
157
212
|
|
|
@@ -159,11 +214,18 @@ export const AfterControllerActionMethodEventData: {
|
|
|
159
214
|
export type AfterControllerActionMethodEventData = AfterControllerActionMethodEventData$instance;
|
|
160
215
|
|
|
161
216
|
export interface AfterExceptionFilterOnExceptionEventData$instance extends EventData {
|
|
217
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterExceptionFilterOnExceptionEventData: never;
|
|
218
|
+
|
|
219
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
220
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
221
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
222
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
223
|
+
|
|
162
224
|
readonly ActionDescriptor: ActionDescriptor;
|
|
163
225
|
readonly Count: int;
|
|
164
226
|
readonly ExceptionContext: ExceptionContext;
|
|
165
227
|
readonly Filter: IFilterMetadata;
|
|
166
|
-
readonly [index: number]:
|
|
228
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
167
229
|
}
|
|
168
230
|
|
|
169
231
|
|
|
@@ -176,18 +238,25 @@ export const AfterExceptionFilterOnExceptionEventData: {
|
|
|
176
238
|
export type AfterExceptionFilterOnExceptionEventData = AfterExceptionFilterOnExceptionEventData$instance;
|
|
177
239
|
|
|
178
240
|
export interface AfterHandlerMethodEventData$instance extends EventData {
|
|
241
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterHandlerMethodEventData: never;
|
|
242
|
+
|
|
243
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
244
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
245
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
246
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
247
|
+
|
|
179
248
|
readonly ActionContext: ActionContext;
|
|
180
|
-
readonly Arguments:
|
|
249
|
+
readonly Arguments: IReadOnlyDictionary_2<System_Internal.String, unknown | undefined>;
|
|
181
250
|
readonly Count: int;
|
|
182
251
|
readonly HandlerMethodDescriptor: HandlerMethodDescriptor;
|
|
183
252
|
readonly Instance: unknown;
|
|
184
|
-
readonly [index: number]:
|
|
253
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
185
254
|
readonly Result: IActionResult | undefined;
|
|
186
255
|
}
|
|
187
256
|
|
|
188
257
|
|
|
189
258
|
export const AfterHandlerMethodEventData: {
|
|
190
|
-
new(actionContext: ActionContext, arguments:
|
|
259
|
+
new(actionContext: ActionContext, arguments: IReadOnlyDictionary_2<System_Internal.String, unknown>, handlerMethodDescriptor: HandlerMethodDescriptor, instance: unknown, result: IActionResult): AfterHandlerMethodEventData;
|
|
191
260
|
readonly EventName: string;
|
|
192
261
|
};
|
|
193
262
|
|
|
@@ -195,11 +264,18 @@ export const AfterHandlerMethodEventData: {
|
|
|
195
264
|
export type AfterHandlerMethodEventData = AfterHandlerMethodEventData$instance;
|
|
196
265
|
|
|
197
266
|
export interface AfterPageFilterOnPageHandlerExecutedEventData$instance extends EventData {
|
|
267
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterPageFilterOnPageHandlerExecutedEventData: never;
|
|
268
|
+
|
|
269
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
270
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
271
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
272
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
273
|
+
|
|
198
274
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
199
275
|
readonly Count: int;
|
|
200
276
|
readonly Filter: IPageFilter;
|
|
201
277
|
readonly HandlerExecutedContext: PageHandlerExecutedContext;
|
|
202
|
-
readonly [index: number]:
|
|
278
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
203
279
|
}
|
|
204
280
|
|
|
205
281
|
|
|
@@ -212,11 +288,18 @@ export const AfterPageFilterOnPageHandlerExecutedEventData: {
|
|
|
212
288
|
export type AfterPageFilterOnPageHandlerExecutedEventData = AfterPageFilterOnPageHandlerExecutedEventData$instance;
|
|
213
289
|
|
|
214
290
|
export interface AfterPageFilterOnPageHandlerExecutingEventData$instance extends EventData {
|
|
291
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterPageFilterOnPageHandlerExecutingEventData: never;
|
|
292
|
+
|
|
293
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
294
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
295
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
296
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
297
|
+
|
|
215
298
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
216
299
|
readonly Count: int;
|
|
217
300
|
readonly Filter: IPageFilter;
|
|
218
301
|
readonly HandlerExecutingContext: PageHandlerExecutingContext;
|
|
219
|
-
readonly [index: number]:
|
|
302
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
220
303
|
}
|
|
221
304
|
|
|
222
305
|
|
|
@@ -229,11 +312,18 @@ export const AfterPageFilterOnPageHandlerExecutingEventData: {
|
|
|
229
312
|
export type AfterPageFilterOnPageHandlerExecutingEventData = AfterPageFilterOnPageHandlerExecutingEventData$instance;
|
|
230
313
|
|
|
231
314
|
export interface AfterPageFilterOnPageHandlerExecutionEventData$instance extends EventData {
|
|
315
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterPageFilterOnPageHandlerExecutionEventData: never;
|
|
316
|
+
|
|
317
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
318
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
319
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
320
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
321
|
+
|
|
232
322
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
233
323
|
readonly Count: int;
|
|
234
324
|
readonly Filter: IAsyncPageFilter;
|
|
235
325
|
readonly HandlerExecutedContext: PageHandlerExecutedContext;
|
|
236
|
-
readonly [index: number]:
|
|
326
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
237
327
|
}
|
|
238
328
|
|
|
239
329
|
|
|
@@ -246,11 +336,18 @@ export const AfterPageFilterOnPageHandlerExecutionEventData: {
|
|
|
246
336
|
export type AfterPageFilterOnPageHandlerExecutionEventData = AfterPageFilterOnPageHandlerExecutionEventData$instance;
|
|
247
337
|
|
|
248
338
|
export interface AfterPageFilterOnPageHandlerSelectedEventData$instance extends EventData {
|
|
339
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterPageFilterOnPageHandlerSelectedEventData: never;
|
|
340
|
+
|
|
341
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
342
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
343
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
344
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
345
|
+
|
|
249
346
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
250
347
|
readonly Count: int;
|
|
251
348
|
readonly Filter: IPageFilter;
|
|
252
349
|
readonly HandlerSelectedContext: PageHandlerSelectedContext;
|
|
253
|
-
readonly [index: number]:
|
|
350
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
254
351
|
}
|
|
255
352
|
|
|
256
353
|
|
|
@@ -263,11 +360,18 @@ export const AfterPageFilterOnPageHandlerSelectedEventData: {
|
|
|
263
360
|
export type AfterPageFilterOnPageHandlerSelectedEventData = AfterPageFilterOnPageHandlerSelectedEventData$instance;
|
|
264
361
|
|
|
265
362
|
export interface AfterPageFilterOnPageHandlerSelectionEventData$instance extends EventData {
|
|
363
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterPageFilterOnPageHandlerSelectionEventData: never;
|
|
364
|
+
|
|
365
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
366
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
367
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
368
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
369
|
+
|
|
266
370
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
267
371
|
readonly Count: int;
|
|
268
372
|
readonly Filter: IAsyncPageFilter;
|
|
269
373
|
readonly HandlerSelectedContext: PageHandlerSelectedContext;
|
|
270
|
-
readonly [index: number]:
|
|
374
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
271
375
|
}
|
|
272
376
|
|
|
273
377
|
|
|
@@ -280,10 +384,17 @@ export const AfterPageFilterOnPageHandlerSelectionEventData: {
|
|
|
280
384
|
export type AfterPageFilterOnPageHandlerSelectionEventData = AfterPageFilterOnPageHandlerSelectionEventData$instance;
|
|
281
385
|
|
|
282
386
|
export interface AfterResourceFilterOnResourceExecutedEventData$instance extends EventData {
|
|
387
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResourceFilterOnResourceExecutedEventData: never;
|
|
388
|
+
|
|
389
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
390
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
391
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
392
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
393
|
+
|
|
283
394
|
readonly ActionDescriptor: ActionDescriptor;
|
|
284
395
|
readonly Count: int;
|
|
285
396
|
readonly Filter: IFilterMetadata;
|
|
286
|
-
readonly [index: number]:
|
|
397
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
287
398
|
readonly ResourceExecutedContext: ResourceExecutedContext;
|
|
288
399
|
}
|
|
289
400
|
|
|
@@ -297,10 +408,17 @@ export const AfterResourceFilterOnResourceExecutedEventData: {
|
|
|
297
408
|
export type AfterResourceFilterOnResourceExecutedEventData = AfterResourceFilterOnResourceExecutedEventData$instance;
|
|
298
409
|
|
|
299
410
|
export interface AfterResourceFilterOnResourceExecutingEventData$instance extends EventData {
|
|
411
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResourceFilterOnResourceExecutingEventData: never;
|
|
412
|
+
|
|
413
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
414
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
415
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
416
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
417
|
+
|
|
300
418
|
readonly ActionDescriptor: ActionDescriptor;
|
|
301
419
|
readonly Count: int;
|
|
302
420
|
readonly Filter: IFilterMetadata;
|
|
303
|
-
readonly [index: number]:
|
|
421
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
304
422
|
readonly ResourceExecutingContext: ResourceExecutingContext;
|
|
305
423
|
}
|
|
306
424
|
|
|
@@ -314,10 +432,17 @@ export const AfterResourceFilterOnResourceExecutingEventData: {
|
|
|
314
432
|
export type AfterResourceFilterOnResourceExecutingEventData = AfterResourceFilterOnResourceExecutingEventData$instance;
|
|
315
433
|
|
|
316
434
|
export interface AfterResourceFilterOnResourceExecutionEventData$instance extends EventData {
|
|
435
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResourceFilterOnResourceExecutionEventData: never;
|
|
436
|
+
|
|
437
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
438
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
439
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
440
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
441
|
+
|
|
317
442
|
readonly ActionDescriptor: ActionDescriptor;
|
|
318
443
|
readonly Count: int;
|
|
319
444
|
readonly Filter: IFilterMetadata;
|
|
320
|
-
readonly [index: number]:
|
|
445
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
321
446
|
readonly ResourceExecutedContext: ResourceExecutedContext;
|
|
322
447
|
}
|
|
323
448
|
|
|
@@ -331,10 +456,17 @@ export const AfterResourceFilterOnResourceExecutionEventData: {
|
|
|
331
456
|
export type AfterResourceFilterOnResourceExecutionEventData = AfterResourceFilterOnResourceExecutionEventData$instance;
|
|
332
457
|
|
|
333
458
|
export interface AfterResultFilterOnResultExecutedEventData$instance extends EventData {
|
|
459
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResultFilterOnResultExecutedEventData: never;
|
|
460
|
+
|
|
461
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
462
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
463
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
464
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
465
|
+
|
|
334
466
|
readonly ActionDescriptor: ActionDescriptor;
|
|
335
467
|
readonly Count: int;
|
|
336
468
|
readonly Filter: IFilterMetadata;
|
|
337
|
-
readonly [index: number]:
|
|
469
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
338
470
|
readonly ResultExecutedContext: ResultExecutedContext;
|
|
339
471
|
}
|
|
340
472
|
|
|
@@ -348,10 +480,17 @@ export const AfterResultFilterOnResultExecutedEventData: {
|
|
|
348
480
|
export type AfterResultFilterOnResultExecutedEventData = AfterResultFilterOnResultExecutedEventData$instance;
|
|
349
481
|
|
|
350
482
|
export interface AfterResultFilterOnResultExecutingEventData$instance extends EventData {
|
|
483
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResultFilterOnResultExecutingEventData: never;
|
|
484
|
+
|
|
485
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
486
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
487
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
488
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
489
|
+
|
|
351
490
|
readonly ActionDescriptor: ActionDescriptor;
|
|
352
491
|
readonly Count: int;
|
|
353
492
|
readonly Filter: IFilterMetadata;
|
|
354
|
-
readonly [index: number]:
|
|
493
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
355
494
|
readonly ResultExecutingContext: ResultExecutingContext;
|
|
356
495
|
}
|
|
357
496
|
|
|
@@ -365,10 +504,17 @@ export const AfterResultFilterOnResultExecutingEventData: {
|
|
|
365
504
|
export type AfterResultFilterOnResultExecutingEventData = AfterResultFilterOnResultExecutingEventData$instance;
|
|
366
505
|
|
|
367
506
|
export interface AfterResultFilterOnResultExecutionEventData$instance extends EventData {
|
|
507
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterResultFilterOnResultExecutionEventData: never;
|
|
508
|
+
|
|
509
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
510
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
511
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
512
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
513
|
+
|
|
368
514
|
readonly ActionDescriptor: ActionDescriptor;
|
|
369
515
|
readonly Count: int;
|
|
370
516
|
readonly Filter: IFilterMetadata;
|
|
371
|
-
readonly [index: number]:
|
|
517
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
372
518
|
readonly ResultExecutedContext: ResultExecutedContext;
|
|
373
519
|
}
|
|
374
520
|
|
|
@@ -382,9 +528,16 @@ export const AfterResultFilterOnResultExecutionEventData: {
|
|
|
382
528
|
export type AfterResultFilterOnResultExecutionEventData = AfterResultFilterOnResultExecutionEventData$instance;
|
|
383
529
|
|
|
384
530
|
export interface AfterViewComponentEventData$instance extends EventData {
|
|
531
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterViewComponentEventData: never;
|
|
532
|
+
|
|
533
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
534
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
535
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
536
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
537
|
+
|
|
385
538
|
readonly ActionDescriptor: ActionDescriptor;
|
|
386
539
|
readonly Count: int;
|
|
387
|
-
readonly [index: number]:
|
|
540
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
388
541
|
readonly ViewComponent: unknown;
|
|
389
542
|
readonly ViewComponentContext: ViewComponentContext;
|
|
390
543
|
readonly ViewComponentResult: IViewComponentResult;
|
|
@@ -400,8 +553,15 @@ export const AfterViewComponentEventData: {
|
|
|
400
553
|
export type AfterViewComponentEventData = AfterViewComponentEventData$instance;
|
|
401
554
|
|
|
402
555
|
export interface AfterViewEventData$instance extends EventData {
|
|
556
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterViewEventData: never;
|
|
557
|
+
|
|
558
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
559
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
560
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
561
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
562
|
+
|
|
403
563
|
readonly Count: int;
|
|
404
|
-
readonly [index: number]:
|
|
564
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
405
565
|
readonly View: IView;
|
|
406
566
|
readonly ViewContext: ViewContext;
|
|
407
567
|
}
|
|
@@ -416,10 +576,17 @@ export const AfterViewEventData: {
|
|
|
416
576
|
export type AfterViewEventData = AfterViewEventData$instance;
|
|
417
577
|
|
|
418
578
|
export interface AfterViewPageEventData$instance extends EventData {
|
|
579
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_AfterViewPageEventData: never;
|
|
580
|
+
|
|
581
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
582
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
583
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
584
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
585
|
+
|
|
419
586
|
readonly ActionDescriptor: ActionDescriptor;
|
|
420
587
|
readonly Count: int;
|
|
421
588
|
readonly HttpContext: HttpContext;
|
|
422
|
-
readonly [index: number]:
|
|
589
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
423
590
|
readonly Page: IRazorPage;
|
|
424
591
|
readonly ViewContext: ViewContext;
|
|
425
592
|
}
|
|
@@ -434,10 +601,17 @@ export const AfterViewPageEventData: {
|
|
|
434
601
|
export type AfterViewPageEventData = AfterViewPageEventData$instance;
|
|
435
602
|
|
|
436
603
|
export interface BeforeActionEventData$instance extends EventData {
|
|
604
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeActionEventData: never;
|
|
605
|
+
|
|
606
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
607
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
608
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
609
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
610
|
+
|
|
437
611
|
readonly ActionDescriptor: ActionDescriptor;
|
|
438
612
|
readonly Count: int;
|
|
439
613
|
readonly HttpContext: HttpContext;
|
|
440
|
-
readonly [index: number]:
|
|
614
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
441
615
|
readonly RouteData: RouteData;
|
|
442
616
|
}
|
|
443
617
|
|
|
@@ -451,11 +625,18 @@ export const BeforeActionEventData: {
|
|
|
451
625
|
export type BeforeActionEventData = BeforeActionEventData$instance;
|
|
452
626
|
|
|
453
627
|
export interface BeforeActionFilterOnActionExecutedEventData$instance extends EventData {
|
|
628
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeActionFilterOnActionExecutedEventData: never;
|
|
629
|
+
|
|
630
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
631
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
632
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
633
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
634
|
+
|
|
454
635
|
readonly ActionDescriptor: ActionDescriptor;
|
|
455
636
|
readonly ActionExecutedContext: ActionExecutedContext;
|
|
456
637
|
readonly Count: int;
|
|
457
638
|
readonly Filter: IFilterMetadata;
|
|
458
|
-
readonly [index: number]:
|
|
639
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
459
640
|
}
|
|
460
641
|
|
|
461
642
|
|
|
@@ -468,11 +649,18 @@ export const BeforeActionFilterOnActionExecutedEventData: {
|
|
|
468
649
|
export type BeforeActionFilterOnActionExecutedEventData = BeforeActionFilterOnActionExecutedEventData$instance;
|
|
469
650
|
|
|
470
651
|
export interface BeforeActionFilterOnActionExecutingEventData$instance extends EventData {
|
|
652
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeActionFilterOnActionExecutingEventData: never;
|
|
653
|
+
|
|
654
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
655
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
656
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
657
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
658
|
+
|
|
471
659
|
readonly ActionDescriptor: ActionDescriptor;
|
|
472
660
|
readonly ActionExecutingContext: ActionExecutingContext;
|
|
473
661
|
readonly Count: int;
|
|
474
662
|
readonly Filter: IFilterMetadata;
|
|
475
|
-
readonly [index: number]:
|
|
663
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
476
664
|
}
|
|
477
665
|
|
|
478
666
|
|
|
@@ -485,11 +673,18 @@ export const BeforeActionFilterOnActionExecutingEventData: {
|
|
|
485
673
|
export type BeforeActionFilterOnActionExecutingEventData = BeforeActionFilterOnActionExecutingEventData$instance;
|
|
486
674
|
|
|
487
675
|
export interface BeforeActionFilterOnActionExecutionEventData$instance extends EventData {
|
|
676
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeActionFilterOnActionExecutionEventData: never;
|
|
677
|
+
|
|
678
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
679
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
680
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
681
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
682
|
+
|
|
488
683
|
readonly ActionDescriptor: ActionDescriptor;
|
|
489
684
|
readonly ActionExecutingContext: ActionExecutingContext;
|
|
490
685
|
readonly Count: int;
|
|
491
686
|
readonly Filter: IFilterMetadata;
|
|
492
|
-
readonly [index: number]:
|
|
687
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
493
688
|
}
|
|
494
689
|
|
|
495
690
|
|
|
@@ -502,9 +697,16 @@ export const BeforeActionFilterOnActionExecutionEventData: {
|
|
|
502
697
|
export type BeforeActionFilterOnActionExecutionEventData = BeforeActionFilterOnActionExecutionEventData$instance;
|
|
503
698
|
|
|
504
699
|
export interface BeforeActionResultEventData$instance extends EventData {
|
|
700
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeActionResultEventData: never;
|
|
701
|
+
|
|
702
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
703
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
704
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
705
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
706
|
+
|
|
505
707
|
readonly ActionContext: ActionContext;
|
|
506
708
|
readonly Count: int;
|
|
507
|
-
readonly [index: number]:
|
|
709
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
508
710
|
readonly Result: IActionResult;
|
|
509
711
|
}
|
|
510
712
|
|
|
@@ -518,11 +720,18 @@ export const BeforeActionResultEventData: {
|
|
|
518
720
|
export type BeforeActionResultEventData = BeforeActionResultEventData$instance;
|
|
519
721
|
|
|
520
722
|
export interface BeforeAuthorizationFilterOnAuthorizationEventData$instance extends EventData {
|
|
723
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeAuthorizationFilterOnAuthorizationEventData: never;
|
|
724
|
+
|
|
725
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
726
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
727
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
728
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
729
|
+
|
|
521
730
|
readonly ActionDescriptor: ActionDescriptor;
|
|
522
731
|
readonly AuthorizationContext: AuthorizationFilterContext;
|
|
523
732
|
readonly Count: int;
|
|
524
733
|
readonly Filter: IFilterMetadata;
|
|
525
|
-
readonly [index: number]:
|
|
734
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
526
735
|
}
|
|
527
736
|
|
|
528
737
|
|
|
@@ -535,16 +744,23 @@ export const BeforeAuthorizationFilterOnAuthorizationEventData: {
|
|
|
535
744
|
export type BeforeAuthorizationFilterOnAuthorizationEventData = BeforeAuthorizationFilterOnAuthorizationEventData$instance;
|
|
536
745
|
|
|
537
746
|
export interface BeforeControllerActionMethodEventData$instance extends EventData {
|
|
538
|
-
readonly
|
|
747
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeControllerActionMethodEventData: never;
|
|
748
|
+
|
|
749
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
750
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
751
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
752
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
753
|
+
|
|
754
|
+
readonly ActionArguments: IReadOnlyDictionary_2<System_Internal.String, unknown>;
|
|
539
755
|
readonly ActionContext: ActionContext;
|
|
540
756
|
readonly Controller: unknown;
|
|
541
757
|
readonly Count: int;
|
|
542
|
-
readonly [index: number]:
|
|
758
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
543
759
|
}
|
|
544
760
|
|
|
545
761
|
|
|
546
762
|
export const BeforeControllerActionMethodEventData: {
|
|
547
|
-
new(actionContext: ActionContext, actionArguments:
|
|
763
|
+
new(actionContext: ActionContext, actionArguments: IReadOnlyDictionary_2<System_Internal.String, unknown>, controller: unknown): BeforeControllerActionMethodEventData;
|
|
548
764
|
readonly EventName: string;
|
|
549
765
|
};
|
|
550
766
|
|
|
@@ -552,11 +768,18 @@ export const BeforeControllerActionMethodEventData: {
|
|
|
552
768
|
export type BeforeControllerActionMethodEventData = BeforeControllerActionMethodEventData$instance;
|
|
553
769
|
|
|
554
770
|
export interface BeforeExceptionFilterOnException$instance extends EventData {
|
|
771
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeExceptionFilterOnException: never;
|
|
772
|
+
|
|
773
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
774
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
775
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
776
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
777
|
+
|
|
555
778
|
readonly ActionDescriptor: ActionDescriptor;
|
|
556
779
|
readonly Count: int;
|
|
557
780
|
readonly ExceptionContext: ExceptionContext;
|
|
558
781
|
readonly Filter: IFilterMetadata;
|
|
559
|
-
readonly [index: number]:
|
|
782
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
560
783
|
}
|
|
561
784
|
|
|
562
785
|
|
|
@@ -569,17 +792,24 @@ export const BeforeExceptionFilterOnException: {
|
|
|
569
792
|
export type BeforeExceptionFilterOnException = BeforeExceptionFilterOnException$instance;
|
|
570
793
|
|
|
571
794
|
export interface BeforeHandlerMethodEventData$instance extends EventData {
|
|
795
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeHandlerMethodEventData: never;
|
|
796
|
+
|
|
797
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
798
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
799
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
800
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
801
|
+
|
|
572
802
|
readonly ActionContext: ActionContext;
|
|
573
|
-
readonly Arguments:
|
|
803
|
+
readonly Arguments: IReadOnlyDictionary_2<System_Internal.String, unknown | undefined>;
|
|
574
804
|
readonly Count: int;
|
|
575
805
|
readonly HandlerMethodDescriptor: HandlerMethodDescriptor;
|
|
576
806
|
readonly Instance: unknown;
|
|
577
|
-
readonly [index: number]:
|
|
807
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
578
808
|
}
|
|
579
809
|
|
|
580
810
|
|
|
581
811
|
export const BeforeHandlerMethodEventData: {
|
|
582
|
-
new(actionContext: ActionContext, arguments:
|
|
812
|
+
new(actionContext: ActionContext, arguments: IReadOnlyDictionary_2<System_Internal.String, unknown>, handlerMethodDescriptor: HandlerMethodDescriptor, instance: unknown): BeforeHandlerMethodEventData;
|
|
583
813
|
readonly EventName: string;
|
|
584
814
|
};
|
|
585
815
|
|
|
@@ -587,11 +817,18 @@ export const BeforeHandlerMethodEventData: {
|
|
|
587
817
|
export type BeforeHandlerMethodEventData = BeforeHandlerMethodEventData$instance;
|
|
588
818
|
|
|
589
819
|
export interface BeforePageFilterOnPageHandlerExecutedEventData$instance extends EventData {
|
|
820
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforePageFilterOnPageHandlerExecutedEventData: never;
|
|
821
|
+
|
|
822
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
823
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
824
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
825
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
826
|
+
|
|
590
827
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
591
828
|
readonly Count: int;
|
|
592
829
|
readonly Filter: IPageFilter;
|
|
593
830
|
readonly HandlerExecutedContext: PageHandlerExecutedContext;
|
|
594
|
-
readonly [index: number]:
|
|
831
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
595
832
|
}
|
|
596
833
|
|
|
597
834
|
|
|
@@ -604,11 +841,18 @@ export const BeforePageFilterOnPageHandlerExecutedEventData: {
|
|
|
604
841
|
export type BeforePageFilterOnPageHandlerExecutedEventData = BeforePageFilterOnPageHandlerExecutedEventData$instance;
|
|
605
842
|
|
|
606
843
|
export interface BeforePageFilterOnPageHandlerExecutingEventData$instance extends EventData {
|
|
844
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforePageFilterOnPageHandlerExecutingEventData: never;
|
|
845
|
+
|
|
846
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
847
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
848
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
849
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
850
|
+
|
|
607
851
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
608
852
|
readonly Count: int;
|
|
609
853
|
readonly Filter: IPageFilter;
|
|
610
854
|
readonly HandlerExecutingContext: PageHandlerExecutingContext;
|
|
611
|
-
readonly [index: number]:
|
|
855
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
612
856
|
}
|
|
613
857
|
|
|
614
858
|
|
|
@@ -621,11 +865,18 @@ export const BeforePageFilterOnPageHandlerExecutingEventData: {
|
|
|
621
865
|
export type BeforePageFilterOnPageHandlerExecutingEventData = BeforePageFilterOnPageHandlerExecutingEventData$instance;
|
|
622
866
|
|
|
623
867
|
export interface BeforePageFilterOnPageHandlerExecutionEventData$instance extends EventData {
|
|
868
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforePageFilterOnPageHandlerExecutionEventData: never;
|
|
869
|
+
|
|
870
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
871
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
872
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
873
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
874
|
+
|
|
624
875
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
625
876
|
readonly Count: int;
|
|
626
877
|
readonly Filter: IAsyncPageFilter;
|
|
627
878
|
readonly HandlerExecutionContext: PageHandlerExecutingContext;
|
|
628
|
-
readonly [index: number]:
|
|
879
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
629
880
|
}
|
|
630
881
|
|
|
631
882
|
|
|
@@ -638,11 +889,18 @@ export const BeforePageFilterOnPageHandlerExecutionEventData: {
|
|
|
638
889
|
export type BeforePageFilterOnPageHandlerExecutionEventData = BeforePageFilterOnPageHandlerExecutionEventData$instance;
|
|
639
890
|
|
|
640
891
|
export interface BeforePageFilterOnPageHandlerSelectedEventData$instance extends EventData {
|
|
892
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforePageFilterOnPageHandlerSelectedEventData: never;
|
|
893
|
+
|
|
894
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
895
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
896
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
897
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
898
|
+
|
|
641
899
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
642
900
|
readonly Count: int;
|
|
643
901
|
readonly Filter: IPageFilter;
|
|
644
902
|
readonly HandlerSelectedContext: PageHandlerSelectedContext;
|
|
645
|
-
readonly [index: number]:
|
|
903
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
646
904
|
}
|
|
647
905
|
|
|
648
906
|
|
|
@@ -655,11 +913,18 @@ export const BeforePageFilterOnPageHandlerSelectedEventData: {
|
|
|
655
913
|
export type BeforePageFilterOnPageHandlerSelectedEventData = BeforePageFilterOnPageHandlerSelectedEventData$instance;
|
|
656
914
|
|
|
657
915
|
export interface BeforePageFilterOnPageHandlerSelectionEventData$instance extends EventData {
|
|
916
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforePageFilterOnPageHandlerSelectionEventData: never;
|
|
917
|
+
|
|
918
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
919
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
920
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
921
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
922
|
+
|
|
658
923
|
readonly ActionDescriptor: CompiledPageActionDescriptor;
|
|
659
924
|
readonly Count: int;
|
|
660
925
|
readonly Filter: IAsyncPageFilter;
|
|
661
926
|
readonly HandlerSelectedContext: PageHandlerSelectedContext;
|
|
662
|
-
readonly [index: number]:
|
|
927
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
663
928
|
}
|
|
664
929
|
|
|
665
930
|
|
|
@@ -672,10 +937,17 @@ export const BeforePageFilterOnPageHandlerSelectionEventData: {
|
|
|
672
937
|
export type BeforePageFilterOnPageHandlerSelectionEventData = BeforePageFilterOnPageHandlerSelectionEventData$instance;
|
|
673
938
|
|
|
674
939
|
export interface BeforeResourceFilterOnResourceExecutedEventData$instance extends EventData {
|
|
940
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResourceFilterOnResourceExecutedEventData: never;
|
|
941
|
+
|
|
942
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
943
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
944
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
945
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
946
|
+
|
|
675
947
|
readonly ActionDescriptor: ActionDescriptor;
|
|
676
948
|
readonly Count: int;
|
|
677
949
|
readonly Filter: IFilterMetadata;
|
|
678
|
-
readonly [index: number]:
|
|
950
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
679
951
|
readonly ResourceExecutedContext: ResourceExecutedContext;
|
|
680
952
|
}
|
|
681
953
|
|
|
@@ -689,10 +961,17 @@ export const BeforeResourceFilterOnResourceExecutedEventData: {
|
|
|
689
961
|
export type BeforeResourceFilterOnResourceExecutedEventData = BeforeResourceFilterOnResourceExecutedEventData$instance;
|
|
690
962
|
|
|
691
963
|
export interface BeforeResourceFilterOnResourceExecutingEventData$instance extends EventData {
|
|
964
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResourceFilterOnResourceExecutingEventData: never;
|
|
965
|
+
|
|
966
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
967
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
968
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
969
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
970
|
+
|
|
692
971
|
readonly ActionDescriptor: ActionDescriptor;
|
|
693
972
|
readonly Count: int;
|
|
694
973
|
readonly Filter: IFilterMetadata;
|
|
695
|
-
readonly [index: number]:
|
|
974
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
696
975
|
readonly ResourceExecutingContext: ResourceExecutingContext;
|
|
697
976
|
}
|
|
698
977
|
|
|
@@ -706,10 +985,17 @@ export const BeforeResourceFilterOnResourceExecutingEventData: {
|
|
|
706
985
|
export type BeforeResourceFilterOnResourceExecutingEventData = BeforeResourceFilterOnResourceExecutingEventData$instance;
|
|
707
986
|
|
|
708
987
|
export interface BeforeResourceFilterOnResourceExecutionEventData$instance extends EventData {
|
|
988
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResourceFilterOnResourceExecutionEventData: never;
|
|
989
|
+
|
|
990
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
991
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
992
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
993
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
994
|
+
|
|
709
995
|
readonly ActionDescriptor: ActionDescriptor;
|
|
710
996
|
readonly Count: int;
|
|
711
997
|
readonly Filter: IFilterMetadata;
|
|
712
|
-
readonly [index: number]:
|
|
998
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
713
999
|
readonly ResourceExecutingContext: ResourceExecutingContext;
|
|
714
1000
|
}
|
|
715
1001
|
|
|
@@ -723,10 +1009,17 @@ export const BeforeResourceFilterOnResourceExecutionEventData: {
|
|
|
723
1009
|
export type BeforeResourceFilterOnResourceExecutionEventData = BeforeResourceFilterOnResourceExecutionEventData$instance;
|
|
724
1010
|
|
|
725
1011
|
export interface BeforeResultFilterOnResultExecutedEventData$instance extends EventData {
|
|
1012
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResultFilterOnResultExecutedEventData: never;
|
|
1013
|
+
|
|
1014
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1015
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1016
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1017
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1018
|
+
|
|
726
1019
|
readonly ActionDescriptor: ActionDescriptor;
|
|
727
1020
|
readonly Count: int;
|
|
728
1021
|
readonly Filter: IFilterMetadata;
|
|
729
|
-
readonly [index: number]:
|
|
1022
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
730
1023
|
readonly ResultExecutedContext: ResultExecutedContext;
|
|
731
1024
|
}
|
|
732
1025
|
|
|
@@ -740,10 +1033,17 @@ export const BeforeResultFilterOnResultExecutedEventData: {
|
|
|
740
1033
|
export type BeforeResultFilterOnResultExecutedEventData = BeforeResultFilterOnResultExecutedEventData$instance;
|
|
741
1034
|
|
|
742
1035
|
export interface BeforeResultFilterOnResultExecutingEventData$instance extends EventData {
|
|
1036
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResultFilterOnResultExecutingEventData: never;
|
|
1037
|
+
|
|
1038
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1039
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1040
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1041
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1042
|
+
|
|
743
1043
|
readonly ActionDescriptor: ActionDescriptor;
|
|
744
1044
|
readonly Count: int;
|
|
745
1045
|
readonly Filter: IFilterMetadata;
|
|
746
|
-
readonly [index: number]:
|
|
1046
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
747
1047
|
readonly ResultExecutingContext: ResultExecutingContext;
|
|
748
1048
|
}
|
|
749
1049
|
|
|
@@ -757,10 +1057,17 @@ export const BeforeResultFilterOnResultExecutingEventData: {
|
|
|
757
1057
|
export type BeforeResultFilterOnResultExecutingEventData = BeforeResultFilterOnResultExecutingEventData$instance;
|
|
758
1058
|
|
|
759
1059
|
export interface BeforeResultFilterOnResultExecutionEventData$instance extends EventData {
|
|
1060
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeResultFilterOnResultExecutionEventData: never;
|
|
1061
|
+
|
|
1062
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1063
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1064
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1065
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1066
|
+
|
|
760
1067
|
readonly ActionDescriptor: ActionDescriptor;
|
|
761
1068
|
readonly Count: int;
|
|
762
1069
|
readonly Filter: IFilterMetadata;
|
|
763
|
-
readonly [index: number]:
|
|
1070
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
764
1071
|
readonly ResultExecutingContext: ResultExecutingContext;
|
|
765
1072
|
}
|
|
766
1073
|
|
|
@@ -774,9 +1081,16 @@ export const BeforeResultFilterOnResultExecutionEventData: {
|
|
|
774
1081
|
export type BeforeResultFilterOnResultExecutionEventData = BeforeResultFilterOnResultExecutionEventData$instance;
|
|
775
1082
|
|
|
776
1083
|
export interface BeforeViewComponentEventData$instance extends EventData {
|
|
1084
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeViewComponentEventData: never;
|
|
1085
|
+
|
|
1086
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1087
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1088
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1089
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1090
|
+
|
|
777
1091
|
readonly ActionDescriptor: ActionDescriptor;
|
|
778
1092
|
readonly Count: int;
|
|
779
|
-
readonly [index: number]:
|
|
1093
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
780
1094
|
readonly ViewComponent: unknown;
|
|
781
1095
|
readonly ViewComponentContext: ViewComponentContext;
|
|
782
1096
|
}
|
|
@@ -791,8 +1105,15 @@ export const BeforeViewComponentEventData: {
|
|
|
791
1105
|
export type BeforeViewComponentEventData = BeforeViewComponentEventData$instance;
|
|
792
1106
|
|
|
793
1107
|
export interface BeforeViewEventData$instance extends EventData {
|
|
1108
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeViewEventData: never;
|
|
1109
|
+
|
|
1110
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1111
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1112
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1113
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1114
|
+
|
|
794
1115
|
readonly Count: int;
|
|
795
|
-
readonly [index: number]:
|
|
1116
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
796
1117
|
readonly View: IView;
|
|
797
1118
|
readonly ViewContext: ViewContext;
|
|
798
1119
|
}
|
|
@@ -807,10 +1128,17 @@ export const BeforeViewEventData: {
|
|
|
807
1128
|
export type BeforeViewEventData = BeforeViewEventData$instance;
|
|
808
1129
|
|
|
809
1130
|
export interface BeforeViewPageEventData$instance extends EventData {
|
|
1131
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_BeforeViewPageEventData: never;
|
|
1132
|
+
|
|
1133
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1134
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1135
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1136
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1137
|
+
|
|
810
1138
|
readonly ActionDescriptor: ActionDescriptor;
|
|
811
1139
|
readonly Count: int;
|
|
812
1140
|
readonly HttpContext: HttpContext;
|
|
813
|
-
readonly [index: number]:
|
|
1141
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
814
1142
|
readonly Page: IRazorPage;
|
|
815
1143
|
readonly ViewContext: ViewContext;
|
|
816
1144
|
}
|
|
@@ -825,8 +1153,15 @@ export const BeforeViewPageEventData: {
|
|
|
825
1153
|
export type BeforeViewPageEventData = BeforeViewPageEventData$instance;
|
|
826
1154
|
|
|
827
1155
|
export interface EventData$instance {
|
|
1156
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_EventData: never;
|
|
1157
|
+
|
|
1158
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1159
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1160
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1161
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1162
|
+
|
|
828
1163
|
readonly Count: int;
|
|
829
|
-
readonly [index: number]:
|
|
1164
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
830
1165
|
}
|
|
831
1166
|
|
|
832
1167
|
|
|
@@ -838,9 +1173,16 @@ export const EventData: (abstract new() => EventData) & {
|
|
|
838
1173
|
export type EventData = EventData$instance;
|
|
839
1174
|
|
|
840
1175
|
export interface ViewComponentAfterViewExecuteEventData$instance extends EventData {
|
|
1176
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_ViewComponentAfterViewExecuteEventData: never;
|
|
1177
|
+
|
|
1178
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1179
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1180
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1181
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1182
|
+
|
|
841
1183
|
readonly ActionDescriptor: ActionDescriptor;
|
|
842
1184
|
readonly Count: int;
|
|
843
|
-
readonly [index: number]:
|
|
1185
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
844
1186
|
readonly View: IView;
|
|
845
1187
|
readonly ViewComponentContext: ViewComponentContext;
|
|
846
1188
|
}
|
|
@@ -855,9 +1197,16 @@ export const ViewComponentAfterViewExecuteEventData: {
|
|
|
855
1197
|
export type ViewComponentAfterViewExecuteEventData = ViewComponentAfterViewExecuteEventData$instance;
|
|
856
1198
|
|
|
857
1199
|
export interface ViewComponentBeforeViewExecuteEventData$instance extends EventData {
|
|
1200
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_ViewComponentBeforeViewExecuteEventData: never;
|
|
1201
|
+
|
|
1202
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1203
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1204
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1205
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1206
|
+
|
|
858
1207
|
readonly ActionDescriptor: ActionDescriptor;
|
|
859
1208
|
readonly Count: int;
|
|
860
|
-
readonly [index: number]:
|
|
1209
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
861
1210
|
readonly View: IView;
|
|
862
1211
|
readonly ViewComponentContext: ViewComponentContext;
|
|
863
1212
|
}
|
|
@@ -872,10 +1221,17 @@ export const ViewComponentBeforeViewExecuteEventData: {
|
|
|
872
1221
|
export type ViewComponentBeforeViewExecuteEventData = ViewComponentBeforeViewExecuteEventData$instance;
|
|
873
1222
|
|
|
874
1223
|
export interface ViewFoundEventData$instance extends EventData {
|
|
1224
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_ViewFoundEventData: never;
|
|
1225
|
+
|
|
1226
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1227
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1228
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1229
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1230
|
+
|
|
875
1231
|
readonly ActionContext: ActionContext;
|
|
876
1232
|
readonly Count: int;
|
|
877
1233
|
readonly IsMainPage: boolean;
|
|
878
|
-
readonly [index: number]:
|
|
1234
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
879
1235
|
readonly Result: ActionResult;
|
|
880
1236
|
readonly View: IView;
|
|
881
1237
|
readonly ViewName: string;
|
|
@@ -891,18 +1247,25 @@ export const ViewFoundEventData: {
|
|
|
891
1247
|
export type ViewFoundEventData = ViewFoundEventData$instance;
|
|
892
1248
|
|
|
893
1249
|
export interface ViewNotFoundEventData$instance extends EventData {
|
|
1250
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Diagnostics_ViewNotFoundEventData: never;
|
|
1251
|
+
|
|
1252
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1253
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
1254
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
1255
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
1256
|
+
|
|
894
1257
|
readonly ActionContext: ActionContext;
|
|
895
1258
|
readonly Count: int;
|
|
896
1259
|
readonly IsMainPage: boolean;
|
|
897
|
-
readonly [index: number]:
|
|
1260
|
+
readonly [index: number]: KeyValuePair_2<System_Internal.String, unknown>;
|
|
898
1261
|
readonly Result: ActionResult;
|
|
899
|
-
readonly SearchedLocations:
|
|
1262
|
+
readonly SearchedLocations: IEnumerable_1<System_Internal.String>;
|
|
900
1263
|
readonly ViewName: string;
|
|
901
1264
|
}
|
|
902
1265
|
|
|
903
1266
|
|
|
904
1267
|
export const ViewNotFoundEventData: {
|
|
905
|
-
new(actionContext: ActionContext, isMainPage: boolean, result: ActionResult, viewName: string, searchedLocations:
|
|
1268
|
+
new(actionContext: ActionContext, isMainPage: boolean, result: ActionResult, viewName: string, searchedLocations: IEnumerable_1<System_Internal.String>): ViewNotFoundEventData;
|
|
906
1269
|
readonly EventName: string;
|
|
907
1270
|
};
|
|
908
1271
|
|