@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
|
@@ -15,25 +15,25 @@ import type { IWrapperProviderFactory } from "../../Microsoft.AspNetCore.Mvc.For
|
|
|
15
15
|
import type { ModelMetadata, ModelStateDictionary } from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
|
|
16
16
|
import type { ActionContext, JsonOptions, MvcOptions } from "../../Microsoft.AspNetCore.Mvc/internal/index.js";
|
|
17
17
|
import type { MediaTypeHeaderValue } from "../../Microsoft.Net.Http.Headers/internal/index.js";
|
|
18
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
19
|
-
import type {
|
|
20
|
-
import * as
|
|
21
|
-
import type {
|
|
22
|
-
import * as
|
|
23
|
-
import type {
|
|
24
|
-
import type { Stream, TextReader, TextWriter } from "@tsonic/dotnet/System.IO.js";
|
|
25
|
-
import * as
|
|
26
|
-
import type {
|
|
27
|
-
import
|
|
28
|
-
import type {
|
|
29
|
-
import type {
|
|
30
|
-
import type {
|
|
31
|
-
import type {
|
|
32
|
-
import
|
|
33
|
-
import type {
|
|
34
|
-
import type {
|
|
35
|
-
import type {
|
|
36
|
-
import type { StringSegment } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
|
|
18
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
19
|
+
import type { ICollection_1, IEnumerable_1, IList_1, IReadOnlyCollection_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
20
|
+
import * as System_Collections_ObjectModel_Internal from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
21
|
+
import type { Collection_1 } from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
22
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
23
|
+
import type { ICollection, IEnumerable, IList } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
24
|
+
import type { Stream, TextReader, TextWriter } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
25
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
26
|
+
import type { DataContractSerializer, DataContractSerializerSettings, ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
27
|
+
import type { JsonSerializerOptions } from "@tsonic/dotnet/System.Text.Json/internal/index.js";
|
|
28
|
+
import type { Encoding } from "@tsonic/dotnet/System.Text/internal/index.js";
|
|
29
|
+
import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
30
|
+
import type { XmlSerializer } from "@tsonic/dotnet/System.Xml.Serialization/internal/index.js";
|
|
31
|
+
import type { XmlDictionaryReaderQuotas, XmlReader, XmlWriter, XmlWriterSettings } from "@tsonic/dotnet/System.Xml/internal/index.js";
|
|
32
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
33
|
+
import type { Boolean as ClrBoolean, Double, Enum, Exception, Func_3, IComparable, IConvertible, IFormattable, Int32, ISpanFormattable, Nullable_1, Object as ClrObject, String as ClrString, Type, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
34
|
+
import type { ILogger_1, ILoggerFactory } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
35
|
+
import type { IOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
36
|
+
import type { StringSegment } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives/internal/index.js";
|
|
37
37
|
|
|
38
38
|
export enum InputFormatterExceptionPolicy {
|
|
39
39
|
AllExceptions = 0,
|
|
@@ -42,14 +42,18 @@ export enum InputFormatterExceptionPolicy {
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
export interface IInputFormatter$instance {
|
|
45
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
46
|
+
|
|
45
47
|
CanRead(context: InputFormatterContext): boolean;
|
|
46
|
-
ReadAsync(context: InputFormatterContext):
|
|
48
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
47
49
|
}
|
|
48
50
|
|
|
49
51
|
|
|
50
52
|
export type IInputFormatter = IInputFormatter$instance;
|
|
51
53
|
|
|
52
54
|
export interface IInputFormatterExceptionPolicy$instance {
|
|
55
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatterExceptionPolicy: never;
|
|
56
|
+
|
|
53
57
|
readonly ExceptionPolicy: InputFormatterExceptionPolicy;
|
|
54
58
|
}
|
|
55
59
|
|
|
@@ -57,6 +61,8 @@ export interface IInputFormatterExceptionPolicy$instance {
|
|
|
57
61
|
export type IInputFormatterExceptionPolicy = IInputFormatterExceptionPolicy$instance;
|
|
58
62
|
|
|
59
63
|
export interface IOutputFormatter$instance {
|
|
64
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
65
|
+
|
|
60
66
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
61
67
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
62
68
|
}
|
|
@@ -65,6 +71,8 @@ export interface IOutputFormatter$instance {
|
|
|
65
71
|
export type IOutputFormatter = IOutputFormatter$instance;
|
|
66
72
|
|
|
67
73
|
export interface MediaType$instance {
|
|
74
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_MediaType: never;
|
|
75
|
+
|
|
68
76
|
readonly Charset: StringSegment;
|
|
69
77
|
readonly Encoding: Encoding | undefined;
|
|
70
78
|
readonly HasWildcard: boolean;
|
|
@@ -84,7 +92,7 @@ export interface MediaType$instance {
|
|
|
84
92
|
export const MediaType: {
|
|
85
93
|
new(mediaType: string): MediaType;
|
|
86
94
|
new(mediaType: StringSegment): MediaType;
|
|
87
|
-
new(mediaType: string, offset: int, length:
|
|
95
|
+
new(mediaType: string, offset: int, length: Nullable_1<System_Internal.Int32>): MediaType;
|
|
88
96
|
CreateMediaTypeSegmentWithQuality(mediaType: string, start: int): MediaTypeSegmentWithQuality;
|
|
89
97
|
GetEncoding(mediaType: StringSegment): Encoding | undefined;
|
|
90
98
|
GetEncoding(mediaType: string): Encoding | undefined;
|
|
@@ -96,6 +104,8 @@ export const MediaType: {
|
|
|
96
104
|
export type MediaType = MediaType$instance;
|
|
97
105
|
|
|
98
106
|
export interface MediaTypeSegmentWithQuality$instance {
|
|
107
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_MediaTypeSegmentWithQuality: never;
|
|
108
|
+
|
|
99
109
|
readonly MediaType: StringSegment;
|
|
100
110
|
readonly Quality: double;
|
|
101
111
|
ToString(): string;
|
|
@@ -109,7 +119,14 @@ export const MediaTypeSegmentWithQuality: {
|
|
|
109
119
|
|
|
110
120
|
export type MediaTypeSegmentWithQuality = MediaTypeSegmentWithQuality$instance;
|
|
111
121
|
|
|
112
|
-
export interface FormatFilter$instance extends IFilterMetadata {
|
|
122
|
+
export interface FormatFilter$instance extends IFilterMetadata, Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResultFilter$instance {
|
|
123
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_FormatFilter: never;
|
|
124
|
+
|
|
125
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IFilterMetadata: never;
|
|
126
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResourceFilter: never;
|
|
127
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Filters_IResultFilter: never;
|
|
128
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IFormatFilter: never;
|
|
129
|
+
|
|
113
130
|
GetFormat(context: ActionContext): string | undefined;
|
|
114
131
|
OnResourceExecuted(context: ResourceExecutedContext): void;
|
|
115
132
|
OnResourceExecuting(context: ResourceExecutingContext): void;
|
|
@@ -119,7 +136,7 @@ export interface FormatFilter$instance extends IFilterMetadata {
|
|
|
119
136
|
|
|
120
137
|
|
|
121
138
|
export const FormatFilter: {
|
|
122
|
-
new(options:
|
|
139
|
+
new(options: IOptions_1<MvcOptions>, loggerFactory: ILoggerFactory): FormatFilter;
|
|
123
140
|
};
|
|
124
141
|
|
|
125
142
|
|
|
@@ -128,12 +145,21 @@ export interface __FormatFilter$views {
|
|
|
128
145
|
As_IResultFilter(): Microsoft_AspNetCore_Mvc_Filters_Internal.IResultFilter$instance;
|
|
129
146
|
}
|
|
130
147
|
|
|
131
|
-
export interface FormatFilter$instance extends Microsoft_AspNetCore_Mvc_Filters_Internal.IResourceFilter$instance, Microsoft_AspNetCore_Mvc_Filters_Internal.IResultFilter$instance {}
|
|
132
|
-
|
|
133
148
|
export type FormatFilter = FormatFilter$instance & __FormatFilter$views;
|
|
134
149
|
|
|
135
150
|
|
|
136
|
-
export interface FormatterCollection_1$instance<TFormatter> extends
|
|
151
|
+
export interface FormatterCollection_1$instance<TFormatter> extends Collection_1<TFormatter> {
|
|
152
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_FormatterCollection_1: never;
|
|
153
|
+
|
|
154
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
155
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
156
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
157
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
158
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
159
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
160
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
161
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
162
|
+
|
|
137
163
|
RemoveType<T extends TFormatter>(): void;
|
|
138
164
|
RemoveType(formatterType: Type): void;
|
|
139
165
|
}
|
|
@@ -141,13 +167,15 @@ export interface FormatterCollection_1$instance<TFormatter> extends Collection<T
|
|
|
141
167
|
|
|
142
168
|
export const FormatterCollection_1: {
|
|
143
169
|
new<TFormatter>(): FormatterCollection_1<TFormatter>;
|
|
144
|
-
new<TFormatter>(list:
|
|
170
|
+
new<TFormatter>(list: IList_1<TFormatter>): FormatterCollection_1<TFormatter>;
|
|
145
171
|
};
|
|
146
172
|
|
|
147
173
|
|
|
148
174
|
export type FormatterCollection_1<TFormatter> = FormatterCollection_1$instance<TFormatter>;
|
|
149
175
|
|
|
150
176
|
export interface FormatterMappings$instance {
|
|
177
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_FormatterMappings: never;
|
|
178
|
+
|
|
151
179
|
ClearMediaTypeMappingForFormat(format: string): boolean;
|
|
152
180
|
GetMediaTypeMappingForFormat(format: string): string | undefined;
|
|
153
181
|
SetMediaTypeMappingForFormat(format: string, contentType: string): void;
|
|
@@ -162,7 +190,11 @@ export const FormatterMappings: {
|
|
|
162
190
|
|
|
163
191
|
export type FormatterMappings = FormatterMappings$instance;
|
|
164
192
|
|
|
165
|
-
export interface HttpNoContentOutputFormatter$instance {
|
|
193
|
+
export interface HttpNoContentOutputFormatter$instance extends IOutputFormatter$instance {
|
|
194
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_HttpNoContentOutputFormatter: never;
|
|
195
|
+
|
|
196
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
197
|
+
|
|
166
198
|
TreatNullValueAsNoContent: boolean;
|
|
167
199
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
168
200
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
@@ -178,19 +210,22 @@ export interface __HttpNoContentOutputFormatter$views {
|
|
|
178
210
|
As_IOutputFormatter(): IOutputFormatter$instance;
|
|
179
211
|
}
|
|
180
212
|
|
|
181
|
-
export interface HttpNoContentOutputFormatter$instance extends IOutputFormatter$instance {}
|
|
182
|
-
|
|
183
213
|
export type HttpNoContentOutputFormatter = HttpNoContentOutputFormatter$instance & __HttpNoContentOutputFormatter$views;
|
|
184
214
|
|
|
185
215
|
|
|
186
|
-
export interface InputFormatter$instance {
|
|
216
|
+
export interface InputFormatter$instance extends Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance, IInputFormatter$instance {
|
|
217
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_InputFormatter: never;
|
|
218
|
+
|
|
219
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
220
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
221
|
+
|
|
187
222
|
readonly SupportedMediaTypes: MediaTypeCollection;
|
|
188
223
|
CanRead(context: InputFormatterContext): boolean;
|
|
189
224
|
CanReadType(type: Type): boolean;
|
|
190
225
|
GetDefaultValueForType(modelType: Type): unknown | undefined;
|
|
191
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
192
|
-
ReadAsync(context: InputFormatterContext):
|
|
193
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
226
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
227
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
228
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
194
229
|
}
|
|
195
230
|
|
|
196
231
|
|
|
@@ -203,31 +238,35 @@ export interface __InputFormatter$views {
|
|
|
203
238
|
As_IApiRequestFormatMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance;
|
|
204
239
|
}
|
|
205
240
|
|
|
206
|
-
export interface InputFormatter$instance extends Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance, IInputFormatter$instance {}
|
|
207
|
-
|
|
208
241
|
export type InputFormatter = InputFormatter$instance & __InputFormatter$views;
|
|
209
242
|
|
|
210
243
|
|
|
211
244
|
export interface InputFormatterContext$instance {
|
|
245
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_InputFormatterContext: never;
|
|
246
|
+
|
|
212
247
|
readonly HttpContext: HttpContext;
|
|
213
248
|
readonly Metadata: ModelMetadata;
|
|
214
249
|
readonly ModelName: string;
|
|
215
250
|
readonly ModelState: ModelStateDictionary;
|
|
216
251
|
readonly ModelType: Type;
|
|
217
|
-
readonly ReaderFactory:
|
|
252
|
+
readonly ReaderFactory: Func_3<Stream, Encoding, TextReader>;
|
|
218
253
|
readonly TreatEmptyInputAsDefaultValue: boolean;
|
|
219
254
|
}
|
|
220
255
|
|
|
221
256
|
|
|
222
257
|
export const InputFormatterContext: {
|
|
223
|
-
new(httpContext: HttpContext, modelName: string, modelState: ModelStateDictionary, metadata: ModelMetadata, readerFactory:
|
|
224
|
-
new(httpContext: HttpContext, modelName: string, modelState: ModelStateDictionary, metadata: ModelMetadata, readerFactory:
|
|
258
|
+
new(httpContext: HttpContext, modelName: string, modelState: ModelStateDictionary, metadata: ModelMetadata, readerFactory: Func_3<Stream, Encoding, TextReader>): InputFormatterContext;
|
|
259
|
+
new(httpContext: HttpContext, modelName: string, modelState: ModelStateDictionary, metadata: ModelMetadata, readerFactory: Func_3<Stream, Encoding, TextReader>, treatEmptyInputAsDefaultValue: boolean): InputFormatterContext;
|
|
225
260
|
};
|
|
226
261
|
|
|
227
262
|
|
|
228
263
|
export type InputFormatterContext = InputFormatterContext$instance;
|
|
229
264
|
|
|
230
265
|
export interface InputFormatterException$instance extends Exception {
|
|
266
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_InputFormatterException: never;
|
|
267
|
+
|
|
268
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
269
|
+
|
|
231
270
|
}
|
|
232
271
|
|
|
233
272
|
|
|
@@ -241,6 +280,8 @@ export const InputFormatterException: {
|
|
|
241
280
|
export type InputFormatterException = InputFormatterException$instance;
|
|
242
281
|
|
|
243
282
|
export interface InputFormatterResult$instance {
|
|
283
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_InputFormatterResult: never;
|
|
284
|
+
|
|
244
285
|
readonly HasError: boolean;
|
|
245
286
|
readonly IsModelSet: boolean;
|
|
246
287
|
readonly Model: unknown | undefined;
|
|
@@ -249,17 +290,28 @@ export interface InputFormatterResult$instance {
|
|
|
249
290
|
|
|
250
291
|
export const InputFormatterResult: {
|
|
251
292
|
Failure(): InputFormatterResult;
|
|
252
|
-
FailureAsync():
|
|
293
|
+
FailureAsync(): Task_1<InputFormatterResult>;
|
|
253
294
|
NoValue(): InputFormatterResult;
|
|
254
|
-
NoValueAsync():
|
|
295
|
+
NoValueAsync(): Task_1<InputFormatterResult>;
|
|
255
296
|
Success(model: unknown): InputFormatterResult;
|
|
256
|
-
SuccessAsync(model: unknown):
|
|
297
|
+
SuccessAsync(model: unknown): Task_1<InputFormatterResult>;
|
|
257
298
|
};
|
|
258
299
|
|
|
259
300
|
|
|
260
301
|
export type InputFormatterResult = InputFormatterResult$instance;
|
|
261
302
|
|
|
262
|
-
export interface MediaTypeCollection$instance extends
|
|
303
|
+
export interface MediaTypeCollection$instance extends Collection_1<System_Internal.String> {
|
|
304
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_MediaTypeCollection: never;
|
|
305
|
+
|
|
306
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
307
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
308
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
309
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyCollection_1: never;
|
|
310
|
+
readonly __tsonic_iface_System_Collections_Generic_IReadOnlyList_1: never;
|
|
311
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
312
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
313
|
+
readonly __tsonic_iface_System_Collections_IList: never;
|
|
314
|
+
|
|
263
315
|
Add(item: MediaTypeHeaderValue): void;
|
|
264
316
|
Insert(index: int, item: MediaTypeHeaderValue): void;
|
|
265
317
|
Remove(item: MediaTypeHeaderValue): boolean;
|
|
@@ -273,11 +325,16 @@ export const MediaTypeCollection: {
|
|
|
273
325
|
|
|
274
326
|
export type MediaTypeCollection = MediaTypeCollection$instance;
|
|
275
327
|
|
|
276
|
-
export interface OutputFormatter$instance {
|
|
328
|
+
export interface OutputFormatter$instance extends Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiResponseTypeMetadataProvider$instance, IOutputFormatter$instance {
|
|
329
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_OutputFormatter: never;
|
|
330
|
+
|
|
331
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
332
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
333
|
+
|
|
277
334
|
readonly SupportedMediaTypes: MediaTypeCollection;
|
|
278
335
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
279
336
|
CanWriteType(type: Type): boolean;
|
|
280
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
337
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
281
338
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
282
339
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext): Task;
|
|
283
340
|
WriteResponseHeaders(context: OutputFormatterWriteContext): void;
|
|
@@ -293,12 +350,12 @@ export interface __OutputFormatter$views {
|
|
|
293
350
|
As_IApiResponseTypeMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiResponseTypeMetadataProvider$instance;
|
|
294
351
|
}
|
|
295
352
|
|
|
296
|
-
export interface OutputFormatter$instance extends Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiResponseTypeMetadataProvider$instance, IOutputFormatter$instance {}
|
|
297
|
-
|
|
298
353
|
export type OutputFormatter = OutputFormatter$instance & __OutputFormatter$views;
|
|
299
354
|
|
|
300
355
|
|
|
301
356
|
export interface OutputFormatterCanWriteContext$instance {
|
|
357
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_OutputFormatterCanWriteContext: never;
|
|
358
|
+
|
|
302
359
|
ContentType: StringSegment;
|
|
303
360
|
ContentTypeIsServerDefined: boolean;
|
|
304
361
|
HttpContext: HttpContext;
|
|
@@ -316,18 +373,24 @@ export const OutputFormatterCanWriteContext: (abstract new(httpContext: HttpCont
|
|
|
316
373
|
export type OutputFormatterCanWriteContext = OutputFormatterCanWriteContext$instance;
|
|
317
374
|
|
|
318
375
|
export interface OutputFormatterWriteContext$instance extends OutputFormatterCanWriteContext {
|
|
319
|
-
|
|
376
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_OutputFormatterWriteContext: never;
|
|
377
|
+
|
|
378
|
+
WriterFactory: Func_3<Stream, Encoding, TextWriter>;
|
|
320
379
|
}
|
|
321
380
|
|
|
322
381
|
|
|
323
382
|
export const OutputFormatterWriteContext: {
|
|
324
|
-
new(httpContext: HttpContext, writerFactory:
|
|
383
|
+
new(httpContext: HttpContext, writerFactory: Func_3<Stream, Encoding, TextWriter>, objectType: Type, object: unknown): OutputFormatterWriteContext;
|
|
325
384
|
};
|
|
326
385
|
|
|
327
386
|
|
|
328
387
|
export type OutputFormatterWriteContext = OutputFormatterWriteContext$instance;
|
|
329
388
|
|
|
330
|
-
export interface StreamOutputFormatter$instance {
|
|
389
|
+
export interface StreamOutputFormatter$instance extends IOutputFormatter$instance {
|
|
390
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_StreamOutputFormatter: never;
|
|
391
|
+
|
|
392
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
393
|
+
|
|
331
394
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
332
395
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
333
396
|
}
|
|
@@ -342,14 +405,17 @@ export interface __StreamOutputFormatter$views {
|
|
|
342
405
|
As_IOutputFormatter(): IOutputFormatter$instance;
|
|
343
406
|
}
|
|
344
407
|
|
|
345
|
-
export interface StreamOutputFormatter$instance extends IOutputFormatter$instance {}
|
|
346
|
-
|
|
347
408
|
export type StreamOutputFormatter = StreamOutputFormatter$instance & __StreamOutputFormatter$views;
|
|
348
409
|
|
|
349
410
|
|
|
350
411
|
export interface StringOutputFormatter$instance extends TextOutputFormatter$instance {
|
|
412
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_StringOutputFormatter: never;
|
|
413
|
+
|
|
414
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
415
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
416
|
+
|
|
351
417
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
352
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
418
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
353
419
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
354
420
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext, encoding: Encoding): Task;
|
|
355
421
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext): Task;
|
|
@@ -369,18 +435,24 @@ export interface __StringOutputFormatter$views {
|
|
|
369
435
|
export type StringOutputFormatter = StringOutputFormatter$instance & __StringOutputFormatter$views;
|
|
370
436
|
|
|
371
437
|
|
|
372
|
-
export interface SystemTextJsonInputFormatter$instance extends TextInputFormatter$instance {
|
|
438
|
+
export interface SystemTextJsonInputFormatter$instance extends TextInputFormatter$instance, IInputFormatterExceptionPolicy$instance {
|
|
439
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_SystemTextJsonInputFormatter: never;
|
|
440
|
+
|
|
441
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
442
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
443
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatterExceptionPolicy: never;
|
|
444
|
+
|
|
373
445
|
readonly SerializerOptions: JsonSerializerOptions;
|
|
374
446
|
CanRead(context: InputFormatterContext): boolean;
|
|
375
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
376
|
-
ReadAsync(context: InputFormatterContext):
|
|
377
|
-
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding):
|
|
378
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
447
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
448
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
449
|
+
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding): Task_1<InputFormatterResult>;
|
|
450
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
379
451
|
}
|
|
380
452
|
|
|
381
453
|
|
|
382
454
|
export const SystemTextJsonInputFormatter: {
|
|
383
|
-
new(options: JsonOptions, logger:
|
|
455
|
+
new(options: JsonOptions, logger: ILogger_1<SystemTextJsonInputFormatter>): SystemTextJsonInputFormatter;
|
|
384
456
|
};
|
|
385
457
|
|
|
386
458
|
|
|
@@ -390,15 +462,18 @@ export interface __SystemTextJsonInputFormatter$views {
|
|
|
390
462
|
As_IApiRequestFormatMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance;
|
|
391
463
|
}
|
|
392
464
|
|
|
393
|
-
export interface SystemTextJsonInputFormatter$instance extends IInputFormatterExceptionPolicy$instance {}
|
|
394
|
-
|
|
395
465
|
export type SystemTextJsonInputFormatter = SystemTextJsonInputFormatter$instance & __SystemTextJsonInputFormatter$views;
|
|
396
466
|
|
|
397
467
|
|
|
398
468
|
export interface SystemTextJsonOutputFormatter$instance extends TextOutputFormatter$instance {
|
|
469
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_SystemTextJsonOutputFormatter: never;
|
|
470
|
+
|
|
471
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
472
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
473
|
+
|
|
399
474
|
readonly SerializerOptions: JsonSerializerOptions;
|
|
400
475
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
401
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
476
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
402
477
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
403
478
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext, selectedEncoding: Encoding): Task;
|
|
404
479
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext): Task;
|
|
@@ -419,12 +494,17 @@ export type SystemTextJsonOutputFormatter = SystemTextJsonOutputFormatter$instan
|
|
|
419
494
|
|
|
420
495
|
|
|
421
496
|
export interface TextInputFormatter$instance extends InputFormatter$instance {
|
|
422
|
-
readonly
|
|
497
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_TextInputFormatter: never;
|
|
498
|
+
|
|
499
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
500
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
501
|
+
|
|
502
|
+
readonly SupportedEncodings: IList_1<Encoding>;
|
|
423
503
|
CanRead(context: InputFormatterContext): boolean;
|
|
424
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
425
|
-
ReadAsync(context: InputFormatterContext):
|
|
426
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
427
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
504
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
505
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
506
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
507
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
428
508
|
}
|
|
429
509
|
|
|
430
510
|
|
|
@@ -443,9 +523,14 @@ export type TextInputFormatter = TextInputFormatter$instance & __TextInputFormat
|
|
|
443
523
|
|
|
444
524
|
|
|
445
525
|
export interface TextOutputFormatter$instance extends OutputFormatter$instance {
|
|
446
|
-
readonly
|
|
526
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_TextOutputFormatter: never;
|
|
527
|
+
|
|
528
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
529
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
530
|
+
|
|
531
|
+
readonly SupportedEncodings: IList_1<Encoding>;
|
|
447
532
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
448
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
533
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
449
534
|
SelectCharacterEncoding(context: OutputFormatterWriteContext): Encoding;
|
|
450
535
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
451
536
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext): Task;
|
|
@@ -464,11 +549,17 @@ export interface __TextOutputFormatter$views {
|
|
|
464
549
|
export type TextOutputFormatter = TextOutputFormatter$instance & __TextOutputFormatter$views;
|
|
465
550
|
|
|
466
551
|
|
|
467
|
-
export interface XmlDataContractSerializerInputFormatter$instance extends TextInputFormatter$instance {
|
|
552
|
+
export interface XmlDataContractSerializerInputFormatter$instance extends TextInputFormatter$instance, IInputFormatterExceptionPolicy$instance {
|
|
553
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_XmlDataContractSerializerInputFormatter: never;
|
|
554
|
+
|
|
555
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
556
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
557
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatterExceptionPolicy: never;
|
|
558
|
+
|
|
468
559
|
readonly ExceptionPolicy: InputFormatterExceptionPolicy;
|
|
469
560
|
MaxDepth: int;
|
|
470
561
|
SerializerSettings: DataContractSerializerSettings;
|
|
471
|
-
readonly WrapperProviderFactories:
|
|
562
|
+
readonly WrapperProviderFactories: IList_1<IWrapperProviderFactory>;
|
|
472
563
|
readonly XmlDictionaryReaderQuotas: XmlDictionaryReaderQuotas;
|
|
473
564
|
CanRead(context: InputFormatterContext): boolean;
|
|
474
565
|
CanReadType(type: Type): boolean;
|
|
@@ -476,10 +567,10 @@ export interface XmlDataContractSerializerInputFormatter$instance extends TextIn
|
|
|
476
567
|
CreateXmlReader(readStream: Stream, encoding: Encoding): XmlReader;
|
|
477
568
|
GetCachedSerializer(type: Type): DataContractSerializer;
|
|
478
569
|
GetSerializableType(declaredType: Type): Type;
|
|
479
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
480
|
-
ReadAsync(context: InputFormatterContext):
|
|
481
|
-
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding):
|
|
482
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
570
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
571
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
572
|
+
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding): Task_1<InputFormatterResult>;
|
|
573
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
483
574
|
}
|
|
484
575
|
|
|
485
576
|
|
|
@@ -494,14 +585,17 @@ export interface __XmlDataContractSerializerInputFormatter$views {
|
|
|
494
585
|
As_IApiRequestFormatMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance;
|
|
495
586
|
}
|
|
496
587
|
|
|
497
|
-
export interface XmlDataContractSerializerInputFormatter$instance extends IInputFormatterExceptionPolicy$instance {}
|
|
498
|
-
|
|
499
588
|
export type XmlDataContractSerializerInputFormatter = XmlDataContractSerializerInputFormatter$instance & __XmlDataContractSerializerInputFormatter$views;
|
|
500
589
|
|
|
501
590
|
|
|
502
591
|
export interface XmlDataContractSerializerOutputFormatter$instance extends TextOutputFormatter$instance {
|
|
592
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_XmlDataContractSerializerOutputFormatter: never;
|
|
593
|
+
|
|
594
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
595
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
596
|
+
|
|
503
597
|
SerializerSettings: DataContractSerializerSettings;
|
|
504
|
-
readonly WrapperProviderFactories:
|
|
598
|
+
readonly WrapperProviderFactories: IList_1<IWrapperProviderFactory>;
|
|
505
599
|
readonly WriterSettings: XmlWriterSettings;
|
|
506
600
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
507
601
|
CanWriteType(type: Type): boolean;
|
|
@@ -510,7 +604,7 @@ export interface XmlDataContractSerializerOutputFormatter$instance extends TextO
|
|
|
510
604
|
CreateXmlWriter(context: OutputFormatterWriteContext, writer: TextWriter, xmlWriterSettings: XmlWriterSettings): XmlWriter;
|
|
511
605
|
GetCachedSerializer(type: Type): DataContractSerializer;
|
|
512
606
|
GetSerializableType(type: Type): Type;
|
|
513
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
607
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
514
608
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
515
609
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext, selectedEncoding: Encoding): Task;
|
|
516
610
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext): Task;
|
|
@@ -533,10 +627,16 @@ export interface __XmlDataContractSerializerOutputFormatter$views {
|
|
|
533
627
|
export type XmlDataContractSerializerOutputFormatter = XmlDataContractSerializerOutputFormatter$instance & __XmlDataContractSerializerOutputFormatter$views;
|
|
534
628
|
|
|
535
629
|
|
|
536
|
-
export interface XmlSerializerInputFormatter$instance extends TextInputFormatter$instance {
|
|
630
|
+
export interface XmlSerializerInputFormatter$instance extends TextInputFormatter$instance, IInputFormatterExceptionPolicy$instance {
|
|
631
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_XmlSerializerInputFormatter: never;
|
|
632
|
+
|
|
633
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
634
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatter: never;
|
|
635
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IInputFormatterExceptionPolicy: never;
|
|
636
|
+
|
|
537
637
|
readonly ExceptionPolicy: InputFormatterExceptionPolicy;
|
|
538
638
|
MaxDepth: int;
|
|
539
|
-
readonly WrapperProviderFactories:
|
|
639
|
+
readonly WrapperProviderFactories: IList_1<IWrapperProviderFactory>;
|
|
540
640
|
readonly XmlDictionaryReaderQuotas: XmlDictionaryReaderQuotas;
|
|
541
641
|
CanRead(context: InputFormatterContext): boolean;
|
|
542
642
|
CanReadType(type: Type): boolean;
|
|
@@ -545,10 +645,10 @@ export interface XmlSerializerInputFormatter$instance extends TextInputFormatter
|
|
|
545
645
|
CreateXmlReader(readStream: Stream, encoding: Encoding): XmlReader;
|
|
546
646
|
GetCachedSerializer(type: Type): XmlSerializer;
|
|
547
647
|
GetSerializableType(declaredType: Type): Type;
|
|
548
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
549
|
-
ReadAsync(context: InputFormatterContext):
|
|
550
|
-
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding):
|
|
551
|
-
ReadRequestBodyAsync(context: InputFormatterContext):
|
|
648
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
649
|
+
ReadAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
650
|
+
ReadRequestBodyAsync(context: InputFormatterContext, encoding: Encoding): Task_1<InputFormatterResult>;
|
|
651
|
+
ReadRequestBodyAsync(context: InputFormatterContext): Task_1<InputFormatterResult>;
|
|
552
652
|
}
|
|
553
653
|
|
|
554
654
|
|
|
@@ -563,13 +663,16 @@ export interface __XmlSerializerInputFormatter$views {
|
|
|
563
663
|
As_IApiRequestFormatMetadataProvider(): Microsoft_AspNetCore_Mvc_ApiExplorer_Internal.IApiRequestFormatMetadataProvider$instance;
|
|
564
664
|
}
|
|
565
665
|
|
|
566
|
-
export interface XmlSerializerInputFormatter$instance extends IInputFormatterExceptionPolicy$instance {}
|
|
567
|
-
|
|
568
666
|
export type XmlSerializerInputFormatter = XmlSerializerInputFormatter$instance & __XmlSerializerInputFormatter$views;
|
|
569
667
|
|
|
570
668
|
|
|
571
669
|
export interface XmlSerializerOutputFormatter$instance extends TextOutputFormatter$instance {
|
|
572
|
-
readonly
|
|
670
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Formatters_XmlSerializerOutputFormatter: never;
|
|
671
|
+
|
|
672
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
673
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Formatters_IOutputFormatter: never;
|
|
674
|
+
|
|
675
|
+
readonly WrapperProviderFactories: IList_1<IWrapperProviderFactory>;
|
|
573
676
|
readonly WriterSettings: XmlWriterSettings;
|
|
574
677
|
CanWriteResult(context: OutputFormatterCanWriteContext): boolean;
|
|
575
678
|
CanWriteType(type: Type): boolean;
|
|
@@ -578,7 +681,7 @@ export interface XmlSerializerOutputFormatter$instance extends TextOutputFormatt
|
|
|
578
681
|
CreateXmlWriter(context: OutputFormatterWriteContext, writer: TextWriter, xmlWriterSettings: XmlWriterSettings): XmlWriter;
|
|
579
682
|
GetCachedSerializer(type: Type): XmlSerializer;
|
|
580
683
|
GetSerializableType(type: Type): Type;
|
|
581
|
-
GetSupportedContentTypes(contentType: string, objectType: Type):
|
|
684
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
582
685
|
Serialize(xmlSerializer: XmlSerializer, xmlWriter: XmlWriter, value: unknown): void;
|
|
583
686
|
WriteAsync(context: OutputFormatterWriteContext): Task;
|
|
584
687
|
WriteResponseBodyAsync(context: OutputFormatterWriteContext, selectedEncoding: Encoding): Task;
|