@tsonic/nodejs 10.0.26 → 10.0.31
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 +28 -26
- package/index/bindings.json +117 -117
- package/index/internal/index.d.ts +125 -63
- package/nodejs.Http/bindings.json +18 -18
- package/nodejs.Http/internal/index.d.ts +4 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,31 +1,46 @@
|
|
|
1
1
|
# @tsonic/nodejs
|
|
2
2
|
|
|
3
|
-
Node-style APIs for **Tsonic
|
|
3
|
+
Node-style APIs for **Tsonic**.
|
|
4
|
+
|
|
5
|
+
This package is part of Tsonic: https://tsonic.org.
|
|
4
6
|
|
|
5
7
|
Use `@tsonic/nodejs` when you want Node-like modules (`fs`, `path`, `events`, `crypto`, `process`, `http`, …) while still compiling to a native binary with `tsonic`.
|
|
6
8
|
|
|
7
|
-
##
|
|
9
|
+
## Prerequisites
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
- Install the .NET 10 SDK (required by Tsonic): https://dotnet.microsoft.com/download
|
|
12
|
+
- Verify: `dotnet --version`
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
10
15
|
|
|
11
16
|
```bash
|
|
12
17
|
mkdir my-app && cd my-app
|
|
13
|
-
tsonic init
|
|
14
|
-
tsonic add npm @tsonic/nodejs
|
|
18
|
+
npx --yes tsonic@latest init
|
|
19
|
+
npx --yes tsonic@latest add npm @tsonic/nodejs
|
|
20
|
+
|
|
21
|
+
# Replace the default App.ts with a Node.js-style example
|
|
22
|
+
cat > packages/my-app/src/App.ts <<'EOF'
|
|
23
|
+
import { console, path } from "@tsonic/nodejs/index.js";
|
|
24
|
+
|
|
25
|
+
export function main(): void {
|
|
26
|
+
console.log(path.posix.join("a", "b", "c"));
|
|
27
|
+
}
|
|
28
|
+
EOF
|
|
29
|
+
|
|
15
30
|
npm run dev
|
|
16
31
|
```
|
|
17
32
|
|
|
18
|
-
|
|
33
|
+
## Existing project
|
|
19
34
|
|
|
20
35
|
```bash
|
|
21
|
-
tsonic add npm @tsonic/nodejs
|
|
36
|
+
npx --yes tsonic@latest add npm @tsonic/nodejs
|
|
22
37
|
```
|
|
23
38
|
|
|
24
39
|
## Versioning
|
|
25
40
|
|
|
26
|
-
This repo is versioned by
|
|
41
|
+
This repo is versioned by runtime major:
|
|
27
42
|
|
|
28
|
-
-
|
|
43
|
+
- `10` → `versions/10/` → npm: `@tsonic/nodejs@10.x`
|
|
29
44
|
|
|
30
45
|
When publishing, run: `npm publish versions/10 --access public`
|
|
31
46
|
|
|
@@ -108,7 +123,9 @@ Node’s built-in specifiers like `node:fs` are **not** supported here.
|
|
|
108
123
|
|
|
109
124
|
## Documentation
|
|
110
125
|
|
|
111
|
-
-
|
|
126
|
+
- [docs/getting-started.md](docs/getting-started.md)
|
|
127
|
+
- [docs/imports.md](docs/imports.md)
|
|
128
|
+
- Module docs: [fs](docs/modules/fs.md), [path](docs/modules/path.md), [crypto](docs/modules/crypto.md), [http](docs/modules/http.md), [events](docs/modules/events.md), [process](docs/modules/process.md)
|
|
112
129
|
- https://tsonic.org/nodejs/
|
|
113
130
|
|
|
114
131
|
## Naming Conventions
|
|
@@ -117,22 +134,7 @@ Node’s built-in specifiers like `node:fs` are **not** supported here.
|
|
|
117
134
|
|
|
118
135
|
## Development
|
|
119
136
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
To regenerate TypeScript declarations:
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
./__build/scripts/generate.sh
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
**Prerequisites:**
|
|
129
|
-
- .NET 10 SDK installed
|
|
130
|
-
- `tsbindgen` repository at `../tsbindgen`
|
|
131
|
-
- `nodejs-clr` repository at `../nodejs-clr` (built with `dotnet build -c Release`)
|
|
132
|
-
|
|
133
|
-
**Environment variables:**
|
|
134
|
-
- `DOTNET_VERSION` - .NET runtime version (default: `10.0.0`)
|
|
135
|
-
- `DOTNET_HOME` - .NET installation directory (default: `$HOME/.dotnet`)
|
|
137
|
+
See `__build/` for regeneration scripts.
|
|
136
138
|
|
|
137
139
|
## License
|
|
138
140
|
|
package/index/bindings.json
CHANGED
|
@@ -6722,11 +6722,11 @@
|
|
|
6722
6722
|
},
|
|
6723
6723
|
"methods": [
|
|
6724
6724
|
{
|
|
6725
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookup(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6725
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookup(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6726
6726
|
"clrName": "lookup",
|
|
6727
6727
|
"metadataToken": 100664017,
|
|
6728
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6729
|
-
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.
|
|
6728
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6729
|
+
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6730
6730
|
"emitScope": "ClassSurface",
|
|
6731
6731
|
"provenance": "Original",
|
|
6732
6732
|
"arity": 0,
|
|
@@ -6742,11 +6742,11 @@
|
|
|
6742
6742
|
"isExtensionMethod": false
|
|
6743
6743
|
},
|
|
6744
6744
|
{
|
|
6745
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookupAll(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6745
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookupAll(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6746
6746
|
"clrName": "lookupAll",
|
|
6747
6747
|
"metadataToken": 100664018,
|
|
6748
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6749
|
-
"normalizedSignature": "lookupAll|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
6748
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6749
|
+
"normalizedSignature": "lookupAll|(System.String,nodejs.LookupOptions):System.Threading.Tasks.Task_1[[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6750
6750
|
"emitScope": "ClassSurface",
|
|
6751
6751
|
"provenance": "Original",
|
|
6752
6752
|
"arity": 0,
|
|
@@ -6762,11 +6762,11 @@
|
|
|
6762
6762
|
"isExtensionMethod": false
|
|
6763
6763
|
},
|
|
6764
6764
|
{
|
|
6765
|
-
"stableId": "nodejs:nodejs.DnsPromises::lookupService(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6765
|
+
"stableId": "nodejs:nodejs.DnsPromises::lookupService(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6766
6766
|
"clrName": "lookupService",
|
|
6767
6767
|
"metadataToken": 100664019,
|
|
6768
|
-
"canonicalSignature": "(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6769
|
-
"normalizedSignature": "lookupService|(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.
|
|
6768
|
+
"canonicalSignature": "(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6769
|
+
"normalizedSignature": "lookupService|(System.String,System.Int32):System.Threading.Tasks.Task_1[[nodejs.LookupServiceResult,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6770
6770
|
"emitScope": "ClassSurface",
|
|
6771
6771
|
"provenance": "Original",
|
|
6772
6772
|
"arity": 0,
|
|
@@ -6922,11 +6922,11 @@
|
|
|
6922
6922
|
"isExtensionMethod": false
|
|
6923
6923
|
},
|
|
6924
6924
|
{
|
|
6925
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveCaa(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6925
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveCaa(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6926
6926
|
"clrName": "resolveCaa",
|
|
6927
6927
|
"metadataToken": 100664027,
|
|
6928
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6929
|
-
"normalizedSignature": "resolveCaa|(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
6928
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6929
|
+
"normalizedSignature": "resolveCaa|(System.String):System.Threading.Tasks.Task_1[[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6930
6930
|
"emitScope": "ClassSurface",
|
|
6931
6931
|
"provenance": "Original",
|
|
6932
6932
|
"arity": 0,
|
|
@@ -6942,11 +6942,11 @@
|
|
|
6942
6942
|
"isExtensionMethod": false
|
|
6943
6943
|
},
|
|
6944
6944
|
{
|
|
6945
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveMx(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6945
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveMx(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6946
6946
|
"clrName": "resolveMx",
|
|
6947
6947
|
"metadataToken": 100664028,
|
|
6948
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6949
|
-
"normalizedSignature": "resolveMx|(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
6948
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6949
|
+
"normalizedSignature": "resolveMx|(System.String):System.Threading.Tasks.Task_1[[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6950
6950
|
"emitScope": "ClassSurface",
|
|
6951
6951
|
"provenance": "Original",
|
|
6952
6952
|
"arity": 0,
|
|
@@ -6962,11 +6962,11 @@
|
|
|
6962
6962
|
"isExtensionMethod": false
|
|
6963
6963
|
},
|
|
6964
6964
|
{
|
|
6965
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveNaptr(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6965
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveNaptr(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6966
6966
|
"clrName": "resolveNaptr",
|
|
6967
6967
|
"metadataToken": 100664029,
|
|
6968
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6969
|
-
"normalizedSignature": "resolveNaptr|(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
6968
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
6969
|
+
"normalizedSignature": "resolveNaptr|(System.String):System.Threading.Tasks.Task_1[[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
6970
6970
|
"emitScope": "ClassSurface",
|
|
6971
6971
|
"provenance": "Original",
|
|
6972
6972
|
"arity": 0,
|
|
@@ -7022,11 +7022,11 @@
|
|
|
7022
7022
|
"isExtensionMethod": false
|
|
7023
7023
|
},
|
|
7024
7024
|
{
|
|
7025
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveSoa(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7025
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveSoa(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7026
7026
|
"clrName": "resolveSoa",
|
|
7027
7027
|
"metadataToken": 100664032,
|
|
7028
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7029
|
-
"normalizedSignature": "resolveSoa|(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
7028
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7029
|
+
"normalizedSignature": "resolveSoa|(System.String):System.Threading.Tasks.Task_1[[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7030
7030
|
"emitScope": "ClassSurface",
|
|
7031
7031
|
"provenance": "Original",
|
|
7032
7032
|
"arity": 0,
|
|
@@ -7042,11 +7042,11 @@
|
|
|
7042
7042
|
"isExtensionMethod": false
|
|
7043
7043
|
},
|
|
7044
7044
|
{
|
|
7045
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveSrv(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7045
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveSrv(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7046
7046
|
"clrName": "resolveSrv",
|
|
7047
7047
|
"metadataToken": 100664033,
|
|
7048
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7049
|
-
"normalizedSignature": "resolveSrv|(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
7048
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7049
|
+
"normalizedSignature": "resolveSrv|(System.String):System.Threading.Tasks.Task_1[[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7050
7050
|
"emitScope": "ClassSurface",
|
|
7051
7051
|
"provenance": "Original",
|
|
7052
7052
|
"arity": 0,
|
|
@@ -7062,11 +7062,11 @@
|
|
|
7062
7062
|
"isExtensionMethod": false
|
|
7063
7063
|
},
|
|
7064
7064
|
{
|
|
7065
|
-
"stableId": "nodejs:nodejs.DnsPromises::resolveTlsa(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7065
|
+
"stableId": "nodejs:nodejs.DnsPromises::resolveTlsa(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7066
7066
|
"clrName": "resolveTlsa",
|
|
7067
7067
|
"metadataToken": 100664034,
|
|
7068
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7069
|
-
"normalizedSignature": "resolveTlsa|(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
7068
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
7069
|
+
"normalizedSignature": "resolveTlsa|(System.String):System.Threading.Tasks.Task_1[[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
7070
7070
|
"emitScope": "ClassSurface",
|
|
7071
7071
|
"provenance": "Original",
|
|
7072
7072
|
"arity": 0,
|
|
@@ -9223,11 +9223,11 @@
|
|
|
9223
9223
|
"isExtensionMethod": false
|
|
9224
9224
|
},
|
|
9225
9225
|
{
|
|
9226
|
-
"stableId": "nodejs:nodejs.FsPromises::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9226
|
+
"stableId": "nodejs:nodejs.FsPromises::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9227
9227
|
"clrName": "fstat",
|
|
9228
9228
|
"metadataToken": 100664279,
|
|
9229
|
-
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9230
|
-
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9229
|
+
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9230
|
+
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
9231
9231
|
"emitScope": "ClassSurface",
|
|
9232
9232
|
"provenance": "Original",
|
|
9233
9233
|
"arity": 0,
|
|
@@ -9463,11 +9463,11 @@
|
|
|
9463
9463
|
"isExtensionMethod": false
|
|
9464
9464
|
},
|
|
9465
9465
|
{
|
|
9466
|
-
"stableId": "nodejs:nodejs.FsPromises::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9466
|
+
"stableId": "nodejs:nodejs.FsPromises::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9467
9467
|
"clrName": "stat",
|
|
9468
9468
|
"metadataToken": 100664291,
|
|
9469
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9470
|
-
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
9469
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
9470
|
+
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=false",
|
|
9471
9471
|
"emitScope": "ClassSurface",
|
|
9472
9472
|
"provenance": "Original",
|
|
9473
9473
|
"arity": 0,
|
|
@@ -12701,10 +12701,10 @@
|
|
|
12701
12701
|
"events": [],
|
|
12702
12702
|
"constructors": [
|
|
12703
12703
|
{
|
|
12704
|
-
"stableId": "nodejs:nodejs.PerformanceObserver::.ctor(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12704
|
+
"stableId": "nodejs:nodejs.PerformanceObserver::.ctor(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
12705
12705
|
"metadataToken": 100664613,
|
|
12706
|
-
"canonicalSignature": "(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12707
|
-
"normalizedSignature": "constructor|(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.
|
|
12706
|
+
"canonicalSignature": "(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
12707
|
+
"normalizedSignature": "constructor|(System.Action_2[[nodejs.PerformanceObserverEntryList,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.PerformanceObserver,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
12708
12708
|
"isStatic": false,
|
|
12709
12709
|
"parameterCount": 1,
|
|
12710
12710
|
"visibility": "Public",
|
|
@@ -14541,11 +14541,11 @@
|
|
|
14541
14541
|
"isExtensionMethod": false
|
|
14542
14542
|
},
|
|
14543
14543
|
{
|
|
14544
|
-
"stableId": "nodejs:nodejs.Resolver::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14544
|
+
"stableId": "nodejs:nodejs.Resolver::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14545
14545
|
"clrName": "resolveCaa",
|
|
14546
14546
|
"metadataToken": 100664165,
|
|
14547
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14548
|
-
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
14547
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14548
|
+
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14549
14549
|
"emitScope": "ClassSurface",
|
|
14550
14550
|
"provenance": "Original",
|
|
14551
14551
|
"arity": 0,
|
|
@@ -14581,11 +14581,11 @@
|
|
|
14581
14581
|
"isExtensionMethod": false
|
|
14582
14582
|
},
|
|
14583
14583
|
{
|
|
14584
|
-
"stableId": "nodejs:nodejs.Resolver::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14584
|
+
"stableId": "nodejs:nodejs.Resolver::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14585
14585
|
"clrName": "resolveMx",
|
|
14586
14586
|
"metadataToken": 100664167,
|
|
14587
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14588
|
-
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
14587
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14588
|
+
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14589
14589
|
"emitScope": "ClassSurface",
|
|
14590
14590
|
"provenance": "Original",
|
|
14591
14591
|
"arity": 0,
|
|
@@ -14601,11 +14601,11 @@
|
|
|
14601
14601
|
"isExtensionMethod": false
|
|
14602
14602
|
},
|
|
14603
14603
|
{
|
|
14604
|
-
"stableId": "nodejs:nodejs.Resolver::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14604
|
+
"stableId": "nodejs:nodejs.Resolver::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14605
14605
|
"clrName": "resolveNaptr",
|
|
14606
14606
|
"metadataToken": 100664168,
|
|
14607
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14608
|
-
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
14607
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14608
|
+
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14609
14609
|
"emitScope": "ClassSurface",
|
|
14610
14610
|
"provenance": "Original",
|
|
14611
14611
|
"arity": 0,
|
|
@@ -14661,11 +14661,11 @@
|
|
|
14661
14661
|
"isExtensionMethod": false
|
|
14662
14662
|
},
|
|
14663
14663
|
{
|
|
14664
|
-
"stableId": "nodejs:nodejs.Resolver::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14664
|
+
"stableId": "nodejs:nodejs.Resolver::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14665
14665
|
"clrName": "resolveSoa",
|
|
14666
14666
|
"metadataToken": 100664171,
|
|
14667
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14668
|
-
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
14667
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14668
|
+
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14669
14669
|
"emitScope": "ClassSurface",
|
|
14670
14670
|
"provenance": "Original",
|
|
14671
14671
|
"arity": 0,
|
|
@@ -14681,11 +14681,11 @@
|
|
|
14681
14681
|
"isExtensionMethod": false
|
|
14682
14682
|
},
|
|
14683
14683
|
{
|
|
14684
|
-
"stableId": "nodejs:nodejs.Resolver::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14684
|
+
"stableId": "nodejs:nodejs.Resolver::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14685
14685
|
"clrName": "resolveSrv",
|
|
14686
14686
|
"metadataToken": 100664172,
|
|
14687
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14688
|
-
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
14687
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14688
|
+
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14689
14689
|
"emitScope": "ClassSurface",
|
|
14690
14690
|
"provenance": "Original",
|
|
14691
14691
|
"arity": 0,
|
|
@@ -14701,11 +14701,11 @@
|
|
|
14701
14701
|
"isExtensionMethod": false
|
|
14702
14702
|
},
|
|
14703
14703
|
{
|
|
14704
|
-
"stableId": "nodejs:nodejs.Resolver::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14704
|
+
"stableId": "nodejs:nodejs.Resolver::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14705
14705
|
"clrName": "resolveTlsa",
|
|
14706
14706
|
"metadataToken": 100664173,
|
|
14707
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14708
|
-
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
14707
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
14708
|
+
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=false",
|
|
14709
14709
|
"emitScope": "ClassSurface",
|
|
14710
14710
|
"provenance": "Original",
|
|
14711
14711
|
"arity": 0,
|
|
@@ -15655,10 +15655,10 @@
|
|
|
15655
15655
|
"declaringAssemblyName": "nodejs"
|
|
15656
15656
|
},
|
|
15657
15657
|
{
|
|
15658
|
-
"stableId": "nodejs:nodejs.Server::.ctor(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15658
|
+
"stableId": "nodejs:nodejs.Server::.ctor(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15659
15659
|
"metadataToken": 100664424,
|
|
15660
|
-
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15661
|
-
"normalizedSignature": "constructor|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15660
|
+
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15661
|
+
"normalizedSignature": "constructor|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
15662
15662
|
"isStatic": false,
|
|
15663
15663
|
"parameterCount": 1,
|
|
15664
15664
|
"visibility": "Public",
|
|
@@ -15666,10 +15666,10 @@
|
|
|
15666
15666
|
"declaringAssemblyName": "nodejs"
|
|
15667
15667
|
},
|
|
15668
15668
|
{
|
|
15669
|
-
"stableId": "nodejs:nodejs.Server::.ctor(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15669
|
+
"stableId": "nodejs:nodejs.Server::.ctor(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15670
15670
|
"metadataToken": 100664425,
|
|
15671
|
-
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15672
|
-
"normalizedSignature": "constructor|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
15671
|
+
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
15672
|
+
"normalizedSignature": "constructor|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
15673
15673
|
"isStatic": false,
|
|
15674
15674
|
"parameterCount": 2,
|
|
15675
15675
|
"visibility": "Public",
|
|
@@ -19199,10 +19199,10 @@
|
|
|
19199
19199
|
"declaringAssemblyName": "nodejs"
|
|
19200
19200
|
},
|
|
19201
19201
|
{
|
|
19202
|
-
"stableId": "nodejs:nodejs.TLSServer::.ctor(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19202
|
+
"stableId": "nodejs:nodejs.TLSServer::.ctor(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19203
19203
|
"metadataToken": 100664979,
|
|
19204
|
-
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19205
|
-
"normalizedSignature": "constructor|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19204
|
+
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19205
|
+
"normalizedSignature": "constructor|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
19206
19206
|
"isStatic": false,
|
|
19207
19207
|
"parameterCount": 1,
|
|
19208
19208
|
"visibility": "Public",
|
|
@@ -19210,10 +19210,10 @@
|
|
|
19210
19210
|
"declaringAssemblyName": "nodejs"
|
|
19211
19211
|
},
|
|
19212
19212
|
{
|
|
19213
|
-
"stableId": "nodejs:nodejs.TLSServer::.ctor(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19213
|
+
"stableId": "nodejs:nodejs.TLSServer::.ctor(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19214
19214
|
"metadataToken": 100664980,
|
|
19215
|
-
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19216
|
-
"normalizedSignature": "constructor|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
19215
|
+
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
19216
|
+
"normalizedSignature": "constructor|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
19217
19217
|
"isStatic": false,
|
|
19218
19218
|
"parameterCount": 2,
|
|
19219
19219
|
"visibility": "Public",
|
|
@@ -23931,11 +23931,11 @@
|
|
|
23931
23931
|
"isExtensionMethod": false
|
|
23932
23932
|
},
|
|
23933
23933
|
{
|
|
23934
|
-
"stableId": "nodejs:nodejs.crypto::generateKeyPairSync(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23934
|
+
"stableId": "nodejs:nodejs.crypto::generateKeyPairSync(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
23935
23935
|
"clrName": "generateKeyPairSync",
|
|
23936
23936
|
"metadataToken": 100663672,
|
|
23937
|
-
"canonicalSignature": "(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23938
|
-
"normalizedSignature": "generateKeyPairSync|(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.
|
|
23937
|
+
"canonicalSignature": "(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
23938
|
+
"normalizedSignature": "generateKeyPairSync|(System.String,System.Object):System.ValueTuple_2[[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
23939
23939
|
"emitScope": "ClassSurface",
|
|
23940
23940
|
"provenance": "Original",
|
|
23941
23941
|
"arity": 0,
|
|
@@ -24271,11 +24271,11 @@
|
|
|
24271
24271
|
"isExtensionMethod": false
|
|
24272
24272
|
},
|
|
24273
24273
|
{
|
|
24274
|
-
"stableId": "nodejs:nodejs.crypto::generateKey(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24274
|
+
"stableId": "nodejs:nodejs.crypto::generateKey(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24275
24275
|
"clrName": "generateKey",
|
|
24276
24276
|
"metadataToken": 100663692,
|
|
24277
|
-
"canonicalSignature": "(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24278
|
-
"normalizedSignature": "generateKey|(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.
|
|
24277
|
+
"canonicalSignature": "(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24278
|
+
"normalizedSignature": "generateKey|(System.String,System.Object,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.KeyObject,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24279
24279
|
"emitScope": "ClassSurface",
|
|
24280
24280
|
"provenance": "Original",
|
|
24281
24281
|
"arity": 0,
|
|
@@ -24633,11 +24633,11 @@
|
|
|
24633
24633
|
},
|
|
24634
24634
|
"methods": [
|
|
24635
24635
|
{
|
|
24636
|
-
"stableId": "nodejs:nodejs.dgram::createSocket(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24636
|
+
"stableId": "nodejs:nodejs.dgram::createSocket(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24637
24637
|
"clrName": "createSocket",
|
|
24638
24638
|
"metadataToken": 100663886,
|
|
24639
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24640
|
-
"normalizedSignature": "createSocket|(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24639
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24640
|
+
"normalizedSignature": "createSocket|(System.String,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket|static=true",
|
|
24641
24641
|
"emitScope": "ClassSurface",
|
|
24642
24642
|
"provenance": "Original",
|
|
24643
24643
|
"arity": 0,
|
|
@@ -24653,11 +24653,11 @@
|
|
|
24653
24653
|
"isExtensionMethod": false
|
|
24654
24654
|
},
|
|
24655
24655
|
{
|
|
24656
|
-
"stableId": "nodejs:nodejs.dgram::createSocket(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24656
|
+
"stableId": "nodejs:nodejs.dgram::createSocket(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24657
24657
|
"clrName": "createSocket",
|
|
24658
24658
|
"metadataToken": 100663887,
|
|
24659
|
-
"canonicalSignature": "(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24660
|
-
"normalizedSignature": "createSocket|(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.
|
|
24659
|
+
"canonicalSignature": "(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket",
|
|
24660
|
+
"normalizedSignature": "createSocket|(nodejs.SocketOptions,System.Action_2[[System.Byte[],System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.RemoteInfo,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.DgramSocket|static=true",
|
|
24661
24661
|
"emitScope": "ClassSurface",
|
|
24662
24662
|
"provenance": "Original",
|
|
24663
24663
|
"arity": 0,
|
|
@@ -24755,11 +24755,11 @@
|
|
|
24755
24755
|
"isExtensionMethod": false
|
|
24756
24756
|
},
|
|
24757
24757
|
{
|
|
24758
|
-
"stableId": "nodejs:nodejs.dns::lookup(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24758
|
+
"stableId": "nodejs:nodejs.dns::lookup(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24759
24759
|
"clrName": "lookup",
|
|
24760
24760
|
"metadataToken": 100663963,
|
|
24761
|
-
"canonicalSignature": "(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24762
|
-
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.
|
|
24761
|
+
"canonicalSignature": "(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24762
|
+
"normalizedSignature": "lookup|(System.String,nodejs.LookupOptions,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.LookupAddress[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24763
24763
|
"emitScope": "ClassSurface",
|
|
24764
24764
|
"provenance": "Original",
|
|
24765
24765
|
"arity": 0,
|
|
@@ -24935,11 +24935,11 @@
|
|
|
24935
24935
|
"isExtensionMethod": false
|
|
24936
24936
|
},
|
|
24937
24937
|
{
|
|
24938
|
-
"stableId": "nodejs:nodejs.dns::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24938
|
+
"stableId": "nodejs:nodejs.dns::resolveCaa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24939
24939
|
"clrName": "resolveCaa",
|
|
24940
24940
|
"metadataToken": 100663973,
|
|
24941
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24942
|
-
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.
|
|
24941
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24942
|
+
"normalizedSignature": "resolveCaa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.CaaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24943
24943
|
"emitScope": "ClassSurface",
|
|
24944
24944
|
"provenance": "Original",
|
|
24945
24945
|
"arity": 0,
|
|
@@ -24955,11 +24955,11 @@
|
|
|
24955
24955
|
"isExtensionMethod": false
|
|
24956
24956
|
},
|
|
24957
24957
|
{
|
|
24958
|
-
"stableId": "nodejs:nodejs.dns::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24958
|
+
"stableId": "nodejs:nodejs.dns::resolveMx(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24959
24959
|
"clrName": "resolveMx",
|
|
24960
24960
|
"metadataToken": 100663974,
|
|
24961
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24962
|
-
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.
|
|
24961
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24962
|
+
"normalizedSignature": "resolveMx|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.MxRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24963
24963
|
"emitScope": "ClassSurface",
|
|
24964
24964
|
"provenance": "Original",
|
|
24965
24965
|
"arity": 0,
|
|
@@ -24975,11 +24975,11 @@
|
|
|
24975
24975
|
"isExtensionMethod": false
|
|
24976
24976
|
},
|
|
24977
24977
|
{
|
|
24978
|
-
"stableId": "nodejs:nodejs.dns::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24978
|
+
"stableId": "nodejs:nodejs.dns::resolveNaptr(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24979
24979
|
"clrName": "resolveNaptr",
|
|
24980
24980
|
"metadataToken": 100663975,
|
|
24981
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24982
|
-
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.
|
|
24981
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
24982
|
+
"normalizedSignature": "resolveNaptr|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.NaptrRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
24983
24983
|
"emitScope": "ClassSurface",
|
|
24984
24984
|
"provenance": "Original",
|
|
24985
24985
|
"arity": 0,
|
|
@@ -25035,11 +25035,11 @@
|
|
|
25035
25035
|
"isExtensionMethod": false
|
|
25036
25036
|
},
|
|
25037
25037
|
{
|
|
25038
|
-
"stableId": "nodejs:nodejs.dns::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25038
|
+
"stableId": "nodejs:nodejs.dns::resolveSoa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25039
25039
|
"clrName": "resolveSoa",
|
|
25040
25040
|
"metadataToken": 100663978,
|
|
25041
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25042
|
-
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.
|
|
25041
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25042
|
+
"normalizedSignature": "resolveSoa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SoaRecord,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25043
25043
|
"emitScope": "ClassSurface",
|
|
25044
25044
|
"provenance": "Original",
|
|
25045
25045
|
"arity": 0,
|
|
@@ -25055,11 +25055,11 @@
|
|
|
25055
25055
|
"isExtensionMethod": false
|
|
25056
25056
|
},
|
|
25057
25057
|
{
|
|
25058
|
-
"stableId": "nodejs:nodejs.dns::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25058
|
+
"stableId": "nodejs:nodejs.dns::resolveSrv(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25059
25059
|
"clrName": "resolveSrv",
|
|
25060
25060
|
"metadataToken": 100663979,
|
|
25061
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25062
|
-
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.
|
|
25061
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25062
|
+
"normalizedSignature": "resolveSrv|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.SrvRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25063
25063
|
"emitScope": "ClassSurface",
|
|
25064
25064
|
"provenance": "Original",
|
|
25065
25065
|
"arity": 0,
|
|
@@ -25075,11 +25075,11 @@
|
|
|
25075
25075
|
"isExtensionMethod": false
|
|
25076
25076
|
},
|
|
25077
25077
|
{
|
|
25078
|
-
"stableId": "nodejs:nodejs.dns::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25078
|
+
"stableId": "nodejs:nodejs.dns::resolveTlsa(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25079
25079
|
"clrName": "resolveTlsa",
|
|
25080
25080
|
"metadataToken": 100663980,
|
|
25081
|
-
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25082
|
-
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.
|
|
25081
|
+
"canonicalSignature": "(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void",
|
|
25082
|
+
"normalizedSignature": "resolveTlsa|(System.String,System.Action_2[[System.Exception,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[nodejs.TlsaRecord[],nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):System.Void|static=true",
|
|
25083
25083
|
"emitScope": "ClassSurface",
|
|
25084
25084
|
"provenance": "Original",
|
|
25085
25085
|
"arity": 0,
|
|
@@ -26101,11 +26101,11 @@
|
|
|
26101
26101
|
"isExtensionMethod": false
|
|
26102
26102
|
},
|
|
26103
26103
|
{
|
|
26104
|
-
"stableId": "nodejs:nodejs.fs::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26104
|
+
"stableId": "nodejs:nodejs.fs::fstat(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26105
26105
|
"clrName": "fstat",
|
|
26106
26106
|
"metadataToken": 100664223,
|
|
26107
|
-
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26108
|
-
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26107
|
+
"canonicalSignature": "(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26108
|
+
"normalizedSignature": "fstat|(System.Int32):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
26109
26109
|
"emitScope": "ClassSurface",
|
|
26110
26110
|
"provenance": "Original",
|
|
26111
26111
|
"arity": 0,
|
|
@@ -26581,11 +26581,11 @@
|
|
|
26581
26581
|
"isExtensionMethod": false
|
|
26582
26582
|
},
|
|
26583
26583
|
{
|
|
26584
|
-
"stableId": "nodejs:nodejs.fs::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26584
|
+
"stableId": "nodejs:nodejs.fs::stat(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26585
26585
|
"clrName": "stat",
|
|
26586
26586
|
"metadataToken": 100664251,
|
|
26587
|
-
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26588
|
-
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.
|
|
26587
|
+
"canonicalSignature": "(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]",
|
|
26588
|
+
"normalizedSignature": "stat|(System.String):System.Threading.Tasks.Task_1[[nodejs.Stats,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]|static=true",
|
|
26589
26589
|
"emitScope": "ClassSurface",
|
|
26590
26590
|
"provenance": "Original",
|
|
26591
26591
|
"arity": 0,
|
|
@@ -26943,11 +26943,11 @@
|
|
|
26943
26943
|
},
|
|
26944
26944
|
"methods": [
|
|
26945
26945
|
{
|
|
26946
|
-
"stableId": "nodejs:nodejs.net::createServer(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26946
|
+
"stableId": "nodejs:nodejs.net::createServer(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26947
26947
|
"clrName": "createServer",
|
|
26948
26948
|
"metadataToken": 100664350,
|
|
26949
|
-
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26950
|
-
"normalizedSignature": "createServer|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26949
|
+
"canonicalSignature": "(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26950
|
+
"normalizedSignature": "createServer|(System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server|static=true",
|
|
26951
26951
|
"emitScope": "ClassSurface",
|
|
26952
26952
|
"provenance": "Original",
|
|
26953
26953
|
"arity": 0,
|
|
@@ -26963,11 +26963,11 @@
|
|
|
26963
26963
|
"isExtensionMethod": false
|
|
26964
26964
|
},
|
|
26965
26965
|
{
|
|
26966
|
-
"stableId": "nodejs:nodejs.net::createServer(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26966
|
+
"stableId": "nodejs:nodejs.net::createServer(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26967
26967
|
"clrName": "createServer",
|
|
26968
26968
|
"metadataToken": 100664351,
|
|
26969
|
-
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26970
|
-
"normalizedSignature": "createServer|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.
|
|
26969
|
+
"canonicalSignature": "(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server",
|
|
26970
|
+
"normalizedSignature": "createServer|(nodejs.ServerOpts,System.Action_1[[nodejs.Socket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Server|static=true",
|
|
26971
26971
|
"emitScope": "ClassSurface",
|
|
26972
26972
|
"provenance": "Original",
|
|
26973
26973
|
"arity": 0,
|
|
@@ -29100,11 +29100,11 @@
|
|
|
29100
29100
|
},
|
|
29101
29101
|
"methods": [
|
|
29102
29102
|
{
|
|
29103
|
-
"stableId": "nodejs:nodejs.tls::createServer(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29103
|
+
"stableId": "nodejs:nodejs.tls::createServer(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29104
29104
|
"clrName": "createServer",
|
|
29105
29105
|
"metadataToken": 100664990,
|
|
29106
|
-
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29107
|
-
"normalizedSignature": "createServer|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29106
|
+
"canonicalSignature": "(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29107
|
+
"normalizedSignature": "createServer|(System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer|static=true",
|
|
29108
29108
|
"emitScope": "ClassSurface",
|
|
29109
29109
|
"provenance": "Original",
|
|
29110
29110
|
"arity": 0,
|
|
@@ -29120,11 +29120,11 @@
|
|
|
29120
29120
|
"isExtensionMethod": false
|
|
29121
29121
|
},
|
|
29122
29122
|
{
|
|
29123
|
-
"stableId": "nodejs:nodejs.tls::createServer(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29123
|
+
"stableId": "nodejs:nodejs.tls::createServer(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29124
29124
|
"clrName": "createServer",
|
|
29125
29125
|
"metadataToken": 100664991,
|
|
29126
|
-
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29127
|
-
"normalizedSignature": "createServer|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.
|
|
29126
|
+
"canonicalSignature": "(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer",
|
|
29127
|
+
"normalizedSignature": "createServer|(nodejs.TlsOptions,System.Action_1[[nodejs.TLSSocket,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.TLSServer|static=true",
|
|
29128
29128
|
"emitScope": "ClassSurface",
|
|
29129
29129
|
"provenance": "Original",
|
|
29130
29130
|
"arity": 0,
|
|
@@ -22,7 +22,7 @@ import type { Task, Task_1 } from "@tsonic/dotnet/System.Threading.Tasks/interna
|
|
|
22
22
|
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
23
23
|
import type { Action, Action_1, Action_2, Action_3, AsyncCallback, Boolean as ClrBoolean, Byte, DateTime, Delegate, Double, Exception, Func_1, IAsyncResult, ICloneable, IDisposable, Int16, Int32, Int64, IntPtr, MulticastDelegate, Nullable_1, Object as ClrObject, SByte, Single, String as ClrString, UInt16, UInt32, UInt64, ValueTuple_2, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
24
24
|
|
|
25
|
-
export type DebugLogFunction = (message: string, args: unknown[]) => void;
|
|
25
|
+
export type DebugLogFunction = (message: string, ...args: unknown[]) => void;
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
export interface AddressInfo$instance {
|
|
@@ -254,8 +254,10 @@ export interface BindOptions$instance {
|
|
|
254
254
|
get address(): string | undefined;
|
|
255
255
|
set address(value: string | undefined);
|
|
256
256
|
exclusive: boolean;
|
|
257
|
-
fd: Nullable_1<System_Internal.Int32>;
|
|
258
|
-
|
|
257
|
+
get fd(): Nullable_1<System_Internal.Int32>;
|
|
258
|
+
set fd(value: Nullable_1<System_Internal.Int32> | int);
|
|
259
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
260
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
259
261
|
}
|
|
260
262
|
|
|
261
263
|
|
|
@@ -287,9 +289,12 @@ export type BlockList = BlockList$instance;
|
|
|
287
289
|
export interface BrotliOptions$instance {
|
|
288
290
|
readonly __tsonic_type_nodejs_BrotliOptions: never;
|
|
289
291
|
|
|
290
|
-
chunkSize: Nullable_1<System_Internal.Int32>;
|
|
291
|
-
|
|
292
|
-
|
|
292
|
+
get chunkSize(): Nullable_1<System_Internal.Int32>;
|
|
293
|
+
set chunkSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
294
|
+
get maxOutputLength(): Nullable_1<System_Internal.Int32>;
|
|
295
|
+
set maxOutputLength(value: Nullable_1<System_Internal.Int32> | int);
|
|
296
|
+
get quality(): Nullable_1<System_Internal.Int32>;
|
|
297
|
+
set quality(value: Nullable_1<System_Internal.Int32> | int);
|
|
293
298
|
}
|
|
294
299
|
|
|
295
300
|
|
|
@@ -448,7 +453,8 @@ export interface ChildProcess$instance extends EventEmitter {
|
|
|
448
453
|
readonly __tsonic_type_nodejs_ChildProcess: never;
|
|
449
454
|
|
|
450
455
|
connected: boolean;
|
|
451
|
-
exitCode: Nullable_1<System_Internal.Int32>;
|
|
456
|
+
get exitCode(): Nullable_1<System_Internal.Int32>;
|
|
457
|
+
set exitCode(value: Nullable_1<System_Internal.Int32> | int);
|
|
452
458
|
readonly killed: boolean;
|
|
453
459
|
readonly pid: int;
|
|
454
460
|
referenced: boolean;
|
|
@@ -518,9 +524,12 @@ export interface CommonConnectionOptions$instance {
|
|
|
518
524
|
|
|
519
525
|
get ALPNProtocols(): string[] | undefined;
|
|
520
526
|
set ALPNProtocols(value: string[] | undefined);
|
|
521
|
-
enableTrace: Nullable_1<System_Internal.Boolean>;
|
|
522
|
-
|
|
523
|
-
|
|
527
|
+
get enableTrace(): Nullable_1<System_Internal.Boolean>;
|
|
528
|
+
set enableTrace(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
529
|
+
get rejectUnauthorized(): Nullable_1<System_Internal.Boolean>;
|
|
530
|
+
set rejectUnauthorized(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
531
|
+
get requestCert(): Nullable_1<System_Internal.Boolean>;
|
|
532
|
+
set requestCert(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
524
533
|
get secureContext(): SecureContext | undefined;
|
|
525
534
|
set secureContext(value: SecureContext | undefined);
|
|
526
535
|
}
|
|
@@ -546,10 +555,12 @@ export interface ConnectionOptions$instance extends CommonConnectionOptions {
|
|
|
546
555
|
set key(value: unknown | undefined);
|
|
547
556
|
get passphrase(): string | undefined;
|
|
548
557
|
set passphrase(value: string | undefined);
|
|
549
|
-
port: Nullable_1<System_Internal.Int32>;
|
|
558
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
559
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
550
560
|
get servername(): string | undefined;
|
|
551
561
|
set servername(value: string | undefined);
|
|
552
|
-
timeout: Nullable_1<System_Internal.Int32>;
|
|
562
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
563
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
553
564
|
}
|
|
554
565
|
|
|
555
566
|
|
|
@@ -986,7 +997,8 @@ export interface ExecOptions$instance {
|
|
|
986
997
|
set encoding(value: string | undefined);
|
|
987
998
|
get env(): unknown | undefined;
|
|
988
999
|
set env(value: unknown | undefined);
|
|
989
|
-
gid: Nullable_1<System_Internal.Int32>;
|
|
1000
|
+
get gid(): Nullable_1<System_Internal.Int32>;
|
|
1001
|
+
set gid(value: Nullable_1<System_Internal.Int32> | int);
|
|
990
1002
|
get input(): string | undefined;
|
|
991
1003
|
set input(value: string | undefined);
|
|
992
1004
|
get killSignal(): string | undefined;
|
|
@@ -997,7 +1009,8 @@ export interface ExecOptions$instance {
|
|
|
997
1009
|
get stdio(): string | undefined;
|
|
998
1010
|
set stdio(value: string | undefined);
|
|
999
1011
|
timeout: int;
|
|
1000
|
-
uid: Nullable_1<System_Internal.Int32>;
|
|
1012
|
+
get uid(): Nullable_1<System_Internal.Int32>;
|
|
1013
|
+
set uid(value: Nullable_1<System_Internal.Int32> | int);
|
|
1001
1014
|
windowsHide: boolean;
|
|
1002
1015
|
windowsVerbatimArguments: boolean;
|
|
1003
1016
|
}
|
|
@@ -1132,19 +1145,24 @@ export type Interface = Interface$instance;
|
|
|
1132
1145
|
export interface InterfaceOptions$instance {
|
|
1133
1146
|
readonly __tsonic_type_nodejs_InterfaceOptions: never;
|
|
1134
1147
|
|
|
1135
|
-
escapeCodeTimeout: Nullable_1<System_Internal.Int32>;
|
|
1148
|
+
get escapeCodeTimeout(): Nullable_1<System_Internal.Int32>;
|
|
1149
|
+
set escapeCodeTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1136
1150
|
get history(): string[] | undefined;
|
|
1137
1151
|
set history(value: string[] | undefined);
|
|
1138
|
-
historySize: Nullable_1<System_Internal.Int32>;
|
|
1152
|
+
get historySize(): Nullable_1<System_Internal.Int32>;
|
|
1153
|
+
set historySize(value: Nullable_1<System_Internal.Int32> | int);
|
|
1139
1154
|
get input(): Readable | undefined;
|
|
1140
1155
|
set input(value: Readable | undefined);
|
|
1141
1156
|
get output(): Writable | undefined;
|
|
1142
1157
|
set output(value: Writable | undefined);
|
|
1143
1158
|
get prompt(): string | undefined;
|
|
1144
1159
|
set prompt(value: string | undefined);
|
|
1145
|
-
removeHistoryDuplicates: Nullable_1<System_Internal.Boolean>;
|
|
1146
|
-
|
|
1147
|
-
|
|
1160
|
+
get removeHistoryDuplicates(): Nullable_1<System_Internal.Boolean>;
|
|
1161
|
+
set removeHistoryDuplicates(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1162
|
+
get tabSize(): Nullable_1<System_Internal.Int32>;
|
|
1163
|
+
set tabSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
1164
|
+
get terminal(): Nullable_1<System_Internal.Boolean>;
|
|
1165
|
+
set terminal(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1148
1166
|
}
|
|
1149
1167
|
|
|
1150
1168
|
|
|
@@ -1191,13 +1209,16 @@ export type KeyObject = KeyObject$instance;
|
|
|
1191
1209
|
export interface ListenOptions$instance {
|
|
1192
1210
|
readonly __tsonic_type_nodejs_ListenOptions: never;
|
|
1193
1211
|
|
|
1194
|
-
backlog: Nullable_1<System_Internal.Int32>;
|
|
1212
|
+
get backlog(): Nullable_1<System_Internal.Int32>;
|
|
1213
|
+
set backlog(value: Nullable_1<System_Internal.Int32> | int);
|
|
1195
1214
|
get host(): string | undefined;
|
|
1196
1215
|
set host(value: string | undefined);
|
|
1197
|
-
ipv6Only: Nullable_1<System_Internal.Boolean>;
|
|
1216
|
+
get ipv6Only(): Nullable_1<System_Internal.Boolean>;
|
|
1217
|
+
set ipv6Only(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1198
1218
|
get path(): string | undefined;
|
|
1199
1219
|
set path(value: string | undefined);
|
|
1200
|
-
port: Nullable_1<System_Internal.Int32>;
|
|
1220
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
1221
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
1201
1222
|
}
|
|
1202
1223
|
|
|
1203
1224
|
|
|
@@ -1226,13 +1247,16 @@ export type LookupAddress = LookupAddress$instance;
|
|
|
1226
1247
|
export interface LookupOptions$instance {
|
|
1227
1248
|
readonly __tsonic_type_nodejs_LookupOptions: never;
|
|
1228
1249
|
|
|
1229
|
-
all: Nullable_1<System_Internal.Boolean>;
|
|
1250
|
+
get all(): Nullable_1<System_Internal.Boolean>;
|
|
1251
|
+
set all(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1230
1252
|
get family(): unknown | undefined;
|
|
1231
1253
|
set family(value: unknown | undefined);
|
|
1232
|
-
hints: Nullable_1<System_Internal.Int32>;
|
|
1254
|
+
get hints(): Nullable_1<System_Internal.Int32>;
|
|
1255
|
+
set hints(value: Nullable_1<System_Internal.Int32> | int);
|
|
1233
1256
|
get order(): string | undefined;
|
|
1234
1257
|
set order(value: string | undefined);
|
|
1235
|
-
verbatim: Nullable_1<System_Internal.Boolean>;
|
|
1258
|
+
get verbatim(): Nullable_1<System_Internal.Boolean>;
|
|
1259
|
+
set verbatim(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1236
1260
|
}
|
|
1237
1261
|
|
|
1238
1262
|
|
|
@@ -1263,7 +1287,8 @@ export interface MarkOptions$instance {
|
|
|
1263
1287
|
|
|
1264
1288
|
get detail(): unknown | undefined;
|
|
1265
1289
|
set detail(value: unknown | undefined);
|
|
1266
|
-
startTime: Nullable_1<System_Internal.Double>;
|
|
1290
|
+
get startTime(): Nullable_1<System_Internal.Double>;
|
|
1291
|
+
set startTime(value: Nullable_1<System_Internal.Double> | double);
|
|
1267
1292
|
}
|
|
1268
1293
|
|
|
1269
1294
|
|
|
@@ -1279,10 +1304,12 @@ export interface MeasureOptions$instance {
|
|
|
1279
1304
|
|
|
1280
1305
|
get detail(): unknown | undefined;
|
|
1281
1306
|
set detail(value: unknown | undefined);
|
|
1282
|
-
end: Nullable_1<System_Internal.Double>;
|
|
1307
|
+
get end(): Nullable_1<System_Internal.Double>;
|
|
1308
|
+
set end(value: Nullable_1<System_Internal.Double> | double);
|
|
1283
1309
|
get endMark(): string | undefined;
|
|
1284
1310
|
set endMark(value: string | undefined);
|
|
1285
|
-
start: Nullable_1<System_Internal.Double>;
|
|
1311
|
+
get start(): Nullable_1<System_Internal.Double>;
|
|
1312
|
+
set start(value: Nullable_1<System_Internal.Double> | double);
|
|
1286
1313
|
get startMark(): string | undefined;
|
|
1287
1314
|
set startMark(value: string | undefined);
|
|
1288
1315
|
}
|
|
@@ -1729,9 +1756,12 @@ export type Resolver = Resolver$instance;
|
|
|
1729
1756
|
export interface ResolverOptions$instance {
|
|
1730
1757
|
readonly __tsonic_type_nodejs_ResolverOptions: never;
|
|
1731
1758
|
|
|
1732
|
-
maxTimeout: Nullable_1<System_Internal.Int32>;
|
|
1733
|
-
|
|
1734
|
-
|
|
1759
|
+
get maxTimeout(): Nullable_1<System_Internal.Int32>;
|
|
1760
|
+
set maxTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1761
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
1762
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1763
|
+
get tries(): Nullable_1<System_Internal.Int32>;
|
|
1764
|
+
set tries(value: Nullable_1<System_Internal.Int32> | int);
|
|
1735
1765
|
}
|
|
1736
1766
|
|
|
1737
1767
|
|
|
@@ -1842,8 +1872,10 @@ export type Server = Server$instance;
|
|
|
1842
1872
|
export interface ServerOpts$instance {
|
|
1843
1873
|
readonly __tsonic_type_nodejs_ServerOpts: never;
|
|
1844
1874
|
|
|
1845
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
1846
|
-
|
|
1875
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
1876
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1877
|
+
get pauseOnConnect(): Nullable_1<System_Internal.Boolean>;
|
|
1878
|
+
set pauseOnConnect(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1847
1879
|
}
|
|
1848
1880
|
|
|
1849
1881
|
|
|
@@ -1905,13 +1937,15 @@ export interface Socket$instance extends Stream {
|
|
|
1905
1937
|
set localAddress(value: string | undefined);
|
|
1906
1938
|
get localFamily(): string | undefined;
|
|
1907
1939
|
set localFamily(value: string | undefined);
|
|
1908
|
-
localPort: Nullable_1<System_Internal.Int32>;
|
|
1940
|
+
get localPort(): Nullable_1<System_Internal.Int32>;
|
|
1941
|
+
set localPort(value: Nullable_1<System_Internal.Int32> | int);
|
|
1909
1942
|
readonly readyState: string;
|
|
1910
1943
|
get remoteAddress(): string | undefined;
|
|
1911
1944
|
set remoteAddress(value: string | undefined);
|
|
1912
1945
|
get remoteFamily(): string | undefined;
|
|
1913
1946
|
set remoteFamily(value: string | undefined);
|
|
1914
|
-
remotePort: Nullable_1<System_Internal.Int32>;
|
|
1947
|
+
get remotePort(): Nullable_1<System_Internal.Int32>;
|
|
1948
|
+
set remotePort(value: Nullable_1<System_Internal.Int32> | int);
|
|
1915
1949
|
address(): unknown;
|
|
1916
1950
|
connect(port: int, host?: string, connectionListener?: Action): Socket;
|
|
1917
1951
|
connect(options: TcpSocketConnectOpts, connectionListener?: Action): Socket;
|
|
@@ -1949,7 +1983,8 @@ export interface SocketAddress$instance {
|
|
|
1949
1983
|
|
|
1950
1984
|
address: string;
|
|
1951
1985
|
family: string;
|
|
1952
|
-
flowlabel: Nullable_1<System_Internal.Int32>;
|
|
1986
|
+
get flowlabel(): Nullable_1<System_Internal.Int32>;
|
|
1987
|
+
set flowlabel(value: Nullable_1<System_Internal.Int32> | int);
|
|
1953
1988
|
port: int;
|
|
1954
1989
|
}
|
|
1955
1990
|
|
|
@@ -1968,8 +2003,10 @@ export interface SocketAddressInitOptions$instance {
|
|
|
1968
2003
|
set address(value: string | undefined);
|
|
1969
2004
|
get family(): string | undefined;
|
|
1970
2005
|
set family(value: string | undefined);
|
|
1971
|
-
flowlabel: Nullable_1<System_Internal.Int32>;
|
|
1972
|
-
|
|
2006
|
+
get flowlabel(): Nullable_1<System_Internal.Int32>;
|
|
2007
|
+
set flowlabel(value: Nullable_1<System_Internal.Int32> | int);
|
|
2008
|
+
get port(): Nullable_1<System_Internal.Int32>;
|
|
2009
|
+
set port(value: Nullable_1<System_Internal.Int32> | int);
|
|
1973
2010
|
}
|
|
1974
2011
|
|
|
1975
2012
|
|
|
@@ -1983,10 +2020,14 @@ export type SocketAddressInitOptions = SocketAddressInitOptions$instance;
|
|
|
1983
2020
|
export interface SocketConstructorOpts$instance {
|
|
1984
2021
|
readonly __tsonic_type_nodejs_SocketConstructorOpts: never;
|
|
1985
2022
|
|
|
1986
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
2023
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
2024
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2025
|
+
get fd(): Nullable_1<System_Internal.Int32>;
|
|
2026
|
+
set fd(value: Nullable_1<System_Internal.Int32> | int);
|
|
2027
|
+
get readable(): Nullable_1<System_Internal.Boolean>;
|
|
2028
|
+
set readable(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2029
|
+
get writable(): Nullable_1<System_Internal.Boolean>;
|
|
2030
|
+
set writable(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1990
2031
|
}
|
|
1991
2032
|
|
|
1992
2033
|
|
|
@@ -2001,10 +2042,12 @@ export interface SocketOptions$instance {
|
|
|
2001
2042
|
readonly __tsonic_type_nodejs_SocketOptions: never;
|
|
2002
2043
|
|
|
2003
2044
|
ipv6Only: boolean;
|
|
2004
|
-
recvBufferSize: Nullable_1<System_Internal.Int32>;
|
|
2045
|
+
get recvBufferSize(): Nullable_1<System_Internal.Int32>;
|
|
2046
|
+
set recvBufferSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2005
2047
|
reuseAddr: boolean;
|
|
2006
2048
|
reusePort: boolean;
|
|
2007
|
-
sendBufferSize: Nullable_1<System_Internal.Int32>;
|
|
2049
|
+
get sendBufferSize(): Nullable_1<System_Internal.Int32>;
|
|
2050
|
+
set sendBufferSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2008
2051
|
type: string;
|
|
2009
2052
|
}
|
|
2010
2053
|
|
|
@@ -2025,7 +2068,8 @@ export interface SpawnSyncReturns_1$instance<T> {
|
|
|
2025
2068
|
pid: int;
|
|
2026
2069
|
get signal(): string | undefined;
|
|
2027
2070
|
set signal(value: string | undefined);
|
|
2028
|
-
status: Nullable_1<System_Internal.Int32>;
|
|
2071
|
+
get status(): Nullable_1<System_Internal.Int32>;
|
|
2072
|
+
set status(value: Nullable_1<System_Internal.Int32> | int);
|
|
2029
2073
|
stderr: T;
|
|
2030
2074
|
stdout: T;
|
|
2031
2075
|
}
|
|
@@ -2131,16 +2175,22 @@ export type StringDecoder = StringDecoder$instance;
|
|
|
2131
2175
|
export interface TcpSocketConnectOpts$instance {
|
|
2132
2176
|
readonly __tsonic_type_nodejs_TcpSocketConnectOpts: never;
|
|
2133
2177
|
|
|
2134
|
-
family: Nullable_1<System_Internal.Int32>;
|
|
2135
|
-
|
|
2178
|
+
get family(): Nullable_1<System_Internal.Int32>;
|
|
2179
|
+
set family(value: Nullable_1<System_Internal.Int32> | int);
|
|
2180
|
+
get hints(): Nullable_1<System_Internal.Int32>;
|
|
2181
|
+
set hints(value: Nullable_1<System_Internal.Int32> | int);
|
|
2136
2182
|
get host(): string | undefined;
|
|
2137
2183
|
set host(value: string | undefined);
|
|
2138
|
-
keepAlive: Nullable_1<System_Internal.Boolean>;
|
|
2139
|
-
|
|
2184
|
+
get keepAlive(): Nullable_1<System_Internal.Boolean>;
|
|
2185
|
+
set keepAlive(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2186
|
+
get keepAliveInitialDelay(): Nullable_1<System_Internal.Int32>;
|
|
2187
|
+
set keepAliveInitialDelay(value: Nullable_1<System_Internal.Int32> | int);
|
|
2140
2188
|
get localAddress(): string | undefined;
|
|
2141
2189
|
set localAddress(value: string | undefined);
|
|
2142
|
-
localPort: Nullable_1<System_Internal.Int32>;
|
|
2143
|
-
|
|
2190
|
+
get localPort(): Nullable_1<System_Internal.Int32>;
|
|
2191
|
+
set localPort(value: Nullable_1<System_Internal.Int32> | int);
|
|
2192
|
+
get noDelay(): Nullable_1<System_Internal.Boolean>;
|
|
2193
|
+
set noDelay(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2144
2194
|
port: int;
|
|
2145
2195
|
}
|
|
2146
2196
|
|
|
@@ -2243,18 +2293,22 @@ export type TLSCertificateInfo = TLSCertificateInfo$instance;
|
|
|
2243
2293
|
export interface TlsOptions$instance extends CommonConnectionOptions {
|
|
2244
2294
|
readonly __tsonic_type_nodejs_TlsOptions: never;
|
|
2245
2295
|
|
|
2246
|
-
allowHalfOpen: Nullable_1<System_Internal.Boolean>;
|
|
2296
|
+
get allowHalfOpen(): Nullable_1<System_Internal.Boolean>;
|
|
2297
|
+
set allowHalfOpen(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2247
2298
|
get ca(): unknown | undefined;
|
|
2248
2299
|
set ca(value: unknown | undefined);
|
|
2249
2300
|
get cert(): unknown | undefined;
|
|
2250
2301
|
set cert(value: unknown | undefined);
|
|
2251
|
-
handshakeTimeout: Nullable_1<System_Internal.Int32>;
|
|
2302
|
+
get handshakeTimeout(): Nullable_1<System_Internal.Int32>;
|
|
2303
|
+
set handshakeTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
2252
2304
|
get key(): unknown | undefined;
|
|
2253
2305
|
set key(value: unknown | undefined);
|
|
2254
2306
|
get passphrase(): string | undefined;
|
|
2255
2307
|
set passphrase(value: string | undefined);
|
|
2256
|
-
pauseOnConnect: Nullable_1<System_Internal.Boolean>;
|
|
2257
|
-
|
|
2308
|
+
get pauseOnConnect(): Nullable_1<System_Internal.Boolean>;
|
|
2309
|
+
set pauseOnConnect(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2310
|
+
get sessionTimeout(): Nullable_1<System_Internal.Int32>;
|
|
2311
|
+
set sessionTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
2258
2312
|
}
|
|
2259
2313
|
|
|
2260
2314
|
|
|
@@ -2329,7 +2383,8 @@ export interface TLSSocketOptions$instance extends CommonConnectionOptions {
|
|
|
2329
2383
|
set ca(value: unknown | undefined);
|
|
2330
2384
|
get cert(): unknown | undefined;
|
|
2331
2385
|
set cert(value: unknown | undefined);
|
|
2332
|
-
isServer: Nullable_1<System_Internal.Boolean>;
|
|
2386
|
+
get isServer(): Nullable_1<System_Internal.Boolean>;
|
|
2387
|
+
set isServer(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2333
2388
|
get key(): unknown | undefined;
|
|
2334
2389
|
set key(value: unknown | undefined);
|
|
2335
2390
|
get passphrase(): string | undefined;
|
|
@@ -2530,12 +2585,18 @@ export type X509CertificateInfo = X509CertificateInfo$instance;
|
|
|
2530
2585
|
export interface ZlibOptions$instance {
|
|
2531
2586
|
readonly __tsonic_type_nodejs_ZlibOptions: never;
|
|
2532
2587
|
|
|
2533
|
-
chunkSize: Nullable_1<System_Internal.Int32>;
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2588
|
+
get chunkSize(): Nullable_1<System_Internal.Int32>;
|
|
2589
|
+
set chunkSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
2590
|
+
get level(): Nullable_1<System_Internal.Int32>;
|
|
2591
|
+
set level(value: Nullable_1<System_Internal.Int32> | int);
|
|
2592
|
+
get maxOutputLength(): Nullable_1<System_Internal.Int32>;
|
|
2593
|
+
set maxOutputLength(value: Nullable_1<System_Internal.Int32> | int);
|
|
2594
|
+
get memLevel(): Nullable_1<System_Internal.Int32>;
|
|
2595
|
+
set memLevel(value: Nullable_1<System_Internal.Int32> | int);
|
|
2596
|
+
get strategy(): Nullable_1<System_Internal.Int32>;
|
|
2597
|
+
set strategy(value: Nullable_1<System_Internal.Int32> | int);
|
|
2598
|
+
get windowBits(): Nullable_1<System_Internal.Int32>;
|
|
2599
|
+
set windowBits(value: Nullable_1<System_Internal.Int32> | int);
|
|
2539
2600
|
}
|
|
2540
2601
|
|
|
2541
2602
|
|
|
@@ -2949,7 +3010,8 @@ export abstract class process$instance {
|
|
|
2949
3010
|
static argv0: string;
|
|
2950
3011
|
static readonly env: ProcessEnv;
|
|
2951
3012
|
static readonly execPath: string;
|
|
2952
|
-
static exitCode: Nullable_1<System_Internal.Int32>;
|
|
3013
|
+
static get exitCode(): Nullable_1<System_Internal.Int32>;
|
|
3014
|
+
static set exitCode(value: Nullable_1<System_Internal.Int32> | int);
|
|
2953
3015
|
static readonly pid: int;
|
|
2954
3016
|
static readonly ppid: int;
|
|
2955
3017
|
static readonly platform: string;
|
|
@@ -1110,10 +1110,10 @@
|
|
|
1110
1110
|
"events": [],
|
|
1111
1111
|
"constructors": [
|
|
1112
1112
|
{
|
|
1113
|
-
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1113
|
+
"stableId": "nodejs:nodejs.Http.Server::.ctor(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1114
1114
|
"metadataToken": 100665217,
|
|
1115
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1116
|
-
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1115
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void",
|
|
1116
|
+
"normalizedSignature": "constructor|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):void|static=false",
|
|
1117
1117
|
"isStatic": false,
|
|
1118
1118
|
"parameterCount": 1,
|
|
1119
1119
|
"visibility": "Public",
|
|
@@ -1517,11 +1517,11 @@
|
|
|
1517
1517
|
},
|
|
1518
1518
|
"methods": [
|
|
1519
1519
|
{
|
|
1520
|
-
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1520
|
+
"stableId": "nodejs:nodejs.Http.http::createServer(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1521
1521
|
"clrName": "createServer",
|
|
1522
1522
|
"metadataToken": 100665170,
|
|
1523
|
-
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1524
|
-
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1523
|
+
"canonicalSignature": "(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server",
|
|
1524
|
+
"normalizedSignature": "createServer|(System.Action_2[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null],[nodejs.Http.ServerResponse,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.Server|static=true",
|
|
1525
1525
|
"emitScope": "ClassSurface",
|
|
1526
1526
|
"provenance": "Original",
|
|
1527
1527
|
"arity": 0,
|
|
@@ -1537,11 +1537,11 @@
|
|
|
1537
1537
|
"isExtensionMethod": false
|
|
1538
1538
|
},
|
|
1539
1539
|
{
|
|
1540
|
-
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1540
|
+
"stableId": "nodejs:nodejs.Http.http::request(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1541
1541
|
"clrName": "request",
|
|
1542
1542
|
"metadataToken": 100665171,
|
|
1543
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1544
|
-
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1543
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1544
|
+
"normalizedSignature": "request|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1545
1545
|
"emitScope": "ClassSurface",
|
|
1546
1546
|
"provenance": "Original",
|
|
1547
1547
|
"arity": 0,
|
|
@@ -1557,11 +1557,11 @@
|
|
|
1557
1557
|
"isExtensionMethod": false
|
|
1558
1558
|
},
|
|
1559
1559
|
{
|
|
1560
|
-
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1560
|
+
"stableId": "nodejs:nodejs.Http.http::request(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1561
1561
|
"clrName": "request",
|
|
1562
1562
|
"metadataToken": 100665172,
|
|
1563
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1564
|
-
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1563
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1564
|
+
"normalizedSignature": "request|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1565
1565
|
"emitScope": "ClassSurface",
|
|
1566
1566
|
"provenance": "Original",
|
|
1567
1567
|
"arity": 0,
|
|
@@ -1577,11 +1577,11 @@
|
|
|
1577
1577
|
"isExtensionMethod": false
|
|
1578
1578
|
},
|
|
1579
1579
|
{
|
|
1580
|
-
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1580
|
+
"stableId": "nodejs:nodejs.Http.http::get(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1581
1581
|
"clrName": "get",
|
|
1582
1582
|
"metadataToken": 100665173,
|
|
1583
|
-
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1584
|
-
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1583
|
+
"canonicalSignature": "(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1584
|
+
"normalizedSignature": "get|(System.String,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1585
1585
|
"emitScope": "ClassSurface",
|
|
1586
1586
|
"provenance": "Original",
|
|
1587
1587
|
"arity": 0,
|
|
@@ -1597,11 +1597,11 @@
|
|
|
1597
1597
|
"isExtensionMethod": false
|
|
1598
1598
|
},
|
|
1599
1599
|
{
|
|
1600
|
-
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1600
|
+
"stableId": "nodejs:nodejs.Http.http::get(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1601
1601
|
"clrName": "get",
|
|
1602
1602
|
"metadataToken": 100665174,
|
|
1603
|
-
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1604
|
-
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.
|
|
1603
|
+
"canonicalSignature": "(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest",
|
|
1604
|
+
"normalizedSignature": "get|(nodejs.Http.RequestOptions,System.Action_1[[nodejs.Http.IncomingMessage,nodejs,Version=1.0.1.0,Culture=neutral,PublicKeyToken=null]]):nodejs.Http.ClientRequest|static=true",
|
|
1605
1605
|
"emitScope": "ClassSurface",
|
|
1606
1606
|
"provenance": "Original",
|
|
1607
1607
|
"arity": 0,
|
|
@@ -99,7 +99,8 @@ export interface RequestOptions$instance {
|
|
|
99
99
|
set path(value: string | undefined);
|
|
100
100
|
port: int;
|
|
101
101
|
protocol: string;
|
|
102
|
-
timeout: Nullable_1<System_Internal.Int32>;
|
|
102
|
+
get timeout(): Nullable_1<System_Internal.Int32>;
|
|
103
|
+
set timeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
103
104
|
}
|
|
104
105
|
|
|
105
106
|
|
|
@@ -178,7 +179,8 @@ export const TypeError: {
|
|
|
178
179
|
export type TypeError = TypeError$instance;
|
|
179
180
|
|
|
180
181
|
export abstract class http$instance {
|
|
181
|
-
static globalAgent_maxSockets: Nullable_1<System_Internal.Int32>;
|
|
182
|
+
static get globalAgent_maxSockets(): Nullable_1<System_Internal.Int32>;
|
|
183
|
+
static set globalAgent_maxSockets(value: Nullable_1<System_Internal.Int32> | int);
|
|
182
184
|
static globalAgent_maxFreeSockets: int;
|
|
183
185
|
static globalAgent_timeout: int;
|
|
184
186
|
static maxHeaderSize: int;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/nodejs",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.31",
|
|
4
4
|
"description": "TypeScript type definitions for Node.js CLR library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/nodejs.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/dotnet": "10.0.
|
|
23
|
-
"@tsonic/core": "10.0.
|
|
22
|
+
"@tsonic/dotnet": "10.0.31",
|
|
23
|
+
"@tsonic/core": "10.0.31"
|
|
24
24
|
}
|
|
25
25
|
}
|