@tsonic/nodejs 10.0.41 → 10.0.44
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/README.md +27 -11
- package/Tsonic.Runtime/bindings.json +162 -162
- package/index/bindings.json +1129 -1129
- package/index.d.ts +0 -2
- package/node-aliases.d.ts +57 -0
- package/nodejs.Http/bindings.json +67 -67
- package/package.json +4 -4
- package/tsonic.bindings.json +1 -1
package/index.d.ts
CHANGED
|
@@ -28,8 +28,6 @@ export { ChildProcess as ChildProcess } from './index/internal/index.js';
|
|
|
28
28
|
export { ExecOptions as ExecOptions } from './index/internal/index.js';
|
|
29
29
|
export { child_process$instance as child_process } from './index/internal/index.js';
|
|
30
30
|
export { SpawnSyncReturns_1 as SpawnSyncReturns } from './index/internal/index.js';
|
|
31
|
-
export { console$instance as console } from './index/internal/index.js';
|
|
32
|
-
export { ConsoleConstructor as ConsoleConstructor } from './index/internal/index.js';
|
|
33
31
|
export { Certificate$instance as Certificate } from './index/internal/index.js';
|
|
34
32
|
export { X509CertificateExtensions$instance as X509CertificateExtensions } from './index/internal/index.js';
|
|
35
33
|
export { X509CertificateInfo as X509CertificateInfo } from './index/internal/index.js';
|
package/node-aliases.d.ts
CHANGED
|
@@ -43,6 +43,19 @@ declare module "node:fs" {
|
|
|
43
43
|
|
|
44
44
|
declare module "fs" {
|
|
45
45
|
export { fs } from "@tsonic/nodejs/index.js";
|
|
46
|
+
export const existsSync: typeof import("@tsonic/nodejs/index.js").fs.existsSync;
|
|
47
|
+
export const readFileSync: typeof import("@tsonic/nodejs/index.js").fs.readFileSync;
|
|
48
|
+
export const readFile: typeof import("@tsonic/nodejs/index.js").fs.readFile;
|
|
49
|
+
export const readFileSyncBytes: typeof import("@tsonic/nodejs/index.js").fs.readFileSyncBytes;
|
|
50
|
+
export const readdirSync: typeof import("@tsonic/nodejs/index.js").fs.readdirSync;
|
|
51
|
+
export const readdir: typeof import("@tsonic/nodejs/index.js").fs.readdir;
|
|
52
|
+
export const copyFileSync: typeof import("@tsonic/nodejs/index.js").fs.copyFileSync;
|
|
53
|
+
export const mkdirSync: typeof import("@tsonic/nodejs/index.js").fs.mkdirSync;
|
|
54
|
+
export const realpathSync: typeof import("@tsonic/nodejs/index.js").fs.realpathSync;
|
|
55
|
+
export const rmSync: typeof import("@tsonic/nodejs/index.js").fs.rmSync;
|
|
56
|
+
export const statSync: typeof import("@tsonic/nodejs/index.js").fs.statSync;
|
|
57
|
+
export const writeFileSync: typeof import("@tsonic/nodejs/index.js").fs.writeFileSync;
|
|
58
|
+
export const writeFileSyncBytes: typeof import("@tsonic/nodejs/index.js").fs.writeFileSyncBytes;
|
|
46
59
|
}
|
|
47
60
|
|
|
48
61
|
declare module "node:path" {
|
|
@@ -62,15 +75,29 @@ declare module "node:path" {
|
|
|
62
75
|
|
|
63
76
|
declare module "path" {
|
|
64
77
|
export { path } from "@tsonic/nodejs/index.js";
|
|
78
|
+
export const join: typeof import("@tsonic/nodejs/index.js").path.join;
|
|
79
|
+
export const extname: typeof import("@tsonic/nodejs/index.js").path.extname;
|
|
80
|
+
export const basename: typeof import("@tsonic/nodejs/index.js").path.basename;
|
|
81
|
+
export const dirname: typeof import("@tsonic/nodejs/index.js").path.dirname;
|
|
82
|
+
export const parse: typeof import("@tsonic/nodejs/index.js").path.parse;
|
|
83
|
+
export const isAbsolute: typeof import("@tsonic/nodejs/index.js").path.isAbsolute;
|
|
84
|
+
export const normalize: typeof import("@tsonic/nodejs/index.js").path.normalize;
|
|
85
|
+
export const relative: typeof import("@tsonic/nodejs/index.js").path.relative;
|
|
86
|
+
export const resolve: typeof import("@tsonic/nodejs/index.js").path.resolve;
|
|
87
|
+
export const sep: typeof import("@tsonic/nodejs/index.js").path.sep;
|
|
88
|
+
export const delimiter: typeof import("@tsonic/nodejs/index.js").path.delimiter;
|
|
65
89
|
}
|
|
66
90
|
|
|
67
91
|
declare module "node:crypto" {
|
|
68
92
|
export { crypto } from "@tsonic/nodejs/index.js";
|
|
93
|
+
export const createHash: typeof import("@tsonic/nodejs/index.js").crypto.createHash;
|
|
69
94
|
export const randomUUID: typeof import("@tsonic/nodejs/index.js").crypto.randomUUID;
|
|
70
95
|
}
|
|
71
96
|
|
|
72
97
|
declare module "crypto" {
|
|
73
98
|
export { crypto } from "@tsonic/nodejs/index.js";
|
|
99
|
+
export const createHash: typeof import("@tsonic/nodejs/index.js").crypto.createHash;
|
|
100
|
+
export const randomUUID: typeof import("@tsonic/nodejs/index.js").crypto.randomUUID;
|
|
74
101
|
}
|
|
75
102
|
|
|
76
103
|
declare module "node:dgram" {
|
|
@@ -113,6 +140,8 @@ declare module "node:os" {
|
|
|
113
140
|
|
|
114
141
|
declare module "os" {
|
|
115
142
|
export { os } from "@tsonic/nodejs/index.js";
|
|
143
|
+
export const homedir: typeof import("@tsonic/nodejs/index.js").os.homedir;
|
|
144
|
+
export const tmpdir: typeof import("@tsonic/nodejs/index.js").os.tmpdir;
|
|
116
145
|
}
|
|
117
146
|
|
|
118
147
|
declare module "node:process" {
|
|
@@ -135,6 +164,20 @@ declare module "node:process" {
|
|
|
135
164
|
|
|
136
165
|
declare module "process" {
|
|
137
166
|
export { process } from "@tsonic/nodejs/index.js";
|
|
167
|
+
export const argv: typeof import("@tsonic/nodejs/index.js").process.argv;
|
|
168
|
+
export const argv0: typeof import("@tsonic/nodejs/index.js").process.argv0;
|
|
169
|
+
export const arch: typeof import("@tsonic/nodejs/index.js").process.arch;
|
|
170
|
+
export const cwd: typeof import("@tsonic/nodejs/index.js").process.cwd;
|
|
171
|
+
export const chdir: typeof import("@tsonic/nodejs/index.js").process.chdir;
|
|
172
|
+
export const env: typeof import("@tsonic/nodejs/index.js").process.env;
|
|
173
|
+
export const execPath: typeof import("@tsonic/nodejs/index.js").process.execPath;
|
|
174
|
+
export const exit: typeof import("@tsonic/nodejs/index.js").process.exit;
|
|
175
|
+
export const exitCode: typeof import("@tsonic/nodejs/index.js").process.exitCode;
|
|
176
|
+
export const kill: typeof import("@tsonic/nodejs/index.js").process.kill;
|
|
177
|
+
export const pid: typeof import("@tsonic/nodejs/index.js").process.pid;
|
|
178
|
+
export const ppid: typeof import("@tsonic/nodejs/index.js").process.ppid;
|
|
179
|
+
export const platform: typeof import("@tsonic/nodejs/index.js").process.platform;
|
|
180
|
+
export const version: typeof import("@tsonic/nodejs/index.js").process.version;
|
|
138
181
|
}
|
|
139
182
|
|
|
140
183
|
declare module "node:querystring" {
|
|
@@ -163,10 +206,22 @@ declare module "stream" {
|
|
|
163
206
|
|
|
164
207
|
declare module "node:timers" {
|
|
165
208
|
export { timers } from "@tsonic/nodejs/index.js";
|
|
209
|
+
export const clearImmediate: typeof import("@tsonic/nodejs/index.js").timers.clearImmediate;
|
|
210
|
+
export const clearInterval: typeof import("@tsonic/nodejs/index.js").timers.clearInterval;
|
|
211
|
+
export const clearTimeout: typeof import("@tsonic/nodejs/index.js").timers.clearTimeout;
|
|
212
|
+
export const setImmediate: typeof import("@tsonic/nodejs/index.js").timers.setImmediate;
|
|
213
|
+
export const setInterval: typeof import("@tsonic/nodejs/index.js").timers.setInterval;
|
|
214
|
+
export const setTimeout: typeof import("@tsonic/nodejs/index.js").timers.setTimeout;
|
|
166
215
|
}
|
|
167
216
|
|
|
168
217
|
declare module "timers" {
|
|
169
218
|
export { timers } from "@tsonic/nodejs/index.js";
|
|
219
|
+
export const clearImmediate: typeof import("@tsonic/nodejs/index.js").timers.clearImmediate;
|
|
220
|
+
export const clearInterval: typeof import("@tsonic/nodejs/index.js").timers.clearInterval;
|
|
221
|
+
export const clearTimeout: typeof import("@tsonic/nodejs/index.js").timers.clearTimeout;
|
|
222
|
+
export const setImmediate: typeof import("@tsonic/nodejs/index.js").timers.setImmediate;
|
|
223
|
+
export const setInterval: typeof import("@tsonic/nodejs/index.js").timers.setInterval;
|
|
224
|
+
export const setTimeout: typeof import("@tsonic/nodejs/index.js").timers.setTimeout;
|
|
170
225
|
}
|
|
171
226
|
|
|
172
227
|
declare module "node:tls" {
|
|
@@ -187,6 +242,8 @@ declare module "node:url" {
|
|
|
187
242
|
declare module "url" {
|
|
188
243
|
export { url } from "@tsonic/nodejs/index.js";
|
|
189
244
|
export { URL, URLSearchParams } from "@tsonic/nodejs/index.js";
|
|
245
|
+
export const fileURLToPath: typeof import("@tsonic/nodejs/index.js").url.fileURLToPath;
|
|
246
|
+
export const pathToFileURL: typeof import("@tsonic/nodejs/index.js").url.pathToFileURL;
|
|
190
247
|
}
|
|
191
248
|
|
|
192
249
|
declare module "node:http" {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"constructors": [
|
|
85
85
|
{
|
|
86
86
|
"stableId": "nodejs:nodejs.Http.AddressInfo::.ctor():void",
|
|
87
|
-
"metadataToken":
|
|
87
|
+
"metadataToken": 100665278,
|
|
88
88
|
"canonicalSignature": "():void",
|
|
89
89
|
"normalizedSignature": "constructor|():void|static=false",
|
|
90
90
|
"isStatic": false,
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
{
|
|
115
115
|
"stableId": "nodejs:nodejs.Http.ClientRequest::setHeader(System.String,System.String):System.Void",
|
|
116
116
|
"clrName": "setHeader",
|
|
117
|
-
"metadataToken":
|
|
117
|
+
"metadataToken": 100665188,
|
|
118
118
|
"canonicalSignature": "(System.String,System.String):System.Void",
|
|
119
119
|
"normalizedSignature": "setHeader|(System.String,System.String):System.Void|static=false",
|
|
120
120
|
"emitScope": "ClassSurface",
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
{
|
|
135
135
|
"stableId": "nodejs:nodejs.Http.ClientRequest::getHeader(System.String):System.String",
|
|
136
136
|
"clrName": "getHeader",
|
|
137
|
-
"metadataToken":
|
|
137
|
+
"metadataToken": 100665189,
|
|
138
138
|
"canonicalSignature": "(System.String):System.String",
|
|
139
139
|
"normalizedSignature": "getHeader|(System.String):System.String|static=false",
|
|
140
140
|
"emitScope": "ClassSurface",
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
{
|
|
155
155
|
"stableId": "nodejs:nodejs.Http.ClientRequest::getHeaderNames():System.String[]",
|
|
156
156
|
"clrName": "getHeaderNames",
|
|
157
|
-
"metadataToken":
|
|
157
|
+
"metadataToken": 100665190,
|
|
158
158
|
"canonicalSignature": "():System.String[]",
|
|
159
159
|
"normalizedSignature": "getHeaderNames|():System.String[]|static=false",
|
|
160
160
|
"emitScope": "ClassSurface",
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
{
|
|
175
175
|
"stableId": "nodejs:nodejs.Http.ClientRequest::removeHeader(System.String):System.Void",
|
|
176
176
|
"clrName": "removeHeader",
|
|
177
|
-
"metadataToken":
|
|
177
|
+
"metadataToken": 100665191,
|
|
178
178
|
"canonicalSignature": "(System.String):System.Void",
|
|
179
179
|
"normalizedSignature": "removeHeader|(System.String):System.Void|static=false",
|
|
180
180
|
"emitScope": "ClassSurface",
|
|
@@ -194,7 +194,7 @@
|
|
|
194
194
|
{
|
|
195
195
|
"stableId": "nodejs:nodejs.Http.ClientRequest::write(System.String,System.String,System.Action):System.Boolean",
|
|
196
196
|
"clrName": "write",
|
|
197
|
-
"metadataToken":
|
|
197
|
+
"metadataToken": 100665192,
|
|
198
198
|
"canonicalSignature": "(System.String,System.String,System.Action):System.Boolean",
|
|
199
199
|
"normalizedSignature": "write|(System.String,System.String,System.Action):System.Boolean|static=false",
|
|
200
200
|
"emitScope": "ClassSurface",
|
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
{
|
|
215
215
|
"stableId": "nodejs:nodejs.Http.ClientRequest::end(System.String,System.String,System.Action):System.Threading.Tasks.Task",
|
|
216
216
|
"clrName": "end",
|
|
217
|
-
"metadataToken":
|
|
217
|
+
"metadataToken": 100665193,
|
|
218
218
|
"canonicalSignature": "(System.String,System.String,System.Action):System.Threading.Tasks.Task",
|
|
219
219
|
"normalizedSignature": "end|(System.String,System.String,System.Action):System.Threading.Tasks.Task|static=false",
|
|
220
220
|
"emitScope": "ClassSurface",
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
{
|
|
235
235
|
"stableId": "nodejs:nodejs.Http.ClientRequest::abort():System.Void",
|
|
236
236
|
"clrName": "abort",
|
|
237
|
-
"metadataToken":
|
|
237
|
+
"metadataToken": 100665195,
|
|
238
238
|
"canonicalSignature": "():System.Void",
|
|
239
239
|
"normalizedSignature": "abort|():System.Void|static=false",
|
|
240
240
|
"emitScope": "ClassSurface",
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
{
|
|
255
255
|
"stableId": "nodejs:nodejs.Http.ClientRequest::setTimeout(System.Int32,System.Action):nodejs.Http.ClientRequest",
|
|
256
256
|
"clrName": "setTimeout",
|
|
257
|
-
"metadataToken":
|
|
257
|
+
"metadataToken": 100665196,
|
|
258
258
|
"canonicalSignature": "(System.Int32,System.Action):nodejs.Http.ClientRequest",
|
|
259
259
|
"normalizedSignature": "setTimeout|(System.Int32,System.Action):nodejs.Http.ClientRequest|static=false",
|
|
260
260
|
"emitScope": "ClassSurface",
|
|
@@ -392,7 +392,7 @@
|
|
|
392
392
|
{
|
|
393
393
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::destroy():System.Void",
|
|
394
394
|
"clrName": "destroy",
|
|
395
|
-
"metadataToken":
|
|
395
|
+
"metadataToken": 100665225,
|
|
396
396
|
"canonicalSignature": "():System.Void",
|
|
397
397
|
"normalizedSignature": "destroy|():System.Void|static=false",
|
|
398
398
|
"emitScope": "ClassSurface",
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
{
|
|
413
413
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::setTimeout(System.Double,System.Action):nodejs.Http.IncomingMessage",
|
|
414
414
|
"clrName": "setTimeout",
|
|
415
|
-
"metadataToken":
|
|
415
|
+
"metadataToken": 100665226,
|
|
416
416
|
"canonicalSignature": "(System.Double,System.Action):nodejs.Http.IncomingMessage",
|
|
417
417
|
"normalizedSignature": "setTimeout|(System.Double,System.Action):nodejs.Http.IncomingMessage|static=false",
|
|
418
418
|
"emitScope": "ClassSurface",
|
|
@@ -432,7 +432,7 @@
|
|
|
432
432
|
{
|
|
433
433
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::readAll():System.Threading.Tasks.Task_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
|
|
434
434
|
"clrName": "readAll",
|
|
435
|
-
"metadataToken":
|
|
435
|
+
"metadataToken": 100665227,
|
|
436
436
|
"canonicalSignature": "():System.Threading.Tasks.Task_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
|
|
437
437
|
"normalizedSignature": "readAll|():System.Threading.Tasks.Task_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]|static=false",
|
|
438
438
|
"emitScope": "ClassSurface",
|
|
@@ -452,7 +452,7 @@
|
|
|
452
452
|
{
|
|
453
453
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::onData(System.Action_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void",
|
|
454
454
|
"clrName": "onData",
|
|
455
|
-
"metadataToken":
|
|
455
|
+
"metadataToken": 100665228,
|
|
456
456
|
"canonicalSignature": "(System.Action_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void",
|
|
457
457
|
"normalizedSignature": "onData|(System.Action_1[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void|static=false",
|
|
458
458
|
"emitScope": "ClassSurface",
|
|
@@ -472,7 +472,7 @@
|
|
|
472
472
|
{
|
|
473
473
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::onEnd(System.Action):System.Void",
|
|
474
474
|
"clrName": "onEnd",
|
|
475
|
-
"metadataToken":
|
|
475
|
+
"metadataToken": 100665229,
|
|
476
476
|
"canonicalSignature": "(System.Action):System.Void",
|
|
477
477
|
"normalizedSignature": "onEnd|(System.Action):System.Void|static=false",
|
|
478
478
|
"emitScope": "ClassSurface",
|
|
@@ -492,7 +492,7 @@
|
|
|
492
492
|
{
|
|
493
493
|
"stableId": "nodejs:nodejs.Http.IncomingMessage::onClose(System.Action):System.Void",
|
|
494
494
|
"clrName": "onClose",
|
|
495
|
-
"metadataToken":
|
|
495
|
+
"metadataToken": 100665230,
|
|
496
496
|
"canonicalSignature": "(System.Action):System.Void",
|
|
497
497
|
"normalizedSignature": "onClose|(System.Action):System.Void|static=false",
|
|
498
498
|
"emitScope": "ClassSurface",
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
"constructors": [
|
|
863
863
|
{
|
|
864
864
|
"stableId": "nodejs:nodejs.Http.RequestOptions::.ctor():void",
|
|
865
|
-
"metadataToken":
|
|
865
|
+
"metadataToken": 100665251,
|
|
866
866
|
"canonicalSignature": "():void",
|
|
867
867
|
"normalizedSignature": "constructor|():void|static=false",
|
|
868
868
|
"isStatic": false,
|
|
@@ -892,7 +892,7 @@
|
|
|
892
892
|
{
|
|
893
893
|
"stableId": "nodejs:nodejs.Http.Server::listen(System.Double,System.String,System.Nullable_1[[System.Double,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Action):nodejs.Http.Server",
|
|
894
894
|
"clrName": "listen",
|
|
895
|
-
"metadataToken":
|
|
895
|
+
"metadataToken": 100665265,
|
|
896
896
|
"canonicalSignature": "(System.Double,System.String,System.Nullable_1[[System.Double,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Action):nodejs.Http.Server",
|
|
897
897
|
"normalizedSignature": "listen|(System.Double,System.String,System.Nullable_1[[System.Double,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Action):nodejs.Http.Server|static=false",
|
|
898
898
|
"emitScope": "ClassSurface",
|
|
@@ -912,7 +912,7 @@
|
|
|
912
912
|
{
|
|
913
913
|
"stableId": "nodejs:nodejs.Http.Server::listen(System.Double,System.Action):nodejs.Http.Server",
|
|
914
914
|
"clrName": "listen",
|
|
915
|
-
"metadataToken":
|
|
915
|
+
"metadataToken": 100665266,
|
|
916
916
|
"canonicalSignature": "(System.Double,System.Action):nodejs.Http.Server",
|
|
917
917
|
"normalizedSignature": "listen|(System.Double,System.Action):nodejs.Http.Server|static=false",
|
|
918
918
|
"emitScope": "ClassSurface",
|
|
@@ -932,7 +932,7 @@
|
|
|
932
932
|
{
|
|
933
933
|
"stableId": "nodejs:nodejs.Http.Server::listen(System.Double,System.String,System.Action):nodejs.Http.Server",
|
|
934
934
|
"clrName": "listen",
|
|
935
|
-
"metadataToken":
|
|
935
|
+
"metadataToken": 100665267,
|
|
936
936
|
"canonicalSignature": "(System.Double,System.String,System.Action):nodejs.Http.Server",
|
|
937
937
|
"normalizedSignature": "listen|(System.Double,System.String,System.Action):nodejs.Http.Server|static=false",
|
|
938
938
|
"emitScope": "ClassSurface",
|
|
@@ -952,7 +952,7 @@
|
|
|
952
952
|
{
|
|
953
953
|
"stableId": "nodejs:nodejs.Http.Server::close(System.Action):nodejs.Http.Server",
|
|
954
954
|
"clrName": "close",
|
|
955
|
-
"metadataToken":
|
|
955
|
+
"metadataToken": 100665268,
|
|
956
956
|
"canonicalSignature": "(System.Action):nodejs.Http.Server",
|
|
957
957
|
"normalizedSignature": "close|(System.Action):nodejs.Http.Server|static=false",
|
|
958
958
|
"emitScope": "ClassSurface",
|
|
@@ -972,7 +972,7 @@
|
|
|
972
972
|
{
|
|
973
973
|
"stableId": "nodejs:nodejs.Http.Server::setTimeout(System.Double,System.Action):nodejs.Http.Server",
|
|
974
974
|
"clrName": "setTimeout",
|
|
975
|
-
"metadataToken":
|
|
975
|
+
"metadataToken": 100665270,
|
|
976
976
|
"canonicalSignature": "(System.Double,System.Action):nodejs.Http.Server",
|
|
977
977
|
"normalizedSignature": "setTimeout|(System.Double,System.Action):nodejs.Http.Server|static=false",
|
|
978
978
|
"emitScope": "ClassSurface",
|
|
@@ -992,7 +992,7 @@
|
|
|
992
992
|
{
|
|
993
993
|
"stableId": "nodejs:nodejs.Http.Server::address():nodejs.Http.AddressInfo",
|
|
994
994
|
"clrName": "address",
|
|
995
|
-
"metadataToken":
|
|
995
|
+
"metadataToken": 100665271,
|
|
996
996
|
"canonicalSignature": "():nodejs.Http.AddressInfo",
|
|
997
997
|
"normalizedSignature": "address|():nodejs.Http.AddressInfo|static=false",
|
|
998
998
|
"emitScope": "ClassSurface",
|
|
@@ -1130,10 +1130,10 @@
|
|
|
1130
1130
|
"events": [],
|
|
1131
1131
|
"constructors": [
|
|
1132
1132
|
{
|
|
1133
|
-
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1134
|
-
"metadataToken":
|
|
1135
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1136
|
-
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1133
|
+
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1134
|
+
"metadataToken": 100665253,
|
|
1135
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1136
|
+
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
1137
1137
|
"isStatic": false,
|
|
1138
1138
|
"parameterCount": 1,
|
|
1139
1139
|
"visibility": "Public",
|
|
@@ -1161,7 +1161,7 @@
|
|
|
1161
1161
|
{
|
|
1162
1162
|
"stableId": "nodejs:nodejs.Http.ServerResponse::writeHead(System.Double,System.String,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse",
|
|
1163
1163
|
"clrName": "writeHead",
|
|
1164
|
-
"metadataToken":
|
|
1164
|
+
"metadataToken": 100665286,
|
|
1165
1165
|
"canonicalSignature": "(System.Double,System.String,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse",
|
|
1166
1166
|
"normalizedSignature": "writeHead|(System.Double,System.String,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse|static=false",
|
|
1167
1167
|
"emitScope": "ClassSurface",
|
|
@@ -1181,7 +1181,7 @@
|
|
|
1181
1181
|
{
|
|
1182
1182
|
"stableId": "nodejs:nodejs.Http.ServerResponse::writeHead(System.Double,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse",
|
|
1183
1183
|
"clrName": "writeHead",
|
|
1184
|
-
"metadataToken":
|
|
1184
|
+
"metadataToken": 100665287,
|
|
1185
1185
|
"canonicalSignature": "(System.Double,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse",
|
|
1186
1186
|
"normalizedSignature": "writeHead|(System.Double,System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):nodejs.Http.ServerResponse|static=false",
|
|
1187
1187
|
"emitScope": "ClassSurface",
|
|
@@ -1201,7 +1201,7 @@
|
|
|
1201
1201
|
{
|
|
1202
1202
|
"stableId": "nodejs:nodejs.Http.ServerResponse::setHeader(System.String,System.String):nodejs.Http.ServerResponse",
|
|
1203
1203
|
"clrName": "setHeader",
|
|
1204
|
-
"metadataToken":
|
|
1204
|
+
"metadataToken": 100665288,
|
|
1205
1205
|
"canonicalSignature": "(System.String,System.String):nodejs.Http.ServerResponse",
|
|
1206
1206
|
"normalizedSignature": "setHeader|(System.String,System.String):nodejs.Http.ServerResponse|static=false",
|
|
1207
1207
|
"emitScope": "ClassSurface",
|
|
@@ -1221,7 +1221,7 @@
|
|
|
1221
1221
|
{
|
|
1222
1222
|
"stableId": "nodejs:nodejs.Http.ServerResponse::getHeader(System.String):System.String",
|
|
1223
1223
|
"clrName": "getHeader",
|
|
1224
|
-
"metadataToken":
|
|
1224
|
+
"metadataToken": 100665289,
|
|
1225
1225
|
"canonicalSignature": "(System.String):System.String",
|
|
1226
1226
|
"normalizedSignature": "getHeader|(System.String):System.String|static=false",
|
|
1227
1227
|
"emitScope": "ClassSurface",
|
|
@@ -1241,7 +1241,7 @@
|
|
|
1241
1241
|
{
|
|
1242
1242
|
"stableId": "nodejs:nodejs.Http.ServerResponse::getHeaderNames():System.String[]",
|
|
1243
1243
|
"clrName": "getHeaderNames",
|
|
1244
|
-
"metadataToken":
|
|
1244
|
+
"metadataToken": 100665290,
|
|
1245
1245
|
"canonicalSignature": "():System.String[]",
|
|
1246
1246
|
"normalizedSignature": "getHeaderNames|():System.String[]|static=false",
|
|
1247
1247
|
"emitScope": "ClassSurface",
|
|
@@ -1261,7 +1261,7 @@
|
|
|
1261
1261
|
{
|
|
1262
1262
|
"stableId": "nodejs:nodejs.Http.ServerResponse::getHeaders():System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
|
|
1263
1263
|
"clrName": "getHeaders",
|
|
1264
|
-
"metadataToken":
|
|
1264
|
+
"metadataToken": 100665291,
|
|
1265
1265
|
"canonicalSignature": "():System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
|
|
1266
1266
|
"normalizedSignature": "getHeaders|():System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]|static=false",
|
|
1267
1267
|
"emitScope": "ClassSurface",
|
|
@@ -1281,7 +1281,7 @@
|
|
|
1281
1281
|
{
|
|
1282
1282
|
"stableId": "nodejs:nodejs.Http.ServerResponse::hasHeader(System.String):System.Boolean",
|
|
1283
1283
|
"clrName": "hasHeader",
|
|
1284
|
-
"metadataToken":
|
|
1284
|
+
"metadataToken": 100665292,
|
|
1285
1285
|
"canonicalSignature": "(System.String):System.Boolean",
|
|
1286
1286
|
"normalizedSignature": "hasHeader|(System.String):System.Boolean|static=false",
|
|
1287
1287
|
"emitScope": "ClassSurface",
|
|
@@ -1301,7 +1301,7 @@
|
|
|
1301
1301
|
{
|
|
1302
1302
|
"stableId": "nodejs:nodejs.Http.ServerResponse::removeHeader(System.String):System.Void",
|
|
1303
1303
|
"clrName": "removeHeader",
|
|
1304
|
-
"metadataToken":
|
|
1304
|
+
"metadataToken": 100665293,
|
|
1305
1305
|
"canonicalSignature": "(System.String):System.Void",
|
|
1306
1306
|
"normalizedSignature": "removeHeader|(System.String):System.Void|static=false",
|
|
1307
1307
|
"emitScope": "ClassSurface",
|
|
@@ -1321,7 +1321,7 @@
|
|
|
1321
1321
|
{
|
|
1322
1322
|
"stableId": "nodejs:nodejs.Http.ServerResponse::write(System.String,System.String,System.Action):System.Boolean",
|
|
1323
1323
|
"clrName": "write",
|
|
1324
|
-
"metadataToken":
|
|
1324
|
+
"metadataToken": 100665294,
|
|
1325
1325
|
"canonicalSignature": "(System.String,System.String,System.Action):System.Boolean",
|
|
1326
1326
|
"normalizedSignature": "write|(System.String,System.String,System.Action):System.Boolean|static=false",
|
|
1327
1327
|
"emitScope": "ClassSurface",
|
|
@@ -1341,7 +1341,7 @@
|
|
|
1341
1341
|
{
|
|
1342
1342
|
"stableId": "nodejs:nodejs.Http.ServerResponse::write(nodejs.Buffer,System.Action):System.Boolean",
|
|
1343
1343
|
"clrName": "write",
|
|
1344
|
-
"metadataToken":
|
|
1344
|
+
"metadataToken": 100665295,
|
|
1345
1345
|
"canonicalSignature": "(nodejs.Buffer,System.Action):System.Boolean",
|
|
1346
1346
|
"normalizedSignature": "write|(nodejs.Buffer,System.Action):System.Boolean|static=false",
|
|
1347
1347
|
"emitScope": "ClassSurface",
|
|
@@ -1361,7 +1361,7 @@
|
|
|
1361
1361
|
{
|
|
1362
1362
|
"stableId": "nodejs:nodejs.Http.ServerResponse::write(System.Byte[],System.Action):System.Boolean",
|
|
1363
1363
|
"clrName": "write",
|
|
1364
|
-
"metadataToken":
|
|
1364
|
+
"metadataToken": 100665296,
|
|
1365
1365
|
"canonicalSignature": "(System.Byte[],System.Action):System.Boolean",
|
|
1366
1366
|
"normalizedSignature": "write|(System.Byte[],System.Action):System.Boolean|static=false",
|
|
1367
1367
|
"emitScope": "ClassSurface",
|
|
@@ -1381,7 +1381,7 @@
|
|
|
1381
1381
|
{
|
|
1382
1382
|
"stableId": "nodejs:nodejs.Http.ServerResponse::end():nodejs.Http.ServerResponse",
|
|
1383
1383
|
"clrName": "end",
|
|
1384
|
-
"metadataToken":
|
|
1384
|
+
"metadataToken": 100665297,
|
|
1385
1385
|
"canonicalSignature": "():nodejs.Http.ServerResponse",
|
|
1386
1386
|
"normalizedSignature": "end|():nodejs.Http.ServerResponse|static=false",
|
|
1387
1387
|
"emitScope": "ClassSurface",
|
|
@@ -1401,7 +1401,7 @@
|
|
|
1401
1401
|
{
|
|
1402
1402
|
"stableId": "nodejs:nodejs.Http.ServerResponse::end(System.Action):nodejs.Http.ServerResponse",
|
|
1403
1403
|
"clrName": "end",
|
|
1404
|
-
"metadataToken":
|
|
1404
|
+
"metadataToken": 100665298,
|
|
1405
1405
|
"canonicalSignature": "(System.Action):nodejs.Http.ServerResponse",
|
|
1406
1406
|
"normalizedSignature": "end|(System.Action):nodejs.Http.ServerResponse|static=false",
|
|
1407
1407
|
"emitScope": "ClassSurface",
|
|
@@ -1421,7 +1421,7 @@
|
|
|
1421
1421
|
{
|
|
1422
1422
|
"stableId": "nodejs:nodejs.Http.ServerResponse::end(System.String,System.String,System.Action):nodejs.Http.ServerResponse",
|
|
1423
1423
|
"clrName": "end",
|
|
1424
|
-
"metadataToken":
|
|
1424
|
+
"metadataToken": 100665299,
|
|
1425
1425
|
"canonicalSignature": "(System.String,System.String,System.Action):nodejs.Http.ServerResponse",
|
|
1426
1426
|
"normalizedSignature": "end|(System.String,System.String,System.Action):nodejs.Http.ServerResponse|static=false",
|
|
1427
1427
|
"emitScope": "ClassSurface",
|
|
@@ -1441,7 +1441,7 @@
|
|
|
1441
1441
|
{
|
|
1442
1442
|
"stableId": "nodejs:nodejs.Http.ServerResponse::end(nodejs.Buffer,System.Action):nodejs.Http.ServerResponse",
|
|
1443
1443
|
"clrName": "end",
|
|
1444
|
-
"metadataToken":
|
|
1444
|
+
"metadataToken": 100665300,
|
|
1445
1445
|
"canonicalSignature": "(nodejs.Buffer,System.Action):nodejs.Http.ServerResponse",
|
|
1446
1446
|
"normalizedSignature": "end|(nodejs.Buffer,System.Action):nodejs.Http.ServerResponse|static=false",
|
|
1447
1447
|
"emitScope": "ClassSurface",
|
|
@@ -1461,7 +1461,7 @@
|
|
|
1461
1461
|
{
|
|
1462
1462
|
"stableId": "nodejs:nodejs.Http.ServerResponse::end(System.Byte[],System.Action):nodejs.Http.ServerResponse",
|
|
1463
1463
|
"clrName": "end",
|
|
1464
|
-
"metadataToken":
|
|
1464
|
+
"metadataToken": 100665301,
|
|
1465
1465
|
"canonicalSignature": "(System.Byte[],System.Action):nodejs.Http.ServerResponse",
|
|
1466
1466
|
"normalizedSignature": "end|(System.Byte[],System.Action):nodejs.Http.ServerResponse|static=false",
|
|
1467
1467
|
"emitScope": "ClassSurface",
|
|
@@ -1481,7 +1481,7 @@
|
|
|
1481
1481
|
{
|
|
1482
1482
|
"stableId": "nodejs:nodejs.Http.ServerResponse::setTimeout(System.Double,System.Action):nodejs.Http.ServerResponse",
|
|
1483
1483
|
"clrName": "setTimeout",
|
|
1484
|
-
"metadataToken":
|
|
1484
|
+
"metadataToken": 100665302,
|
|
1485
1485
|
"canonicalSignature": "(System.Double,System.Action):nodejs.Http.ServerResponse",
|
|
1486
1486
|
"normalizedSignature": "setTimeout|(System.Double,System.Action):nodejs.Http.ServerResponse|static=false",
|
|
1487
1487
|
"emitScope": "ClassSurface",
|
|
@@ -1501,7 +1501,7 @@
|
|
|
1501
1501
|
{
|
|
1502
1502
|
"stableId": "nodejs:nodejs.Http.ServerResponse::flushHeaders():System.Void",
|
|
1503
1503
|
"clrName": "flushHeaders",
|
|
1504
|
-
"metadataToken":
|
|
1504
|
+
"metadataToken": 100665303,
|
|
1505
1505
|
"canonicalSignature": "():System.Void",
|
|
1506
1506
|
"normalizedSignature": "flushHeaders|():System.Void|static=false",
|
|
1507
1507
|
"emitScope": "ClassSurface",
|
|
@@ -1629,7 +1629,7 @@
|
|
|
1629
1629
|
"constructors": [
|
|
1630
1630
|
{
|
|
1631
1631
|
"stableId": "nodejs:nodejs.Http.TypeError::.ctor(System.String):void",
|
|
1632
|
-
"metadataToken":
|
|
1632
|
+
"metadataToken": 100665214,
|
|
1633
1633
|
"canonicalSignature": "(System.String):void",
|
|
1634
1634
|
"normalizedSignature": "constructor|(System.String):void|static=false",
|
|
1635
1635
|
"isStatic": false,
|
|
@@ -1657,11 +1657,11 @@
|
|
|
1657
1657
|
},
|
|
1658
1658
|
"methods": [
|
|
1659
1659
|
{
|
|
1660
|
-
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1660
|
+
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1661
1661
|
"clrName": "createServer",
|
|
1662
|
-
"metadataToken":
|
|
1663
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1664
|
-
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1662
|
+
"metadataToken": 100665205,
|
|
1663
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1664
|
+
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server|static=true",
|
|
1665
1665
|
"emitScope": "ClassSurface",
|
|
1666
1666
|
"provenance": "Original",
|
|
1667
1667
|
"arity": 0,
|
|
@@ -1677,11 +1677,11 @@
|
|
|
1677
1677
|
"isExtensionMethod": false
|
|
1678
1678
|
},
|
|
1679
1679
|
{
|
|
1680
|
-
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1680
|
+
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1681
1681
|
"clrName": "request",
|
|
1682
|
-
"metadataToken":
|
|
1683
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1684
|
-
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1682
|
+
"metadataToken": 100665206,
|
|
1683
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1684
|
+
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1685
1685
|
"emitScope": "ClassSurface",
|
|
1686
1686
|
"provenance": "Original",
|
|
1687
1687
|
"arity": 0,
|
|
@@ -1697,11 +1697,11 @@
|
|
|
1697
1697
|
"isExtensionMethod": false
|
|
1698
1698
|
},
|
|
1699
1699
|
{
|
|
1700
|
-
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1700
|
+
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1701
1701
|
"clrName": "request",
|
|
1702
|
-
"metadataToken":
|
|
1703
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1704
|
-
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1702
|
+
"metadataToken": 100665207,
|
|
1703
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1704
|
+
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1705
1705
|
"emitScope": "ClassSurface",
|
|
1706
1706
|
"provenance": "Original",
|
|
1707
1707
|
"arity": 0,
|
|
@@ -1717,11 +1717,11 @@
|
|
|
1717
1717
|
"isExtensionMethod": false
|
|
1718
1718
|
},
|
|
1719
1719
|
{
|
|
1720
|
-
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1720
|
+
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1721
1721
|
"clrName": "get",
|
|
1722
|
-
"metadataToken":
|
|
1723
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1724
|
-
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1722
|
+
"metadataToken": 100665208,
|
|
1723
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1724
|
+
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1725
1725
|
"emitScope": "ClassSurface",
|
|
1726
1726
|
"provenance": "Original",
|
|
1727
1727
|
"arity": 0,
|
|
@@ -1737,11 +1737,11 @@
|
|
|
1737
1737
|
"isExtensionMethod": false
|
|
1738
1738
|
},
|
|
1739
1739
|
{
|
|
1740
|
-
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1740
|
+
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1741
1741
|
"clrName": "get",
|
|
1742
|
-
"metadataToken":
|
|
1743
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1744
|
-
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1742
|
+
"metadataToken": 100665209,
|
|
1743
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1744
|
+
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.4.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1745
1745
|
"emitScope": "ClassSurface",
|
|
1746
1746
|
"provenance": "Original",
|
|
1747
1747
|
"arity": 0,
|
|
@@ -1759,7 +1759,7 @@
|
|
|
1759
1759
|
{
|
|
1760
1760
|
"stableId": "nodejs:nodejs.Http.http::validateHeaderName(System.String):System.Void",
|
|
1761
1761
|
"clrName": "validateHeaderName",
|
|
1762
|
-
"metadataToken":
|
|
1762
|
+
"metadataToken": 100665210,
|
|
1763
1763
|
"canonicalSignature": "(System.String):System.Void",
|
|
1764
1764
|
"normalizedSignature": "validateHeaderName|(System.String):System.Void|static=true",
|
|
1765
1765
|
"emitScope": "ClassSurface",
|
|
@@ -1779,7 +1779,7 @@
|
|
|
1779
1779
|
{
|
|
1780
1780
|
"stableId": "nodejs:nodejs.Http.http::validateHeaderValue(System.String,System.Object):System.Void",
|
|
1781
1781
|
"clrName": "validateHeaderValue",
|
|
1782
|
-
"metadataToken":
|
|
1782
|
+
"metadataToken": 100665211,
|
|
1783
1783
|
"canonicalSignature": "(System.String,System.Object):System.Void",
|
|
1784
1784
|
"normalizedSignature": "validateHeaderValue|(System.String,System.Object):System.Void|static=true",
|
|
1785
1785
|
"emitScope": "ClassSurface",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/nodejs",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.44",
|
|
4
4
|
"description": "TypeScript type definitions for Node.js CLR library",
|
|
5
5
|
"main": "index.d.ts",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"url": "https://github.com/tsoniclang/nodejs.git"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@tsonic/dotnet": "10.0.
|
|
34
|
-
"@tsonic/core": "10.0.
|
|
35
|
-
"@tsonic/js": "10.0.
|
|
33
|
+
"@tsonic/dotnet": "10.0.39",
|
|
34
|
+
"@tsonic/core": "10.0.39",
|
|
35
|
+
"@tsonic/js": "10.0.44"
|
|
36
36
|
}
|
|
37
37
|
}
|