@tsonic/dotnet 10.0.4 → 10.0.9
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.CSharp.RuntimeBinder/internal/index.d.ts +10 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +42 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +60 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +12 -0
- package/Microsoft.Win32/internal/index.d.ts +5 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +68 -0
- package/System/internal/index.d.ts +1438 -161
- package/System.Buffers/internal/index.d.ts +42 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +7 -0
- package/System.Collections/internal/index.d.ts +109 -27
- package/System.Collections.Concurrent/internal/index.d.ts +52 -3
- package/System.Collections.Frozen/internal/index.d.ts +37 -0
- package/System.Collections.Generic/internal/index.d.ts +422 -33
- package/System.Collections.Immutable/internal/index.d.ts +193 -2
- package/System.Collections.ObjectModel/internal/index.d.ts +98 -6
- package/System.Collections.Specialized/internal/index.d.ts +72 -10
- package/System.ComponentModel/internal/index.d.ts +392 -23
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +79 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +120 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +40 -0
- package/System.Data/internal/index.d.ts +273 -20
- package/System.Data.Common/internal/index.d.ts +146 -32
- package/System.Data.SqlTypes/internal/index.d.ts +147 -48
- package/System.Diagnostics/internal/index.d.ts +213 -13
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +28 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +37 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +30 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +56 -6
- package/System.Drawing/internal/index.d.ts +38 -0
- package/System.Dynamic/internal/index.d.ts +50 -5
- package/System.Formats.Asn1/internal/index.d.ts +19 -3
- package/System.Formats.Tar/internal/index.d.ts +26 -6
- package/System.Globalization/internal/index.d.ts +116 -20
- package/System.IO/internal/index.d.ts +141 -18
- package/System.IO.Compression/internal/index.d.ts +46 -9
- package/System.IO.Enumeration/internal/index.d.ts +13 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +18 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +13 -0
- package/System.IO.Pipelines/internal/index.d.ts +22 -2
- package/System.IO.Pipes/internal/index.d.ts +31 -0
- package/System.Linq/internal/index.d.ts +55 -7
- package/System.Linq.Expressions/internal/index.d.ts +103 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +202 -21
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +103 -0
- package/System.Net.Http.Headers/internal/index.d.ts +151 -60
- package/System.Net.Http.Json/internal/index.d.ts +4 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +88 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +89 -0
- package/System.Net.Quic/internal/index.d.ts +31 -6
- package/System.Net.Security/internal/index.d.ts +40 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +59 -6
- package/System.Net.WebSockets/internal/index.d.ts +32 -3
- package/System.Numerics/internal/index.d.ts +173 -7
- package/System.Reflection/internal/index.d.ts +202 -30
- package/System.Reflection.Emit/internal/index.d.ts +80 -9
- package/System.Reflection.Metadata/internal/index.d.ts +650 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +80 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +39 -3
- package/System.Resources/internal/index.d.ts +35 -1
- package/System.Runtime/internal/index.d.ts +18 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +330 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +268 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +82 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +59 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +82 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +56 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +9 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +111 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +5 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +8 -0
- package/System.Runtime.Versioning/internal/index.d.ts +28 -0
- package/System.Security/internal/index.d.ts +46 -6
- package/System.Security.AccessControl/internal/index.d.ts +116 -2
- package/System.Security.Authentication/internal/index.d.ts +8 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +16 -5
- package/System.Security.Claims/internal/index.d.ts +12 -6
- package/System.Security.Cryptography/internal/index.d.ts +568 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +114 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +7 -0
- package/System.Security.Principal/internal/index.d.ts +42 -5
- package/System.Text/internal/index.d.ts +108 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +53 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +21 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +64 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +27 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +75 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +186 -24
- package/System.Threading.Channels/internal/index.d.ts +20 -0
- package/System.Threading.Tasks/internal/index.d.ts +48 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +99 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +6 -0
- package/System.Timers/internal/index.d.ts +11 -3
- package/System.Transactions/internal/index.d.ts +76 -15
- package/System.Web/internal/index.d.ts +4 -0
- package/System.Windows.Input/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +245 -20
- package/System.Xml.Linq/internal/index.d.ts +73 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +171 -0
- package/System.Xml.Serialization/internal/index.d.ts +141 -0
- package/System.Xml.XPath/internal/index.d.ts +27 -8
- package/System.Xml.Xsl/internal/index.d.ts +27 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +112 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -47,6 +47,8 @@ export type SerializationEventHandler = (context: StreamingContext) => void;
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
export interface IDeserializationCallback$instance {
|
|
50
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IDeserializationCallback: never;
|
|
51
|
+
|
|
50
52
|
OnDeserialization(sender: unknown): void;
|
|
51
53
|
}
|
|
52
54
|
|
|
@@ -54,6 +56,8 @@ export interface IDeserializationCallback$instance {
|
|
|
54
56
|
export type IDeserializationCallback = IDeserializationCallback$instance;
|
|
55
57
|
|
|
56
58
|
export interface IExtensibleDataObject$instance {
|
|
59
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IExtensibleDataObject: never;
|
|
60
|
+
|
|
57
61
|
get ExtensionData(): ExtensionDataObject | undefined;
|
|
58
62
|
set ExtensionData(value: ExtensionDataObject | undefined);
|
|
59
63
|
}
|
|
@@ -62,6 +66,8 @@ export interface IExtensibleDataObject$instance {
|
|
|
62
66
|
export type IExtensibleDataObject = IExtensibleDataObject$instance;
|
|
63
67
|
|
|
64
68
|
export interface IFormatter$instance {
|
|
69
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IFormatter: never;
|
|
70
|
+
|
|
65
71
|
get SurrogateSelector(): ISurrogateSelector | undefined;
|
|
66
72
|
set SurrogateSelector(value: ISurrogateSelector | undefined);
|
|
67
73
|
get Binder(): SerializationBinder | undefined;
|
|
@@ -75,6 +81,8 @@ export interface IFormatter$instance {
|
|
|
75
81
|
export type IFormatter = IFormatter$instance;
|
|
76
82
|
|
|
77
83
|
export interface IFormatterConverter$instance {
|
|
84
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IFormatterConverter: never;
|
|
85
|
+
|
|
78
86
|
Convert(value: unknown, type: Type): unknown;
|
|
79
87
|
Convert(value: unknown, typeCode: TypeCode): unknown;
|
|
80
88
|
ToBoolean(value: unknown): boolean;
|
|
@@ -98,6 +106,8 @@ export interface IFormatterConverter$instance {
|
|
|
98
106
|
export type IFormatterConverter = IFormatterConverter$instance;
|
|
99
107
|
|
|
100
108
|
export interface IObjectReference$instance {
|
|
109
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IObjectReference: never;
|
|
110
|
+
|
|
101
111
|
GetRealObject(context: StreamingContext): unknown;
|
|
102
112
|
}
|
|
103
113
|
|
|
@@ -105,6 +115,8 @@ export interface IObjectReference$instance {
|
|
|
105
115
|
export type IObjectReference = IObjectReference$instance;
|
|
106
116
|
|
|
107
117
|
export interface ISafeSerializationData$instance {
|
|
118
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISafeSerializationData: never;
|
|
119
|
+
|
|
108
120
|
CompleteDeserialization(deserialized: unknown): void;
|
|
109
121
|
}
|
|
110
122
|
|
|
@@ -112,6 +124,8 @@ export interface ISafeSerializationData$instance {
|
|
|
112
124
|
export type ISafeSerializationData = ISafeSerializationData$instance;
|
|
113
125
|
|
|
114
126
|
export interface ISerializable$instance {
|
|
127
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
128
|
+
|
|
115
129
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
116
130
|
}
|
|
117
131
|
|
|
@@ -119,6 +133,8 @@ export interface ISerializable$instance {
|
|
|
119
133
|
export type ISerializable = ISerializable$instance;
|
|
120
134
|
|
|
121
135
|
export interface ISerializationSurrogate$instance {
|
|
136
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializationSurrogate: never;
|
|
137
|
+
|
|
122
138
|
GetObjectData(obj: unknown, info: SerializationInfo, context: StreamingContext): void;
|
|
123
139
|
SetObjectData(obj: unknown, info: SerializationInfo, context: StreamingContext, selector: ISurrogateSelector): unknown;
|
|
124
140
|
}
|
|
@@ -127,6 +143,8 @@ export interface ISerializationSurrogate$instance {
|
|
|
127
143
|
export type ISerializationSurrogate = ISerializationSurrogate$instance;
|
|
128
144
|
|
|
129
145
|
export interface ISerializationSurrogateProvider$instance {
|
|
146
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializationSurrogateProvider: never;
|
|
147
|
+
|
|
130
148
|
GetObjectToSerialize(obj: unknown, targetType: Type): unknown;
|
|
131
149
|
GetSurrogateType(type: Type): Type;
|
|
132
150
|
}
|
|
@@ -135,6 +153,8 @@ export interface ISerializationSurrogateProvider$instance {
|
|
|
135
153
|
export type ISerializationSurrogateProvider = ISerializationSurrogateProvider$instance;
|
|
136
154
|
|
|
137
155
|
export interface ISerializationSurrogateProvider2$instance extends ISerializationSurrogateProvider {
|
|
156
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializationSurrogateProvider2: never;
|
|
157
|
+
|
|
138
158
|
GetCustomDataToExport(memberInfo: MemberInfo, dataContractType: Type): unknown | undefined;
|
|
139
159
|
GetCustomDataToExport(runtimeType: Type, dataContractType: Type): unknown | undefined;
|
|
140
160
|
GetKnownCustomDataTypes(customDataTypes: Collection_1<Type>): void;
|
|
@@ -149,6 +169,8 @@ export interface ISerializationSurrogateProvider2$instance extends ISerializatio
|
|
|
149
169
|
export type ISerializationSurrogateProvider2 = ISerializationSurrogateProvider2$instance;
|
|
150
170
|
|
|
151
171
|
export interface ISurrogateSelector$instance {
|
|
172
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISurrogateSelector: never;
|
|
173
|
+
|
|
152
174
|
ChainSelector(selector: ISurrogateSelector): void;
|
|
153
175
|
GetNextSelector(): ISurrogateSelector | undefined;
|
|
154
176
|
GetSurrogate(type: Type, context: StreamingContext, selector: ISurrogateSelector): ISerializationSurrogate | undefined;
|
|
@@ -157,7 +179,11 @@ export interface ISurrogateSelector$instance {
|
|
|
157
179
|
|
|
158
180
|
export type ISurrogateSelector = ISurrogateSelector$instance;
|
|
159
181
|
|
|
160
|
-
export interface DeserializationToken$instance {
|
|
182
|
+
export interface DeserializationToken$instance extends System_Internal.IDisposable$instance {
|
|
183
|
+
readonly __tsonic_type_System_Runtime_Serialization_DeserializationToken: never;
|
|
184
|
+
|
|
185
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
186
|
+
|
|
161
187
|
Dispose(): void;
|
|
162
188
|
}
|
|
163
189
|
|
|
@@ -171,12 +197,12 @@ export interface __DeserializationToken$views {
|
|
|
171
197
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
172
198
|
}
|
|
173
199
|
|
|
174
|
-
export interface DeserializationToken$instance extends System_Internal.IDisposable$instance {}
|
|
175
|
-
|
|
176
200
|
export type DeserializationToken = DeserializationToken$instance & __DeserializationToken$views;
|
|
177
201
|
|
|
178
202
|
|
|
179
203
|
export interface SerializationEntry$instance {
|
|
204
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationEntry: never;
|
|
205
|
+
|
|
180
206
|
readonly Name: string;
|
|
181
207
|
readonly ObjectType: Type;
|
|
182
208
|
readonly Value: unknown | undefined;
|
|
@@ -191,6 +217,8 @@ export const SerializationEntry: {
|
|
|
191
217
|
export type SerializationEntry = SerializationEntry$instance;
|
|
192
218
|
|
|
193
219
|
export interface StreamingContext$instance {
|
|
220
|
+
readonly __tsonic_type_System_Runtime_Serialization_StreamingContext: never;
|
|
221
|
+
|
|
194
222
|
readonly Context: unknown | undefined;
|
|
195
223
|
readonly State: StreamingContextStates;
|
|
196
224
|
Equals(obj: unknown): boolean;
|
|
@@ -207,6 +235,8 @@ export const StreamingContext: {
|
|
|
207
235
|
export type StreamingContext = StreamingContext$instance;
|
|
208
236
|
|
|
209
237
|
export interface CollectionDataContractAttribute$instance extends Attribute {
|
|
238
|
+
readonly __tsonic_type_System_Runtime_Serialization_CollectionDataContractAttribute: never;
|
|
239
|
+
|
|
210
240
|
readonly IsItemNameSetExplicitly: boolean;
|
|
211
241
|
readonly IsKeyNameSetExplicitly: boolean;
|
|
212
242
|
readonly IsNameSetExplicitly: boolean;
|
|
@@ -235,6 +265,8 @@ export const CollectionDataContractAttribute: {
|
|
|
235
265
|
export type CollectionDataContractAttribute = CollectionDataContractAttribute$instance;
|
|
236
266
|
|
|
237
267
|
export interface ContractNamespaceAttribute$instance extends Attribute {
|
|
268
|
+
readonly __tsonic_type_System_Runtime_Serialization_ContractNamespaceAttribute: never;
|
|
269
|
+
|
|
238
270
|
get ClrNamespace(): string | undefined;
|
|
239
271
|
set ClrNamespace(value: string | undefined);
|
|
240
272
|
readonly ContractNamespace: string;
|
|
@@ -249,6 +281,8 @@ export const ContractNamespaceAttribute: {
|
|
|
249
281
|
export type ContractNamespaceAttribute = ContractNamespaceAttribute$instance;
|
|
250
282
|
|
|
251
283
|
export interface DataContractAttribute$instance extends Attribute {
|
|
284
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContractAttribute: never;
|
|
285
|
+
|
|
252
286
|
readonly IsNameSetExplicitly: boolean;
|
|
253
287
|
readonly IsNamespaceSetExplicitly: boolean;
|
|
254
288
|
IsReference: boolean;
|
|
@@ -268,6 +302,8 @@ export const DataContractAttribute: {
|
|
|
268
302
|
export type DataContractAttribute = DataContractAttribute$instance;
|
|
269
303
|
|
|
270
304
|
export interface DataContractResolver$instance {
|
|
305
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContractResolver: never;
|
|
306
|
+
|
|
271
307
|
ResolveName(typeName: string, typeNamespace: string, declaredType: Type, knownTypeResolver: DataContractResolver): Type | undefined;
|
|
272
308
|
TryResolveType(type: Type, declaredType: Type, knownTypeResolver: DataContractResolver, typeName: XmlDictionaryString, typeNamespace: XmlDictionaryString): boolean;
|
|
273
309
|
}
|
|
@@ -280,6 +316,8 @@ export const DataContractResolver: (abstract new() => DataContractResolver) & {
|
|
|
280
316
|
export type DataContractResolver = DataContractResolver$instance;
|
|
281
317
|
|
|
282
318
|
export interface DataContractSerializer$instance extends XmlObjectSerializer {
|
|
319
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContractSerializer: never;
|
|
320
|
+
|
|
283
321
|
readonly DataContractResolver: DataContractResolver | undefined;
|
|
284
322
|
readonly IgnoreExtensionDataObject: boolean;
|
|
285
323
|
readonly KnownTypes: ReadOnlyCollection_1<Type>;
|
|
@@ -321,6 +359,8 @@ export const DataContractSerializer: {
|
|
|
321
359
|
export type DataContractSerializer = DataContractSerializer$instance;
|
|
322
360
|
|
|
323
361
|
export interface DataContractSerializerSettings$instance {
|
|
362
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContractSerializerSettings: never;
|
|
363
|
+
|
|
324
364
|
get DataContractResolver(): DataContractResolver | undefined;
|
|
325
365
|
set DataContractResolver(value: DataContractResolver | undefined);
|
|
326
366
|
IgnoreExtensionDataObject: boolean;
|
|
@@ -344,6 +384,8 @@ export const DataContractSerializerSettings: {
|
|
|
344
384
|
export type DataContractSerializerSettings = DataContractSerializerSettings$instance;
|
|
345
385
|
|
|
346
386
|
export interface DataMemberAttribute$instance extends Attribute {
|
|
387
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataMemberAttribute: never;
|
|
388
|
+
|
|
347
389
|
EmitDefaultValue: boolean;
|
|
348
390
|
readonly IsNameSetExplicitly: boolean;
|
|
349
391
|
IsRequired: boolean;
|
|
@@ -361,6 +403,8 @@ export const DataMemberAttribute: {
|
|
|
361
403
|
export type DataMemberAttribute = DataMemberAttribute$instance;
|
|
362
404
|
|
|
363
405
|
export interface DateTimeFormat$instance {
|
|
406
|
+
readonly __tsonic_type_System_Runtime_Serialization_DateTimeFormat: never;
|
|
407
|
+
|
|
364
408
|
DateTimeStyles: DateTimeStyles;
|
|
365
409
|
readonly FormatProvider: IFormatProvider;
|
|
366
410
|
readonly FormatString: string;
|
|
@@ -376,6 +420,8 @@ export const DateTimeFormat: {
|
|
|
376
420
|
export type DateTimeFormat = DateTimeFormat$instance;
|
|
377
421
|
|
|
378
422
|
export interface EnumMemberAttribute$instance extends Attribute {
|
|
423
|
+
readonly __tsonic_type_System_Runtime_Serialization_EnumMemberAttribute: never;
|
|
424
|
+
|
|
379
425
|
readonly IsValueSetExplicitly: boolean;
|
|
380
426
|
get Value(): string | undefined;
|
|
381
427
|
set Value(value: string | undefined);
|
|
@@ -390,6 +436,8 @@ export const EnumMemberAttribute: {
|
|
|
390
436
|
export type EnumMemberAttribute = EnumMemberAttribute$instance;
|
|
391
437
|
|
|
392
438
|
export interface ExportOptions$instance {
|
|
439
|
+
readonly __tsonic_type_System_Runtime_Serialization_ExportOptions: never;
|
|
440
|
+
|
|
393
441
|
get DataContractSurrogate(): ISerializationSurrogateProvider | undefined;
|
|
394
442
|
set DataContractSurrogate(value: ISerializationSurrogateProvider | undefined);
|
|
395
443
|
readonly KnownTypes: Collection_1<Type>;
|
|
@@ -404,6 +452,8 @@ export const ExportOptions: {
|
|
|
404
452
|
export type ExportOptions = ExportOptions$instance;
|
|
405
453
|
|
|
406
454
|
export interface ExtensionDataObject$instance {
|
|
455
|
+
readonly __tsonic_type_System_Runtime_Serialization_ExtensionDataObject: never;
|
|
456
|
+
|
|
407
457
|
}
|
|
408
458
|
|
|
409
459
|
|
|
@@ -413,7 +463,11 @@ export const ExtensionDataObject: {
|
|
|
413
463
|
|
|
414
464
|
export type ExtensionDataObject = ExtensionDataObject$instance;
|
|
415
465
|
|
|
416
|
-
export interface Formatter$instance {
|
|
466
|
+
export interface Formatter$instance extends IFormatter$instance {
|
|
467
|
+
readonly __tsonic_type_System_Runtime_Serialization_Formatter: never;
|
|
468
|
+
|
|
469
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IFormatter: never;
|
|
470
|
+
|
|
417
471
|
get Binder(): SerializationBinder | undefined;
|
|
418
472
|
set Binder(value: SerializationBinder | undefined);
|
|
419
473
|
Context: StreamingContext;
|
|
@@ -453,12 +507,14 @@ export interface __Formatter$views {
|
|
|
453
507
|
As_IFormatter(): IFormatter$instance;
|
|
454
508
|
}
|
|
455
509
|
|
|
456
|
-
export interface Formatter$instance extends IFormatter$instance {}
|
|
457
|
-
|
|
458
510
|
export type Formatter = Formatter$instance & __Formatter$views;
|
|
459
511
|
|
|
460
512
|
|
|
461
513
|
export interface FormatterConverter$instance {
|
|
514
|
+
readonly __tsonic_type_System_Runtime_Serialization_FormatterConverter: never;
|
|
515
|
+
|
|
516
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IFormatterConverter: never;
|
|
517
|
+
|
|
462
518
|
Convert(value: unknown, type: Type): unknown;
|
|
463
519
|
Convert(value: unknown, typeCode: TypeCode): unknown;
|
|
464
520
|
ToBoolean(value: unknown): boolean;
|
|
@@ -492,6 +548,8 @@ export type FormatterConverter = FormatterConverter$instance & __FormatterConver
|
|
|
492
548
|
|
|
493
549
|
|
|
494
550
|
export interface IgnoreDataMemberAttribute$instance extends Attribute {
|
|
551
|
+
readonly __tsonic_type_System_Runtime_Serialization_IgnoreDataMemberAttribute: never;
|
|
552
|
+
|
|
495
553
|
}
|
|
496
554
|
|
|
497
555
|
|
|
@@ -503,6 +561,10 @@ export const IgnoreDataMemberAttribute: {
|
|
|
503
561
|
export type IgnoreDataMemberAttribute = IgnoreDataMemberAttribute$instance;
|
|
504
562
|
|
|
505
563
|
export interface InvalidDataContractException$instance extends Exception {
|
|
564
|
+
readonly __tsonic_type_System_Runtime_Serialization_InvalidDataContractException: never;
|
|
565
|
+
|
|
566
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
567
|
+
|
|
506
568
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
507
569
|
}
|
|
508
570
|
|
|
@@ -522,6 +584,8 @@ export type InvalidDataContractException = InvalidDataContractException$instance
|
|
|
522
584
|
|
|
523
585
|
|
|
524
586
|
export interface KnownTypeAttribute$instance extends Attribute {
|
|
587
|
+
readonly __tsonic_type_System_Runtime_Serialization_KnownTypeAttribute: never;
|
|
588
|
+
|
|
525
589
|
readonly MethodName: string | undefined;
|
|
526
590
|
readonly Type: Type | undefined;
|
|
527
591
|
}
|
|
@@ -536,6 +600,8 @@ export const KnownTypeAttribute: {
|
|
|
536
600
|
export type KnownTypeAttribute = KnownTypeAttribute$instance;
|
|
537
601
|
|
|
538
602
|
export interface ObjectIDGenerator$instance {
|
|
603
|
+
readonly __tsonic_type_System_Runtime_Serialization_ObjectIDGenerator: never;
|
|
604
|
+
|
|
539
605
|
GetId(obj: unknown, firstTime: boolean): long;
|
|
540
606
|
HasId(obj: unknown, firstTime: boolean): long;
|
|
541
607
|
}
|
|
@@ -549,6 +615,8 @@ export const ObjectIDGenerator: {
|
|
|
549
615
|
export type ObjectIDGenerator = ObjectIDGenerator$instance;
|
|
550
616
|
|
|
551
617
|
export interface ObjectManager$instance {
|
|
618
|
+
readonly __tsonic_type_System_Runtime_Serialization_ObjectManager: never;
|
|
619
|
+
|
|
552
620
|
DoFixups(): void;
|
|
553
621
|
GetObject(objectID: long): unknown | undefined;
|
|
554
622
|
RaiseDeserializationEvent(): void;
|
|
@@ -572,6 +640,8 @@ export const ObjectManager: {
|
|
|
572
640
|
export type ObjectManager = ObjectManager$instance;
|
|
573
641
|
|
|
574
642
|
export interface OnDeserializedAttribute$instance extends Attribute {
|
|
643
|
+
readonly __tsonic_type_System_Runtime_Serialization_OnDeserializedAttribute: never;
|
|
644
|
+
|
|
575
645
|
}
|
|
576
646
|
|
|
577
647
|
|
|
@@ -583,6 +653,8 @@ export const OnDeserializedAttribute: {
|
|
|
583
653
|
export type OnDeserializedAttribute = OnDeserializedAttribute$instance;
|
|
584
654
|
|
|
585
655
|
export interface OnDeserializingAttribute$instance extends Attribute {
|
|
656
|
+
readonly __tsonic_type_System_Runtime_Serialization_OnDeserializingAttribute: never;
|
|
657
|
+
|
|
586
658
|
}
|
|
587
659
|
|
|
588
660
|
|
|
@@ -594,6 +666,8 @@ export const OnDeserializingAttribute: {
|
|
|
594
666
|
export type OnDeserializingAttribute = OnDeserializingAttribute$instance;
|
|
595
667
|
|
|
596
668
|
export interface OnSerializedAttribute$instance extends Attribute {
|
|
669
|
+
readonly __tsonic_type_System_Runtime_Serialization_OnSerializedAttribute: never;
|
|
670
|
+
|
|
597
671
|
}
|
|
598
672
|
|
|
599
673
|
|
|
@@ -605,6 +679,8 @@ export const OnSerializedAttribute: {
|
|
|
605
679
|
export type OnSerializedAttribute = OnSerializedAttribute$instance;
|
|
606
680
|
|
|
607
681
|
export interface OnSerializingAttribute$instance extends Attribute {
|
|
682
|
+
readonly __tsonic_type_System_Runtime_Serialization_OnSerializingAttribute: never;
|
|
683
|
+
|
|
608
684
|
}
|
|
609
685
|
|
|
610
686
|
|
|
@@ -616,6 +692,8 @@ export const OnSerializingAttribute: {
|
|
|
616
692
|
export type OnSerializingAttribute = OnSerializingAttribute$instance;
|
|
617
693
|
|
|
618
694
|
export interface OptionalFieldAttribute$instance extends Attribute {
|
|
695
|
+
readonly __tsonic_type_System_Runtime_Serialization_OptionalFieldAttribute: never;
|
|
696
|
+
|
|
619
697
|
VersionAdded: int;
|
|
620
698
|
}
|
|
621
699
|
|
|
@@ -628,6 +706,8 @@ export const OptionalFieldAttribute: {
|
|
|
628
706
|
export type OptionalFieldAttribute = OptionalFieldAttribute$instance;
|
|
629
707
|
|
|
630
708
|
export interface SafeSerializationEventArgs$instance extends EventArgs {
|
|
709
|
+
readonly __tsonic_type_System_Runtime_Serialization_SafeSerializationEventArgs: never;
|
|
710
|
+
|
|
631
711
|
readonly StreamingContext: StreamingContext;
|
|
632
712
|
AddSerializedState(serializedState: ISafeSerializationData): void;
|
|
633
713
|
}
|
|
@@ -640,6 +720,8 @@ export const SafeSerializationEventArgs: {
|
|
|
640
720
|
export type SafeSerializationEventArgs = SafeSerializationEventArgs$instance;
|
|
641
721
|
|
|
642
722
|
export interface SerializationBinder$instance {
|
|
723
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationBinder: never;
|
|
724
|
+
|
|
643
725
|
BindToName(serializedType: Type, assemblyName: string, typeName: string): void;
|
|
644
726
|
BindToType(assemblyName: string, typeName: string): Type | undefined;
|
|
645
727
|
}
|
|
@@ -652,6 +734,10 @@ export const SerializationBinder: (abstract new() => SerializationBinder) & {
|
|
|
652
734
|
export type SerializationBinder = SerializationBinder$instance;
|
|
653
735
|
|
|
654
736
|
export interface SerializationException$instance extends SystemException {
|
|
737
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationException: never;
|
|
738
|
+
|
|
739
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
740
|
+
|
|
655
741
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
656
742
|
}
|
|
657
743
|
|
|
@@ -671,6 +757,8 @@ export type SerializationException = SerializationException$instance & __Seriali
|
|
|
671
757
|
|
|
672
758
|
|
|
673
759
|
export interface SerializationInfo$instance {
|
|
760
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationInfo: never;
|
|
761
|
+
|
|
674
762
|
AssemblyName: string;
|
|
675
763
|
FullTypeName: string;
|
|
676
764
|
IsAssemblyNameSetExplicit: boolean;
|
|
@@ -724,6 +812,10 @@ export const SerializationInfo: {
|
|
|
724
812
|
export type SerializationInfo = SerializationInfo$instance;
|
|
725
813
|
|
|
726
814
|
export interface SerializationInfoEnumerator$instance {
|
|
815
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationInfoEnumerator: never;
|
|
816
|
+
|
|
817
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
818
|
+
|
|
727
819
|
readonly Current: SerializationEntry;
|
|
728
820
|
readonly Name: string;
|
|
729
821
|
readonly ObjectType: Type;
|
|
@@ -745,6 +837,8 @@ export type SerializationInfoEnumerator = SerializationInfoEnumerator$instance &
|
|
|
745
837
|
|
|
746
838
|
|
|
747
839
|
export interface SerializationObjectManager$instance {
|
|
840
|
+
readonly __tsonic_type_System_Runtime_Serialization_SerializationObjectManager: never;
|
|
841
|
+
|
|
748
842
|
RaiseOnSerializedEvent(): void;
|
|
749
843
|
RegisterObject(obj: unknown): void;
|
|
750
844
|
}
|
|
@@ -757,7 +851,11 @@ export const SerializationObjectManager: {
|
|
|
757
851
|
|
|
758
852
|
export type SerializationObjectManager = SerializationObjectManager$instance;
|
|
759
853
|
|
|
760
|
-
export interface SurrogateSelector$instance {
|
|
854
|
+
export interface SurrogateSelector$instance extends ISurrogateSelector$instance {
|
|
855
|
+
readonly __tsonic_type_System_Runtime_Serialization_SurrogateSelector: never;
|
|
856
|
+
|
|
857
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISurrogateSelector: never;
|
|
858
|
+
|
|
761
859
|
AddSurrogate(type: Type, context: StreamingContext, surrogate: ISerializationSurrogate): void;
|
|
762
860
|
ChainSelector(selector: ISurrogateSelector): void;
|
|
763
861
|
GetNextSelector(): ISurrogateSelector | undefined;
|
|
@@ -775,12 +873,12 @@ export interface __SurrogateSelector$views {
|
|
|
775
873
|
As_ISurrogateSelector(): ISurrogateSelector$instance;
|
|
776
874
|
}
|
|
777
875
|
|
|
778
|
-
export interface SurrogateSelector$instance extends ISurrogateSelector$instance {}
|
|
779
|
-
|
|
780
876
|
export type SurrogateSelector = SurrogateSelector$instance & __SurrogateSelector$views;
|
|
781
877
|
|
|
782
878
|
|
|
783
879
|
export interface TypeLoadExceptionHolder$instance {
|
|
880
|
+
readonly __tsonic_type_System_Runtime_Serialization_TypeLoadExceptionHolder: never;
|
|
881
|
+
|
|
784
882
|
}
|
|
785
883
|
|
|
786
884
|
|
|
@@ -791,6 +889,8 @@ export const TypeLoadExceptionHolder: {
|
|
|
791
889
|
export type TypeLoadExceptionHolder = TypeLoadExceptionHolder$instance;
|
|
792
890
|
|
|
793
891
|
export interface XmlObjectSerializer$instance {
|
|
892
|
+
readonly __tsonic_type_System_Runtime_Serialization_XmlObjectSerializer: never;
|
|
893
|
+
|
|
794
894
|
IsStartObject(reader: XmlReader): boolean;
|
|
795
895
|
IsStartObject(reader: XmlDictionaryReader): boolean;
|
|
796
896
|
ReadObject(stream: Stream): unknown | undefined;
|
|
@@ -817,6 +917,8 @@ export const XmlObjectSerializer: (abstract new() => XmlObjectSerializer) & {
|
|
|
817
917
|
export type XmlObjectSerializer = XmlObjectSerializer$instance;
|
|
818
918
|
|
|
819
919
|
export interface XsdDataContractExporter$instance {
|
|
920
|
+
readonly __tsonic_type_System_Runtime_Serialization_XsdDataContractExporter: never;
|
|
921
|
+
|
|
820
922
|
get Options(): ExportOptions | undefined;
|
|
821
923
|
set Options(value: ExportOptions | undefined);
|
|
822
924
|
readonly Schemas: XmlSchemaSet;
|
|
@@ -19,6 +19,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
19
19
|
import type { Boolean as ClrBoolean, Int32, Int64, Nullable_1, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
20
20
|
|
|
21
21
|
export interface DataContract$instance {
|
|
22
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContracts_DataContract: never;
|
|
23
|
+
|
|
22
24
|
readonly BaseContract: DataContract | undefined;
|
|
23
25
|
readonly ContractType: string | undefined;
|
|
24
26
|
readonly DataMembers: ReadOnlyCollection_1<DataMember>;
|
|
@@ -51,6 +53,8 @@ export const DataContract: {
|
|
|
51
53
|
export type DataContract = DataContract$instance;
|
|
52
54
|
|
|
53
55
|
export interface DataContractSet$instance {
|
|
56
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContracts_DataContractSet: never;
|
|
57
|
+
|
|
54
58
|
readonly Contracts: Dictionary_2<XmlQualifiedName, DataContract>;
|
|
55
59
|
get KnownTypesForObject(): Dictionary_2<XmlQualifiedName, DataContract> | undefined;
|
|
56
60
|
set KnownTypesForObject(value: Dictionary_2<XmlQualifiedName, DataContract> | undefined);
|
|
@@ -73,6 +77,8 @@ export const DataContractSet: {
|
|
|
73
77
|
export type DataContractSet = DataContractSet$instance;
|
|
74
78
|
|
|
75
79
|
export interface DataMember$instance {
|
|
80
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContracts_DataMember: never;
|
|
81
|
+
|
|
76
82
|
EmitDefaultValue: boolean;
|
|
77
83
|
IsNullable: boolean;
|
|
78
84
|
IsRequired: boolean;
|
|
@@ -89,6 +95,8 @@ export const DataMember: {
|
|
|
89
95
|
export type DataMember = DataMember$instance;
|
|
90
96
|
|
|
91
97
|
export interface XmlDataContract$instance extends DataContract {
|
|
98
|
+
readonly __tsonic_type_System_Runtime_Serialization_DataContracts_XmlDataContract: never;
|
|
99
|
+
|
|
92
100
|
readonly ContractType: string | undefined;
|
|
93
101
|
HasRoot: boolean;
|
|
94
102
|
readonly IsAnonymous: boolean;
|
|
@@ -29,6 +29,8 @@ export enum TypeFilterLevel {
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
export interface IFieldInfo$instance {
|
|
32
|
+
readonly __tsonic_iface_System_Runtime_Serialization_Formatters_IFieldInfo: never;
|
|
33
|
+
|
|
32
34
|
get FieldNames(): string[] | undefined;
|
|
33
35
|
set FieldNames(value: string[] | undefined);
|
|
34
36
|
get FieldTypes(): Type[] | undefined;
|
|
@@ -13,7 +13,11 @@ import type { IFormatter, ISurrogateSelector, SerializationBinder, StreamingCont
|
|
|
13
13
|
import * as System_Internal from "../../System/internal/index.js";
|
|
14
14
|
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
15
15
|
|
|
16
|
-
export interface BinaryFormatter$instance {
|
|
16
|
+
export interface BinaryFormatter$instance extends System_Runtime_Serialization_Internal.IFormatter$instance {
|
|
17
|
+
readonly __tsonic_type_System_Runtime_Serialization_Formatters_Binary_BinaryFormatter: never;
|
|
18
|
+
|
|
19
|
+
readonly __tsonic_iface_System_Runtime_Serialization_IFormatter: never;
|
|
20
|
+
|
|
17
21
|
AssemblyFormat: FormatterAssemblyStyle;
|
|
18
22
|
get Binder(): SerializationBinder | undefined;
|
|
19
23
|
set Binder(value: SerializationBinder | undefined);
|
|
@@ -37,8 +41,6 @@ export interface __BinaryFormatter$views {
|
|
|
37
41
|
As_IFormatter(): System_Runtime_Serialization_Internal.IFormatter$instance;
|
|
38
42
|
}
|
|
39
43
|
|
|
40
|
-
export interface BinaryFormatter$instance extends System_Runtime_Serialization_Internal.IFormatter$instance {}
|
|
41
|
-
|
|
42
44
|
export type BinaryFormatter = BinaryFormatter$instance & __BinaryFormatter$views;
|
|
43
45
|
|
|
44
46
|
|
|
@@ -17,6 +17,8 @@ import * as System_Internal from "../../System/internal/index.js";
|
|
|
17
17
|
import type { Boolean as ClrBoolean, Byte, Int32, Object as ClrObject, String as ClrString, Type, Void } from "../../System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface IXmlJsonReaderInitializer$instance {
|
|
20
|
+
readonly __tsonic_iface_System_Runtime_Serialization_Json_IXmlJsonReaderInitializer: never;
|
|
21
|
+
|
|
20
22
|
SetInput(buffer: byte[], offset: int, count: int, encoding: Encoding, quotas: XmlDictionaryReaderQuotas, onClose: OnXmlDictionaryReaderClose): void;
|
|
21
23
|
SetInput(stream: Stream, encoding: Encoding, quotas: XmlDictionaryReaderQuotas, onClose: OnXmlDictionaryReaderClose): void;
|
|
22
24
|
}
|
|
@@ -25,6 +27,8 @@ export interface IXmlJsonReaderInitializer$instance {
|
|
|
25
27
|
export type IXmlJsonReaderInitializer = IXmlJsonReaderInitializer$instance;
|
|
26
28
|
|
|
27
29
|
export interface IXmlJsonWriterInitializer$instance {
|
|
30
|
+
readonly __tsonic_iface_System_Runtime_Serialization_Json_IXmlJsonWriterInitializer: never;
|
|
31
|
+
|
|
28
32
|
SetOutput(stream: Stream, encoding: Encoding, ownsStream: boolean): void;
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -32,6 +36,8 @@ export interface IXmlJsonWriterInitializer$instance {
|
|
|
32
36
|
export type IXmlJsonWriterInitializer = IXmlJsonWriterInitializer$instance;
|
|
33
37
|
|
|
34
38
|
export interface DataContractJsonSerializer$instance extends XmlObjectSerializer {
|
|
39
|
+
readonly __tsonic_type_System_Runtime_Serialization_Json_DataContractJsonSerializer: never;
|
|
40
|
+
|
|
35
41
|
readonly DateTimeFormat: DateTimeFormat | undefined;
|
|
36
42
|
readonly EmitTypeInformation: EmitTypeInformation;
|
|
37
43
|
readonly IgnoreExtensionDataObject: boolean;
|
|
@@ -74,6 +80,8 @@ export const DataContractJsonSerializer: {
|
|
|
74
80
|
export type DataContractJsonSerializer = DataContractJsonSerializer$instance;
|
|
75
81
|
|
|
76
82
|
export interface DataContractJsonSerializerSettings$instance {
|
|
83
|
+
readonly __tsonic_type_System_Runtime_Serialization_Json_DataContractJsonSerializerSettings: never;
|
|
84
|
+
|
|
77
85
|
get DateTimeFormat(): DateTimeFormat | undefined;
|
|
78
86
|
set DateTimeFormat(value: DateTimeFormat | undefined);
|
|
79
87
|
EmitTypeInformation: EmitTypeInformation;
|
|
@@ -29,6 +29,8 @@ export enum ResourceScope {
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
export interface ComponentGuaranteesAttribute$instance extends Attribute {
|
|
32
|
+
readonly __tsonic_type_System_Runtime_Versioning_ComponentGuaranteesAttribute: never;
|
|
33
|
+
|
|
32
34
|
readonly Guarantees: ComponentGuaranteesOptions;
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -41,6 +43,10 @@ export const ComponentGuaranteesAttribute: {
|
|
|
41
43
|
export type ComponentGuaranteesAttribute = ComponentGuaranteesAttribute$instance;
|
|
42
44
|
|
|
43
45
|
export interface FrameworkName$instance {
|
|
46
|
+
readonly __tsonic_type_System_Runtime_Versioning_FrameworkName: never;
|
|
47
|
+
|
|
48
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
49
|
+
|
|
44
50
|
readonly FullName: string;
|
|
45
51
|
readonly Identifier: string;
|
|
46
52
|
readonly Profile: string;
|
|
@@ -70,6 +76,8 @@ export type FrameworkName = FrameworkName$instance & __FrameworkName$views;
|
|
|
70
76
|
|
|
71
77
|
|
|
72
78
|
export interface ObsoletedOSPlatformAttribute$instance extends OSPlatformAttribute {
|
|
79
|
+
readonly __tsonic_type_System_Runtime_Versioning_ObsoletedOSPlatformAttribute: never;
|
|
80
|
+
|
|
73
81
|
readonly Message: string | undefined;
|
|
74
82
|
get Url(): string | undefined;
|
|
75
83
|
set Url(value: string | undefined);
|
|
@@ -85,6 +93,8 @@ export const ObsoletedOSPlatformAttribute: {
|
|
|
85
93
|
export type ObsoletedOSPlatformAttribute = ObsoletedOSPlatformAttribute$instance;
|
|
86
94
|
|
|
87
95
|
export interface OSPlatformAttribute$instance extends Attribute {
|
|
96
|
+
readonly __tsonic_type_System_Runtime_Versioning_OSPlatformAttribute: never;
|
|
97
|
+
|
|
88
98
|
readonly PlatformName: string;
|
|
89
99
|
}
|
|
90
100
|
|
|
@@ -96,6 +106,8 @@ export const OSPlatformAttribute: {
|
|
|
96
106
|
export type OSPlatformAttribute = OSPlatformAttribute$instance;
|
|
97
107
|
|
|
98
108
|
export interface RequiresPreviewFeaturesAttribute$instance extends Attribute {
|
|
109
|
+
readonly __tsonic_type_System_Runtime_Versioning_RequiresPreviewFeaturesAttribute: never;
|
|
110
|
+
|
|
99
111
|
readonly Message: string | undefined;
|
|
100
112
|
get Url(): string | undefined;
|
|
101
113
|
set Url(value: string | undefined);
|
|
@@ -111,6 +123,8 @@ export const RequiresPreviewFeaturesAttribute: {
|
|
|
111
123
|
export type RequiresPreviewFeaturesAttribute = RequiresPreviewFeaturesAttribute$instance;
|
|
112
124
|
|
|
113
125
|
export interface ResourceConsumptionAttribute$instance extends Attribute {
|
|
126
|
+
readonly __tsonic_type_System_Runtime_Versioning_ResourceConsumptionAttribute: never;
|
|
127
|
+
|
|
114
128
|
readonly ConsumptionScope: ResourceScope;
|
|
115
129
|
readonly ResourceScope: ResourceScope;
|
|
116
130
|
}
|
|
@@ -125,6 +139,8 @@ export const ResourceConsumptionAttribute: {
|
|
|
125
139
|
export type ResourceConsumptionAttribute = ResourceConsumptionAttribute$instance;
|
|
126
140
|
|
|
127
141
|
export interface ResourceExposureAttribute$instance extends Attribute {
|
|
142
|
+
readonly __tsonic_type_System_Runtime_Versioning_ResourceExposureAttribute: never;
|
|
143
|
+
|
|
128
144
|
readonly ResourceExposureLevel: ResourceScope;
|
|
129
145
|
}
|
|
130
146
|
|
|
@@ -137,6 +153,8 @@ export const ResourceExposureAttribute: {
|
|
|
137
153
|
export type ResourceExposureAttribute = ResourceExposureAttribute$instance;
|
|
138
154
|
|
|
139
155
|
export interface SupportedOSPlatformAttribute$instance extends OSPlatformAttribute {
|
|
156
|
+
readonly __tsonic_type_System_Runtime_Versioning_SupportedOSPlatformAttribute: never;
|
|
157
|
+
|
|
140
158
|
}
|
|
141
159
|
|
|
142
160
|
|
|
@@ -148,6 +166,8 @@ export const SupportedOSPlatformAttribute: {
|
|
|
148
166
|
export type SupportedOSPlatformAttribute = SupportedOSPlatformAttribute$instance;
|
|
149
167
|
|
|
150
168
|
export interface SupportedOSPlatformGuardAttribute$instance extends OSPlatformAttribute {
|
|
169
|
+
readonly __tsonic_type_System_Runtime_Versioning_SupportedOSPlatformGuardAttribute: never;
|
|
170
|
+
|
|
151
171
|
}
|
|
152
172
|
|
|
153
173
|
|
|
@@ -159,6 +179,8 @@ export const SupportedOSPlatformGuardAttribute: {
|
|
|
159
179
|
export type SupportedOSPlatformGuardAttribute = SupportedOSPlatformGuardAttribute$instance;
|
|
160
180
|
|
|
161
181
|
export interface TargetFrameworkAttribute$instance extends Attribute {
|
|
182
|
+
readonly __tsonic_type_System_Runtime_Versioning_TargetFrameworkAttribute: never;
|
|
183
|
+
|
|
162
184
|
get FrameworkDisplayName(): string | undefined;
|
|
163
185
|
set FrameworkDisplayName(value: string | undefined);
|
|
164
186
|
readonly FrameworkName: string;
|
|
@@ -173,6 +195,8 @@ export const TargetFrameworkAttribute: {
|
|
|
173
195
|
export type TargetFrameworkAttribute = TargetFrameworkAttribute$instance;
|
|
174
196
|
|
|
175
197
|
export interface TargetPlatformAttribute$instance extends OSPlatformAttribute {
|
|
198
|
+
readonly __tsonic_type_System_Runtime_Versioning_TargetPlatformAttribute: never;
|
|
199
|
+
|
|
176
200
|
}
|
|
177
201
|
|
|
178
202
|
|
|
@@ -184,6 +208,8 @@ export const TargetPlatformAttribute: {
|
|
|
184
208
|
export type TargetPlatformAttribute = TargetPlatformAttribute$instance;
|
|
185
209
|
|
|
186
210
|
export interface UnsupportedOSPlatformAttribute$instance extends OSPlatformAttribute {
|
|
211
|
+
readonly __tsonic_type_System_Runtime_Versioning_UnsupportedOSPlatformAttribute: never;
|
|
212
|
+
|
|
187
213
|
readonly Message: string | undefined;
|
|
188
214
|
}
|
|
189
215
|
|
|
@@ -197,6 +223,8 @@ export const UnsupportedOSPlatformAttribute: {
|
|
|
197
223
|
export type UnsupportedOSPlatformAttribute = UnsupportedOSPlatformAttribute$instance;
|
|
198
224
|
|
|
199
225
|
export interface UnsupportedOSPlatformGuardAttribute$instance extends OSPlatformAttribute {
|
|
226
|
+
readonly __tsonic_type_System_Runtime_Versioning_UnsupportedOSPlatformGuardAttribute: never;
|
|
227
|
+
|
|
200
228
|
}
|
|
201
229
|
|
|
202
230
|
|