@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
|
@@ -9,18 +9,20 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { RenderTreeBuilder } from "../../Microsoft.AspNetCore.Components.Rendering/internal/index.js";
|
|
10
10
|
import * as Microsoft_AspNetCore_Components_Internal from "../../Microsoft.AspNetCore.Components/internal/index.js";
|
|
11
11
|
import type { ComponentBase, EventCallbackWorkItem, IComponent, IComponentRenderMode, IHandleAfterRender, IHandleEvent, ParameterView, RendererInfo, RenderFragment, RenderFragment_1, RenderHandle, ResourceAssetCollection } from "../../Microsoft.AspNetCore.Components/internal/index.js";
|
|
12
|
-
import type {
|
|
13
|
-
import * as
|
|
14
|
-
import type {
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import
|
|
18
|
-
import type {
|
|
12
|
+
import type { ICollection_1, IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
14
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
15
|
+
import type { Task, ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
16
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
17
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
18
|
+
import type { Action, AsyncCallback, Boolean as ClrBoolean, Exception, Func_1, IAsyncDisposable, IAsyncResult, ICloneable, Int32, IntPtr, MulticastDelegate, Object as ClrObject, Single, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
19
19
|
|
|
20
|
-
export type ItemsProviderDelegate_1<TItem> = (request: ItemsProviderRequest) =>
|
|
20
|
+
export type ItemsProviderDelegate_1<TItem> = (request: ItemsProviderRequest) => ValueTask_1<ItemsProviderResult_1<TItem>>;
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export interface ItemsProviderRequest$instance {
|
|
24
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Components_Web_Virtualization_ItemsProviderRequest: never;
|
|
25
|
+
|
|
24
26
|
readonly CancellationToken: CancellationToken;
|
|
25
27
|
readonly Count: int;
|
|
26
28
|
readonly StartIndex: int;
|
|
@@ -35,19 +37,23 @@ export const ItemsProviderRequest: {
|
|
|
35
37
|
export type ItemsProviderRequest = ItemsProviderRequest$instance;
|
|
36
38
|
|
|
37
39
|
export interface ItemsProviderResult_1$instance<TItem> {
|
|
38
|
-
readonly
|
|
40
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Components_Web_Virtualization_ItemsProviderResult_1: never;
|
|
41
|
+
|
|
42
|
+
readonly Items: IEnumerable_1<TItem>;
|
|
39
43
|
readonly TotalItemCount: int;
|
|
40
44
|
}
|
|
41
45
|
|
|
42
46
|
|
|
43
47
|
export const ItemsProviderResult_1: {
|
|
44
|
-
new<TItem>(items:
|
|
48
|
+
new<TItem>(items: IEnumerable_1<TItem>, totalItemCount: int): ItemsProviderResult_1<TItem>;
|
|
45
49
|
};
|
|
46
50
|
|
|
47
51
|
|
|
48
52
|
export type ItemsProviderResult_1<TItem> = ItemsProviderResult_1$instance<TItem>;
|
|
49
53
|
|
|
50
54
|
export interface PlaceholderContext$instance {
|
|
55
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Components_Web_Virtualization_PlaceholderContext: never;
|
|
56
|
+
|
|
51
57
|
readonly Index: int;
|
|
52
58
|
readonly Size: float;
|
|
53
59
|
}
|
|
@@ -60,15 +66,23 @@ export const PlaceholderContext: {
|
|
|
60
66
|
|
|
61
67
|
export type PlaceholderContext = PlaceholderContext$instance;
|
|
62
68
|
|
|
63
|
-
export interface Virtualize_1$instance<TItem> extends ComponentBase {
|
|
69
|
+
export interface Virtualize_1$instance<TItem> extends ComponentBase, Microsoft_AspNetCore_Components_Internal.IHandleEvent$instance, System_Internal.IAsyncDisposable {
|
|
70
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Components_Web_Virtualization_Virtualize_1: never;
|
|
71
|
+
|
|
72
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IComponent: never;
|
|
73
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleAfterRender: never;
|
|
74
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Components_IHandleEvent: never;
|
|
75
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Components_Web_Virtualization_IVirtualizeJsCallbacks: never;
|
|
76
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
77
|
+
|
|
64
78
|
get ChildContent(): RenderFragment_1<TItem> | undefined;
|
|
65
79
|
set ChildContent(value: RenderFragment_1<TItem> | undefined);
|
|
66
80
|
get EmptyContent(): RenderFragment | undefined;
|
|
67
81
|
set EmptyContent(value: RenderFragment | undefined);
|
|
68
82
|
get ItemContent(): RenderFragment_1<TItem> | undefined;
|
|
69
83
|
set ItemContent(value: RenderFragment_1<TItem> | undefined);
|
|
70
|
-
get Items():
|
|
71
|
-
set Items(value:
|
|
84
|
+
get Items(): ICollection_1<TItem> | undefined;
|
|
85
|
+
set Items(value: ICollection_1<TItem> | undefined);
|
|
72
86
|
ItemSize: float;
|
|
73
87
|
get ItemsProvider(): ItemsProviderDelegate_1<TItem> | undefined;
|
|
74
88
|
set ItemsProvider(value: ItemsProviderDelegate_1<TItem> | undefined);
|
|
@@ -100,8 +114,6 @@ export interface __Virtualize_1$views<TItem> {
|
|
|
100
114
|
As_IHandleEvent(): Microsoft_AspNetCore_Components_Internal.IHandleEvent$instance;
|
|
101
115
|
}
|
|
102
116
|
|
|
103
|
-
export interface Virtualize_1$instance<TItem> extends Microsoft_AspNetCore_Components_Internal.IHandleEvent$instance {}
|
|
104
|
-
|
|
105
117
|
export type Virtualize_1<TItem> = Virtualize_1$instance<TItem> & __Virtualize_1$views<TItem>;
|
|
106
118
|
|
|
107
119
|
|
|
@@ -9,24 +9,24 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import * as Microsoft_AspNetCore_Connections_Features_Internal from "../../Microsoft.AspNetCore.Connections.Features/internal/index.js";
|
|
10
10
|
import type { IConnectionEndPointFeature, IConnectionIdFeature, IConnectionItemsFeature, IConnectionLifetimeFeature, IConnectionTransportFeature, IConnectionUserFeature } from "../../Microsoft.AspNetCore.Connections.Features/internal/index.js";
|
|
11
11
|
import type { IFeatureCollection } from "../../Microsoft.AspNetCore.Http.Features/internal/index.js";
|
|
12
|
-
import type {
|
|
13
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
14
|
-
import type {
|
|
15
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import type {
|
|
20
|
-
import
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import type {
|
|
25
|
-
import
|
|
26
|
-
import type {
|
|
27
|
-
import type {
|
|
28
|
-
import
|
|
29
|
-
import type {
|
|
12
|
+
import type { MemoryPool_1 } from "@tsonic/dotnet/System.Buffers/internal/index.js";
|
|
13
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import type { ICollection_1, IDictionary_2, IEnumerable_1, KeyValuePair_2, List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
15
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
17
|
+
import type { IDuplexPipe } from "@tsonic/dotnet/System.IO.Pipelines/internal/index.js";
|
|
18
|
+
import * as System_IO_Internal from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
19
|
+
import type { IOException } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
20
|
+
import type { SslApplicationProtocol, SslClientHelloInfo, SslServerAuthenticationOptions } from "@tsonic/dotnet/System.Net.Security/internal/index.js";
|
|
21
|
+
import * as System_Net_Internal from "@tsonic/dotnet/System.Net/internal/index.js";
|
|
22
|
+
import type { EndPoint } from "@tsonic/dotnet/System.Net/internal/index.js";
|
|
23
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
24
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
25
|
+
import type { ClaimsPrincipal } from "@tsonic/dotnet/System.Security.Claims/internal/index.js";
|
|
26
|
+
import type { Task, ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
27
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
28
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
29
|
+
import type { AsyncCallback, Boolean as ClrBoolean, Enum, Exception, Func_1, Func_2, Func_3, IAsyncDisposable, IAsyncResult, ICloneable, IComparable, IConvertible, IFormattable, Int32, IntPtr, InvalidOperationException, IServiceProvider, ISpanFormattable, MulticastDelegate, Object as ClrObject, OperationCanceledException, String as ClrString, UInt64, Uri, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
30
30
|
|
|
31
31
|
export enum FileHandleType {
|
|
32
32
|
Auto = 0,
|
|
@@ -48,38 +48,50 @@ export type MultiplexedConnectionDelegate = (connection: MultiplexedConnectionCo
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
export interface IConnectionBuilder$instance {
|
|
51
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionBuilder: never;
|
|
52
|
+
|
|
51
53
|
readonly ApplicationServices: IServiceProvider;
|
|
52
54
|
Build(): ConnectionDelegate;
|
|
53
|
-
Use(middleware:
|
|
55
|
+
Use(middleware: Func_2<ConnectionDelegate, ConnectionDelegate>): IConnectionBuilder;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
|
|
57
59
|
export type IConnectionBuilder = IConnectionBuilder$instance;
|
|
58
60
|
|
|
59
61
|
export interface IConnectionFactory$instance {
|
|
60
|
-
|
|
62
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionFactory: never;
|
|
63
|
+
|
|
64
|
+
ConnectAsync(endpoint: EndPoint, cancellationToken?: CancellationToken): ValueTask_1<ConnectionContext>;
|
|
61
65
|
}
|
|
62
66
|
|
|
63
67
|
|
|
64
68
|
export type IConnectionFactory = IConnectionFactory$instance;
|
|
65
69
|
|
|
66
70
|
export interface IConnectionListener$instance extends IAsyncDisposable {
|
|
71
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionListener: never;
|
|
72
|
+
|
|
67
73
|
readonly EndPoint: EndPoint;
|
|
68
|
-
AcceptAsync(cancellationToken?: CancellationToken):
|
|
74
|
+
AcceptAsync(cancellationToken?: CancellationToken): ValueTask_1<ConnectionContext>;
|
|
69
75
|
UnbindAsync(cancellationToken?: CancellationToken): ValueTask;
|
|
70
76
|
}
|
|
71
77
|
|
|
72
78
|
|
|
79
|
+
export interface IConnectionListener$instance extends System_Internal.IAsyncDisposable {}
|
|
80
|
+
|
|
73
81
|
export type IConnectionListener = IConnectionListener$instance;
|
|
74
82
|
|
|
75
83
|
export interface IConnectionListenerFactory$instance {
|
|
76
|
-
|
|
84
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionListenerFactory: never;
|
|
85
|
+
|
|
86
|
+
BindAsync(endpoint: EndPoint, cancellationToken?: CancellationToken): ValueTask_1<IConnectionListener>;
|
|
77
87
|
}
|
|
78
88
|
|
|
79
89
|
|
|
80
90
|
export type IConnectionListenerFactory = IConnectionListenerFactory$instance;
|
|
81
91
|
|
|
82
92
|
export interface IConnectionListenerFactorySelector$instance {
|
|
93
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionListenerFactorySelector: never;
|
|
94
|
+
|
|
83
95
|
CanBind(endpoint: EndPoint): boolean;
|
|
84
96
|
}
|
|
85
97
|
|
|
@@ -87,45 +99,61 @@ export interface IConnectionListenerFactorySelector$instance {
|
|
|
87
99
|
export type IConnectionListenerFactorySelector = IConnectionListenerFactorySelector$instance;
|
|
88
100
|
|
|
89
101
|
export interface IMemoryPoolFactory_1$instance<T> {
|
|
90
|
-
|
|
102
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMemoryPoolFactory_1: never;
|
|
103
|
+
|
|
104
|
+
Create(options?: MemoryPoolOptions): MemoryPool_1<T>;
|
|
91
105
|
}
|
|
92
106
|
|
|
93
107
|
|
|
94
108
|
export type IMemoryPoolFactory_1<T> = IMemoryPoolFactory_1$instance<T>;
|
|
95
109
|
|
|
96
110
|
export interface IMultiplexedConnectionBuilder$instance {
|
|
111
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMultiplexedConnectionBuilder: never;
|
|
112
|
+
|
|
97
113
|
readonly ApplicationServices: IServiceProvider;
|
|
98
114
|
Build(): MultiplexedConnectionDelegate;
|
|
99
|
-
Use(middleware:
|
|
115
|
+
Use(middleware: Func_2<MultiplexedConnectionDelegate, MultiplexedConnectionDelegate>): IMultiplexedConnectionBuilder;
|
|
100
116
|
}
|
|
101
117
|
|
|
102
118
|
|
|
103
119
|
export type IMultiplexedConnectionBuilder = IMultiplexedConnectionBuilder$instance;
|
|
104
120
|
|
|
105
121
|
export interface IMultiplexedConnectionFactory$instance {
|
|
106
|
-
|
|
122
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMultiplexedConnectionFactory: never;
|
|
123
|
+
|
|
124
|
+
ConnectAsync(endpoint: EndPoint, features?: IFeatureCollection, cancellationToken?: CancellationToken): ValueTask_1<MultiplexedConnectionContext>;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
|
|
110
128
|
export type IMultiplexedConnectionFactory = IMultiplexedConnectionFactory$instance;
|
|
111
129
|
|
|
112
130
|
export interface IMultiplexedConnectionListener$instance extends IAsyncDisposable {
|
|
131
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMultiplexedConnectionListener: never;
|
|
132
|
+
|
|
113
133
|
readonly EndPoint: EndPoint;
|
|
114
|
-
AcceptAsync(features?: IFeatureCollection, cancellationToken?: CancellationToken):
|
|
134
|
+
AcceptAsync(features?: IFeatureCollection, cancellationToken?: CancellationToken): ValueTask_1<MultiplexedConnectionContext>;
|
|
115
135
|
UnbindAsync(cancellationToken?: CancellationToken): ValueTask;
|
|
116
136
|
}
|
|
117
137
|
|
|
118
138
|
|
|
139
|
+
export interface IMultiplexedConnectionListener$instance extends System_Internal.IAsyncDisposable {}
|
|
140
|
+
|
|
119
141
|
export type IMultiplexedConnectionListener = IMultiplexedConnectionListener$instance;
|
|
120
142
|
|
|
121
143
|
export interface IMultiplexedConnectionListenerFactory$instance {
|
|
122
|
-
|
|
144
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMultiplexedConnectionListenerFactory: never;
|
|
145
|
+
|
|
146
|
+
BindAsync(endpoint: EndPoint, features?: IFeatureCollection, cancellationToken?: CancellationToken): ValueTask_1<IMultiplexedConnectionListener>;
|
|
123
147
|
}
|
|
124
148
|
|
|
125
149
|
|
|
126
150
|
export type IMultiplexedConnectionListenerFactory = IMultiplexedConnectionListenerFactory$instance;
|
|
127
151
|
|
|
128
152
|
export interface AddressInUseException$instance extends InvalidOperationException {
|
|
153
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_AddressInUseException: never;
|
|
154
|
+
|
|
155
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
156
|
+
|
|
129
157
|
}
|
|
130
158
|
|
|
131
159
|
|
|
@@ -138,10 +166,14 @@ export const AddressInUseException: {
|
|
|
138
166
|
export type AddressInUseException = AddressInUseException$instance;
|
|
139
167
|
|
|
140
168
|
export interface BaseConnectionContext$instance {
|
|
169
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_BaseConnectionContext: never;
|
|
170
|
+
|
|
171
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
172
|
+
|
|
141
173
|
ConnectionClosed: CancellationToken;
|
|
142
174
|
ConnectionId: string;
|
|
143
175
|
readonly Features: IFeatureCollection;
|
|
144
|
-
Items:
|
|
176
|
+
Items: IDictionary_2<unknown, unknown | undefined>;
|
|
145
177
|
get LocalEndPoint(): EndPoint | undefined;
|
|
146
178
|
set LocalEndPoint(value: EndPoint | undefined);
|
|
147
179
|
get RemoteEndPoint(): EndPoint | undefined;
|
|
@@ -159,6 +191,10 @@ export const BaseConnectionContext: (abstract new() => BaseConnectionContext) &
|
|
|
159
191
|
export type BaseConnectionContext = BaseConnectionContext$instance;
|
|
160
192
|
|
|
161
193
|
export interface ConnectionAbortedException$instance extends OperationCanceledException {
|
|
194
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionAbortedException: never;
|
|
195
|
+
|
|
196
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
197
|
+
|
|
162
198
|
}
|
|
163
199
|
|
|
164
200
|
|
|
@@ -171,10 +207,14 @@ export const ConnectionAbortedException: {
|
|
|
171
207
|
|
|
172
208
|
export type ConnectionAbortedException = ConnectionAbortedException$instance;
|
|
173
209
|
|
|
174
|
-
export interface ConnectionBuilder$instance {
|
|
210
|
+
export interface ConnectionBuilder$instance extends IConnectionBuilder$instance {
|
|
211
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionBuilder: never;
|
|
212
|
+
|
|
213
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IConnectionBuilder: never;
|
|
214
|
+
|
|
175
215
|
readonly ApplicationServices: IServiceProvider;
|
|
176
216
|
Build(): ConnectionDelegate;
|
|
177
|
-
Use(middleware:
|
|
217
|
+
Use(middleware: Func_2<ConnectionDelegate, ConnectionDelegate>): IConnectionBuilder;
|
|
178
218
|
}
|
|
179
219
|
|
|
180
220
|
|
|
@@ -187,12 +227,14 @@ export interface __ConnectionBuilder$views {
|
|
|
187
227
|
As_IConnectionBuilder(): IConnectionBuilder$instance;
|
|
188
228
|
}
|
|
189
229
|
|
|
190
|
-
export interface ConnectionBuilder$instance extends IConnectionBuilder$instance {}
|
|
191
|
-
|
|
192
230
|
export type ConnectionBuilder = ConnectionBuilder$instance & __ConnectionBuilder$views;
|
|
193
231
|
|
|
194
232
|
|
|
195
233
|
export interface ConnectionContext$instance extends BaseConnectionContext {
|
|
234
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionContext: never;
|
|
235
|
+
|
|
236
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
237
|
+
|
|
196
238
|
Transport: IDuplexPipe;
|
|
197
239
|
Abort(abortReason: ConnectionAbortedException): void;
|
|
198
240
|
Abort(): void;
|
|
@@ -206,6 +248,8 @@ export const ConnectionContext: (abstract new() => ConnectionContext) & {
|
|
|
206
248
|
export type ConnectionContext = ConnectionContext$instance;
|
|
207
249
|
|
|
208
250
|
export interface ConnectionHandler$instance {
|
|
251
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionHandler: never;
|
|
252
|
+
|
|
209
253
|
OnConnectedAsync(connection: ConnectionContext): Task;
|
|
210
254
|
}
|
|
211
255
|
|
|
@@ -217,19 +261,30 @@ export const ConnectionHandler: (abstract new() => ConnectionHandler) & {
|
|
|
217
261
|
export type ConnectionHandler = ConnectionHandler$instance;
|
|
218
262
|
|
|
219
263
|
export interface ConnectionItems$instance {
|
|
220
|
-
readonly
|
|
264
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionItems: never;
|
|
265
|
+
|
|
266
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
267
|
+
readonly __tsonic_iface_System_Collections_Generic_IDictionary_2: never;
|
|
268
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
269
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
270
|
+
|
|
271
|
+
readonly Items: IDictionary_2<unknown, unknown | undefined>;
|
|
221
272
|
}
|
|
222
273
|
|
|
223
274
|
|
|
224
275
|
export const ConnectionItems: {
|
|
225
276
|
new(): ConnectionItems;
|
|
226
|
-
new(items:
|
|
277
|
+
new(items: IDictionary_2<unknown, unknown>): ConnectionItems;
|
|
227
278
|
};
|
|
228
279
|
|
|
229
280
|
|
|
230
281
|
export type ConnectionItems = ConnectionItems$instance;
|
|
231
282
|
|
|
232
283
|
export interface ConnectionResetException$instance extends IOException {
|
|
284
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_ConnectionResetException: never;
|
|
285
|
+
|
|
286
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
287
|
+
|
|
233
288
|
}
|
|
234
289
|
|
|
235
290
|
|
|
@@ -241,13 +296,23 @@ export const ConnectionResetException: {
|
|
|
241
296
|
|
|
242
297
|
export type ConnectionResetException = ConnectionResetException$instance;
|
|
243
298
|
|
|
244
|
-
export interface DefaultConnectionContext$instance extends ConnectionContext {
|
|
299
|
+
export interface DefaultConnectionContext$instance extends ConnectionContext, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionEndPointFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionIdFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionItemsFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionTransportFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionUserFeature$instance, System_Internal.IAsyncDisposable {
|
|
300
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_DefaultConnectionContext: never;
|
|
301
|
+
|
|
302
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionEndPointFeature: never;
|
|
303
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionIdFeature: never;
|
|
304
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionItemsFeature: never;
|
|
305
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionLifetimeFeature: never;
|
|
306
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionTransportFeature: never;
|
|
307
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Features_IConnectionUserFeature: never;
|
|
308
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
309
|
+
|
|
245
310
|
get Application(): IDuplexPipe | undefined;
|
|
246
311
|
set Application(value: IDuplexPipe | undefined);
|
|
247
312
|
ConnectionClosed: CancellationToken;
|
|
248
313
|
ConnectionId: string;
|
|
249
314
|
readonly Features: IFeatureCollection;
|
|
250
|
-
Items:
|
|
315
|
+
Items: IDictionary_2<unknown, unknown | undefined>;
|
|
251
316
|
get LocalEndPoint(): EndPoint | undefined;
|
|
252
317
|
set LocalEndPoint(value: EndPoint | undefined);
|
|
253
318
|
get RemoteEndPoint(): EndPoint | undefined;
|
|
@@ -277,12 +342,12 @@ export interface __DefaultConnectionContext$views {
|
|
|
277
342
|
As_IConnectionUserFeature(): Microsoft_AspNetCore_Connections_Features_Internal.IConnectionUserFeature$instance;
|
|
278
343
|
}
|
|
279
344
|
|
|
280
|
-
export interface DefaultConnectionContext$instance extends Microsoft_AspNetCore_Connections_Features_Internal.IConnectionEndPointFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionIdFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionItemsFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionTransportFeature$instance, Microsoft_AspNetCore_Connections_Features_Internal.IConnectionUserFeature$instance {}
|
|
281
|
-
|
|
282
345
|
export type DefaultConnectionContext = DefaultConnectionContext$instance & __DefaultConnectionContext$views;
|
|
283
346
|
|
|
284
347
|
|
|
285
348
|
export interface FileHandleEndPoint$instance extends EndPoint {
|
|
349
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_FileHandleEndPoint: never;
|
|
350
|
+
|
|
286
351
|
readonly FileHandle: ulong;
|
|
287
352
|
readonly FileHandleType: FileHandleType;
|
|
288
353
|
}
|
|
@@ -296,6 +361,8 @@ export const FileHandleEndPoint: {
|
|
|
296
361
|
export type FileHandleEndPoint = FileHandleEndPoint$instance;
|
|
297
362
|
|
|
298
363
|
export interface MemoryPoolOptions$instance {
|
|
364
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_MemoryPoolOptions: never;
|
|
365
|
+
|
|
299
366
|
get Owner(): string | undefined;
|
|
300
367
|
set Owner(value: string | undefined);
|
|
301
368
|
}
|
|
@@ -308,10 +375,14 @@ export const MemoryPoolOptions: {
|
|
|
308
375
|
|
|
309
376
|
export type MemoryPoolOptions = MemoryPoolOptions$instance;
|
|
310
377
|
|
|
311
|
-
export interface MultiplexedConnectionBuilder$instance {
|
|
378
|
+
export interface MultiplexedConnectionBuilder$instance extends IMultiplexedConnectionBuilder$instance {
|
|
379
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_MultiplexedConnectionBuilder: never;
|
|
380
|
+
|
|
381
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_IMultiplexedConnectionBuilder: never;
|
|
382
|
+
|
|
312
383
|
readonly ApplicationServices: IServiceProvider;
|
|
313
384
|
Build(): MultiplexedConnectionDelegate;
|
|
314
|
-
Use(middleware:
|
|
385
|
+
Use(middleware: Func_2<MultiplexedConnectionDelegate, MultiplexedConnectionDelegate>): IMultiplexedConnectionBuilder;
|
|
315
386
|
}
|
|
316
387
|
|
|
317
388
|
|
|
@@ -324,14 +395,16 @@ export interface __MultiplexedConnectionBuilder$views {
|
|
|
324
395
|
As_IMultiplexedConnectionBuilder(): IMultiplexedConnectionBuilder$instance;
|
|
325
396
|
}
|
|
326
397
|
|
|
327
|
-
export interface MultiplexedConnectionBuilder$instance extends IMultiplexedConnectionBuilder$instance {}
|
|
328
|
-
|
|
329
398
|
export type MultiplexedConnectionBuilder = MultiplexedConnectionBuilder$instance & __MultiplexedConnectionBuilder$views;
|
|
330
399
|
|
|
331
400
|
|
|
332
401
|
export interface MultiplexedConnectionContext$instance extends BaseConnectionContext {
|
|
333
|
-
|
|
334
|
-
|
|
402
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_MultiplexedConnectionContext: never;
|
|
403
|
+
|
|
404
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
405
|
+
|
|
406
|
+
AcceptAsync(cancellationToken?: CancellationToken): ValueTask_1<ConnectionContext>;
|
|
407
|
+
ConnectAsync(features?: IFeatureCollection, cancellationToken?: CancellationToken): ValueTask_1<ConnectionContext>;
|
|
335
408
|
}
|
|
336
409
|
|
|
337
410
|
|
|
@@ -342,6 +415,8 @@ export const MultiplexedConnectionContext: (abstract new() => MultiplexedConnect
|
|
|
342
415
|
export type MultiplexedConnectionContext = MultiplexedConnectionContext$instance;
|
|
343
416
|
|
|
344
417
|
export interface NamedPipeEndPoint$instance extends EndPoint {
|
|
418
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_NamedPipeEndPoint: never;
|
|
419
|
+
|
|
345
420
|
readonly PipeName: string;
|
|
346
421
|
readonly ServerName: string;
|
|
347
422
|
Equals(obj: unknown): boolean;
|
|
@@ -359,6 +434,8 @@ export const NamedPipeEndPoint: {
|
|
|
359
434
|
export type NamedPipeEndPoint = NamedPipeEndPoint$instance;
|
|
360
435
|
|
|
361
436
|
export interface TlsConnectionCallbackContext$instance {
|
|
437
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_TlsConnectionCallbackContext: never;
|
|
438
|
+
|
|
362
439
|
ClientHelloInfo: SslClientHelloInfo;
|
|
363
440
|
Connection: BaseConnectionContext;
|
|
364
441
|
get State(): unknown | undefined;
|
|
@@ -374,8 +451,10 @@ export const TlsConnectionCallbackContext: {
|
|
|
374
451
|
export type TlsConnectionCallbackContext = TlsConnectionCallbackContext$instance;
|
|
375
452
|
|
|
376
453
|
export interface TlsConnectionCallbackOptions$instance {
|
|
377
|
-
|
|
378
|
-
|
|
454
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_TlsConnectionCallbackOptions: never;
|
|
455
|
+
|
|
456
|
+
ApplicationProtocols: List_1<SslApplicationProtocol>;
|
|
457
|
+
OnConnection: Func_3<TlsConnectionCallbackContext, CancellationToken, ValueTask_1<SslServerAuthenticationOptions>>;
|
|
379
458
|
get OnConnectionState(): unknown | undefined;
|
|
380
459
|
set OnConnectionState(value: unknown | undefined);
|
|
381
460
|
}
|
|
@@ -389,6 +468,8 @@ export const TlsConnectionCallbackOptions: {
|
|
|
389
468
|
export type TlsConnectionCallbackOptions = TlsConnectionCallbackOptions$instance;
|
|
390
469
|
|
|
391
470
|
export interface UriEndPoint$instance extends EndPoint {
|
|
471
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Connections_UriEndPoint: never;
|
|
472
|
+
|
|
392
473
|
readonly Uri: Uri;
|
|
393
474
|
ToString(): string;
|
|
394
475
|
}
|
|
@@ -402,9 +483,9 @@ export const UriEndPoint: {
|
|
|
402
483
|
export type UriEndPoint = UriEndPoint$instance;
|
|
403
484
|
|
|
404
485
|
export abstract class ConnectionBuilderExtensions$instance {
|
|
405
|
-
static Run(connectionBuilder: IConnectionBuilder, middleware:
|
|
406
|
-
static Use(connectionBuilder: IConnectionBuilder, middleware:
|
|
407
|
-
static Use(connectionBuilder: IConnectionBuilder, middleware:
|
|
486
|
+
static Run(connectionBuilder: IConnectionBuilder, middleware: Func_2<ConnectionContext, Task>): IConnectionBuilder;
|
|
487
|
+
static Use(connectionBuilder: IConnectionBuilder, middleware: Func_3<ConnectionContext, ConnectionDelegate, Task>): IConnectionBuilder;
|
|
488
|
+
static Use(connectionBuilder: IConnectionBuilder, middleware: Func_3<ConnectionContext, Func_1<Task>, Task>): IConnectionBuilder;
|
|
408
489
|
static UseConnectionHandler<TConnectionHandler extends ConnectionHandler>(connectionBuilder: IConnectionBuilder): IConnectionBuilder;
|
|
409
490
|
}
|
|
410
491
|
|
|
@@ -7,13 +7,15 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
10
|
-
import type { PipeWriter } from "@tsonic/dotnet/System.IO.Pipelines.js";
|
|
11
|
-
import type {
|
|
12
|
-
import type {
|
|
10
|
+
import type { PipeWriter } from "@tsonic/dotnet/System.IO.Pipelines/internal/index.js";
|
|
11
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
12
|
+
import type { Func_2, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface IStatefulReconnectFeature$instance {
|
|
15
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Connections_Abstractions_IStatefulReconnectFeature: never;
|
|
16
|
+
|
|
15
17
|
DisableReconnect(): void;
|
|
16
|
-
OnReconnected(notifyOnReconnect:
|
|
18
|
+
OnReconnected(notifyOnReconnect: Func_2<PipeWriter, Task>): void;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
|