diff --git a/.bazelrc b/.bazelrc index 44d3756e4be..71c954c2b0b 100644 --- a/.bazelrc +++ b/.bazelrc @@ -12,6 +12,9 @@ common --override_module=semmle_code=%workspace%/misc/bazel/semmle_code_stub build --repo_env=CC=clang --repo_env=CXX=clang++ +# print test output, like sembuild does. +# Set to `errors` if this is too verbose. +test --test_output all # we use transitions that break builds of `...`, so for `test` to work with that we need the following test --build_tests_only diff --git a/Cargo.lock b/Cargo.lock index 9e30973bcb6..48aa23d25ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -415,7 +415,6 @@ dependencies = [ "figment", "glob", "itertools 0.14.0", - "log 0.4.22", "num-traits", "ra_ap_base_db", "ra_ap_cfg", @@ -435,8 +434,10 @@ dependencies = [ "serde", "serde_json", "serde_with", - "stderrlog", "toml", + "tracing", + "tracing-flame", + "tracing-subscriber", "triomphe", ] @@ -800,12 +801,6 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" -[[package]] -name = "hermit-abi" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" - [[package]] name = "hex" version = "0.4.3" @@ -898,17 +893,6 @@ dependencies = [ "libc", ] -[[package]] -name = "is-terminal" -version = "0.4.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b" -dependencies = [ - "hermit-abi 0.4.0", - "libc", - "windows-sys 0.52.0", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.1" @@ -1165,7 +1149,7 @@ version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.3.9", + "hermit-abi", "libc", ] @@ -2190,19 +2174,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" -[[package]] -name = "stderrlog" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c910772f992ab17d32d6760e167d2353f4130ed50e796752689556af07dc6b" -dependencies = [ - "chrono", - "is-terminal", - "log 0.4.22", - "termcolor", - "thread_local", -] - [[package]] name = "streaming-iterator" version = "0.1.9" @@ -2237,15 +2208,6 @@ dependencies = [ "syn", ] -[[package]] -name = "termcolor" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -dependencies = [ - "winapi-util", -] - [[package]] name = "text-size" version = "1.1.1" @@ -2379,6 +2341,17 @@ dependencies = [ "valuable", ] +[[package]] +name = "tracing-flame" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bae117ee14789185e129aaee5d93750abe67fdc5a9a62650452bfe4e122a3a9" +dependencies = [ + "lazy_static", + "tracing", + "tracing-subscriber", +] + [[package]] name = "tracing-log" version = "0.2.0" diff --git a/MODULE.bazel b/MODULE.bazel index 8de37e006bb..427f450e7fc 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -14,7 +14,7 @@ local_path_override( # see https://registry.bazel.build/ for a list of available packages -bazel_dep(name = "platforms", version = "0.0.10") +bazel_dep(name = "platforms", version = "0.0.11") bazel_dep(name = "rules_go", version = "0.50.1") bazel_dep(name = "rules_pkg", version = "1.0.1") bazel_dep(name = "rules_nodejs", version = "6.2.0-codeql.1") @@ -28,7 +28,7 @@ bazel_dep(name = "rules_kotlin", version = "2.0.0-codeql.1") bazel_dep(name = "gazelle", version = "0.40.0") bazel_dep(name = "rules_dotnet", version = "0.17.4") bazel_dep(name = "googletest", version = "1.14.0.bcr.1") -bazel_dep(name = "rules_rust", version = "0.52.2") +bazel_dep(name = "rules_rust", version = "0.57.1") bazel_dep(name = "zstd", version = "1.5.5.bcr.1") bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True) @@ -53,29 +53,17 @@ use_repo(rust, "rust_toolchains") register_toolchains("@rust_toolchains//:all") -rust_host_tools = use_extension("@rules_rust//rust:extensions.bzl", "rust_host_tools") - -# Don't download a second toolchain as host toolchain, make sure this is the same version as above -# The host toolchain is used for vendoring dependencies. -rust_host_tools.host_tools( - edition = RUST_EDITION, - version = RUST_VERSION, -) - # deps for python extractor # keep in sync by running `misc/bazel/3rdparty/update_cargo_deps.sh` py_deps = use_extension("//misc/bazel/3rdparty:py_deps_extension.bzl", "p") use_repo( py_deps, - "vendor__anyhow-1.0.44", - "vendor__cc-1.0.70", - "vendor__clap-2.33.3", - "vendor__regex-1.5.5", - "vendor__smallvec-1.6.1", - "vendor__string-interner-0.12.2", - "vendor__thiserror-1.0.29", - "vendor__tree-sitter-0.20.4", - "vendor__tree-sitter-graph-0.7.0", + "vendor_py__anyhow-1.0.95", + "vendor_py__cc-1.2.14", + "vendor_py__clap-4.5.30", + "vendor_py__regex-1.11.1", + "vendor_py__tree-sitter-0.20.4", + "vendor_py__tree-sitter-graph-0.7.0", ) # deps for ruby+rust @@ -96,7 +84,6 @@ use_repo( "vendor__globset-0.4.15", "vendor__itertools-0.14.0", "vendor__lazy_static-1.5.0", - "vendor__log-0.4.22", "vendor__mustache-0.9.0", "vendor__num-traits-0.2.19", "vendor__num_cpus-1.16.0", @@ -123,10 +110,10 @@ use_repo( "vendor__serde-1.0.217", "vendor__serde_json-1.0.135", "vendor__serde_with-3.12.0", - "vendor__stderrlog-0.6.0", "vendor__syn-2.0.96", "vendor__toml-0.8.19", "vendor__tracing-0.1.41", + "vendor__tracing-flame-0.2.0", "vendor__tracing-subscriber-0.3.19", "vendor__tree-sitter-0.24.6", "vendor__tree-sitter-embedded-template-0.23.2", @@ -252,7 +239,7 @@ use_repo( ) go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk") -go_sdk.download(version = "1.23.1") +go_sdk.download(version = "1.24.0") go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") go_deps.from_file(go_mod = "//go/extractor:go.mod") diff --git a/actions/ql/lib/CHANGELOG.md b/actions/ql/lib/CHANGELOG.md index ddc9ef77e02..c5829269bf4 100644 --- a/actions/ql/lib/CHANGELOG.md +++ b/actions/ql/lib/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.3 + +### New Features + +* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). + ## 0.4.2 ### Bug Fixes diff --git a/actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md b/actions/ql/lib/change-notes/released/0.4.3.md similarity index 95% rename from actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md rename to actions/ql/lib/change-notes/released/0.4.3.md index ecffb9cf131..adfe281e1c3 100644 --- a/actions/ql/lib/change-notes/2025-01-07-trusted-owner-ext.md +++ b/actions/ql/lib/change-notes/released/0.4.3.md @@ -1,4 +1,5 @@ ---- -category: feature ---- -* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). \ No newline at end of file +## 0.4.3 + +### New Features + +* The "Unpinned tag for a non-immutable Action in workflow" query (`actions/unpinned-tag`) now supports expanding the trusted action owner list using data extensions (`extensible: trustedActionsOwnerDataModel`). If you trust an Action publisher, you can include the owner name/organization in a model pack to add it to the allow list for this query. This addition will prevent security alerts when using unpinned tags for Actions published by that owner. For more information on creating a model pack, see [Creating a CodeQL Model Pack](https://docs.github.com/en/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#creating-a-codeql-model-pack). diff --git a/actions/ql/lib/codeql-pack.release.yml b/actions/ql/lib/codeql-pack.release.yml index 94c5b17423c..1ec9c4ea5d9 100644 --- a/actions/ql/lib/codeql-pack.release.yml +++ b/actions/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.2 +lastReleaseVersion: 0.4.3 diff --git a/actions/ql/lib/qlpack.yml b/actions/ql/lib/qlpack.yml index 2392397c0a3..2a5ca8a5fff 100644 --- a/actions/ql/lib/qlpack.yml +++ b/actions/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-all -version: 0.4.3-dev +version: 0.4.4-dev library: true warnOnImplicitThis: true dependencies: diff --git a/actions/ql/src/CHANGELOG.md b/actions/ql/src/CHANGELOG.md index 02c0e793c97..58690da3f48 100644 --- a/actions/ql/src/CHANGELOG.md +++ b/actions/ql/src/CHANGELOG.md @@ -1,3 +1,29 @@ +## 0.5.0 + +### Breaking Changes + +* The following queries have been removed from the `code-scanning` and `security-extended` suites. + Any existing alerts for these queries will be closed automatically. + * `actions/if-expression-always-true/critical` + * `actions/if-expression-always-true/high` + * `actions/unnecessary-use-of-advanced-config` + +* The following query has been moved from the `code-scanning` suite to the `security-extended` + suite. Any existing alerts for this query will be closed automatically unless the analysis is + configured to use the `security-extended` suite. + * `actions/unpinned-tag` +* The following queries have been added to the `security-extended` suite. + * `actions/unversioned-immutable-action` + * `actions/envpath-injection/medium` + * `actions/envvar-injection/medium` + * `actions/code-injection/medium` + * `actions/artifact-poisoning/medium` + * `actions/untrusted-checkout/medium` + +### Minor Analysis Improvements + +* Fixed false positives in the query `actions/unpinned-tag` (CWE-829), which will no longer flag uses of Docker-based GitHub actions pinned by the container's SHA256 digest. + ## 0.4.2 No user-facing changes. diff --git a/actions/ql/src/Security/CWE-829/UnpinnedActionsTag.ql b/actions/ql/src/Security/CWE-829/UnpinnedActionsTag.ql index 4c4480d8ad1..c8512e5a1c0 100644 --- a/actions/ql/src/Security/CWE-829/UnpinnedActionsTag.ql +++ b/actions/ql/src/Security/CWE-829/UnpinnedActionsTag.ql @@ -23,6 +23,14 @@ private predicate isTrustedOwner(string nwo) { trustedActionsOwnerDataModel(nwo.substring(0, nwo.indexOf("/"))) } +bindingset[version] +private predicate isPinnedContainer(string version) { + version.regexpMatch("^sha256:[A-Fa-f0-9]{64}$") +} + +bindingset[nwo] +private predicate isContainerImage(string nwo) { nwo.regexpMatch("^docker://.+") } + from UsesStep uses, string nwo, string version, Workflow workflow, string name where uses.getCallee() = nwo and @@ -34,7 +42,7 @@ where ) and uses.getVersion() = version and not isTrustedOwner(nwo) and - not isPinnedCommit(version) and + not (if isContainerImage(nwo) then isPinnedContainer(version) else isPinnedCommit(version)) and not isImmutableAction(uses, nwo) select uses.getCalleeNode(), "Unpinned 3rd party Action '" + name + "' step $@ uses '" + nwo + "' with ref '" + version + diff --git a/actions/ql/src/change-notes/2025-02-06-curate-suites.md b/actions/ql/src/change-notes/released/0.5.0.md similarity index 78% rename from actions/ql/src/change-notes/2025-02-06-curate-suites.md rename to actions/ql/src/change-notes/released/0.5.0.md index 8845e52f8f5..a508c8c09b3 100644 --- a/actions/ql/src/change-notes/2025-02-06-curate-suites.md +++ b/actions/ql/src/change-notes/released/0.5.0.md @@ -1,6 +1,7 @@ ---- -category: breaking ---- +## 0.5.0 + +### Breaking Changes + * The following queries have been removed from the `code-scanning` and `security-extended` suites. Any existing alerts for these queries will be closed automatically. * `actions/if-expression-always-true/critical` @@ -18,3 +19,7 @@ category: breaking * `actions/code-injection/medium` * `actions/artifact-poisoning/medium` * `actions/untrusted-checkout/medium` + +### Minor Analysis Improvements + +* Fixed false positives in the query `actions/unpinned-tag` (CWE-829), which will no longer flag uses of Docker-based GitHub actions pinned by the container's SHA256 digest. diff --git a/actions/ql/src/codeql-pack.release.yml b/actions/ql/src/codeql-pack.release.yml index 94c5b17423c..30e271c5361 100644 --- a/actions/ql/src/codeql-pack.release.yml +++ b/actions/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 0.4.2 +lastReleaseVersion: 0.5.0 diff --git a/actions/ql/src/qlpack.yml b/actions/ql/src/qlpack.yml index d7575be7f77..7777783bfad 100644 --- a/actions/ql/src/qlpack.yml +++ b/actions/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/actions-queries -version: 0.4.3-dev +version: 0.5.1-dev library: false warnOnImplicitThis: true groups: [actions, queries] diff --git a/actions/ql/test/query-tests/Security/CWE-829/.github/workflows/unpinned_tags.yml b/actions/ql/test/query-tests/Security/CWE-829/.github/workflows/unpinned_tags.yml index 992686fb5aa..f204816eed4 100644 --- a/actions/ql/test/query-tests/Security/CWE-829/.github/workflows/unpinned_tags.yml +++ b/actions/ql/test/query-tests/Security/CWE-829/.github/workflows/unpinned_tags.yml @@ -9,3 +9,5 @@ jobs: - uses: foo/bar - uses: foo/bar@v1 - uses: foo/bar@25b062c917b0c75f8b47d8469aff6c94ffd89abb + - uses: docker://foo/bar@latest + - uses: docker://foo/bar@sha256:887a259a5a534f3c4f36cb02dca341673c6089431057242cdc931e9f133147e9 diff --git a/actions/ql/test/query-tests/Security/CWE-829/UnpinnedActionsTag.expected b/actions/ql/test/query-tests/Security/CWE-829/UnpinnedActionsTag.expected index 848962e26bd..ed35f154617 100644 --- a/actions/ql/test/query-tests/Security/CWE-829/UnpinnedActionsTag.expected +++ b/actions/ql/test/query-tests/Security/CWE-829/UnpinnedActionsTag.expected @@ -32,3 +32,4 @@ | .github/workflows/test17.yml:20:21:20:63 | sonarsource/sonarcloud-github-action@master | Unpinned 3rd party Action 'Sonar' step $@ uses 'sonarsource/sonarcloud-github-action' with ref 'master', not a pinned commit hash | .github/workflows/test17.yml:19:15:23:58 | Uses Step | Uses Step | | .github/workflows/test18.yml:37:21:37:63 | sonarsource/sonarcloud-github-action@master | Unpinned 3rd party Action 'Sonar' step $@ uses 'sonarsource/sonarcloud-github-action' with ref 'master', not a pinned commit hash | .github/workflows/test18.yml:36:15:40:58 | Uses Step | Uses Step | | .github/workflows/unpinned_tags.yml:10:13:10:22 | foo/bar@v1 | Unpinned 3rd party Action 'unpinned_tags.yml' step $@ uses 'foo/bar' with ref 'v1', not a pinned commit hash | .github/workflows/unpinned_tags.yml:10:7:11:4 | Uses Step | Uses Step | +| .github/workflows/unpinned_tags.yml:12:13:12:35 | docker://foo/bar@latest | Unpinned 3rd party Action 'unpinned_tags.yml' step $@ uses 'docker://foo/bar' with ref 'latest', not a pinned commit hash | .github/workflows/unpinned_tags.yml:12:7:13:4 | Uses Step | Uses Step | diff --git a/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected b/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected index 365e9c823fa..5d7a94aead0 100644 --- a/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected +++ b/actions/ql/test/query-tests/Security/CWE-829/UntrustedCheckoutCritical.expected @@ -299,7 +299,9 @@ edges | .github/workflows/test.yml:14:9:25:6 | Run Step | .github/workflows/test.yml:25:9:33:6 | Run Step | | .github/workflows/test.yml:25:9:33:6 | Run Step | .github/workflows/test.yml:33:9:37:34 | Run Step | | .github/workflows/unpinned_tags.yml:9:7:10:4 | Uses Step | .github/workflows/unpinned_tags.yml:10:7:11:4 | Uses Step | -| .github/workflows/unpinned_tags.yml:10:7:11:4 | Uses Step | .github/workflows/unpinned_tags.yml:11:7:11:61 | Uses Step | +| .github/workflows/unpinned_tags.yml:10:7:11:4 | Uses Step | .github/workflows/unpinned_tags.yml:11:7:12:4 | Uses Step | +| .github/workflows/unpinned_tags.yml:11:7:12:4 | Uses Step | .github/workflows/unpinned_tags.yml:12:7:13:4 | Uses Step | +| .github/workflows/unpinned_tags.yml:12:7:13:4 | Uses Step | .github/workflows/unpinned_tags.yml:13:7:13:101 | Uses Step | | .github/workflows/untrusted_checkout2.yml:7:9:14:6 | Run Step: pr_number | .github/workflows/untrusted_checkout2.yml:14:9:19:72 | Run Step | | .github/workflows/untrusted_checkout3.yml:11:9:12:6 | Uses Step | .github/workflows/untrusted_checkout3.yml:12:9:13:6 | Uses Step | | .github/workflows/untrusted_checkout3.yml:12:9:13:6 | Uses Step | .github/actions/dangerous-git-checkout/action.yml:6:7:11:4 | Uses Step | diff --git a/cpp/ql/lib/CHANGELOG.md b/cpp/ql/lib/CHANGELOG.md index 0d224483825..ad800292195 100644 --- a/cpp/ql/lib/CHANGELOG.md +++ b/cpp/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.0.1 + +No user-facing changes. + ## 4.0.0 ### Breaking Changes diff --git a/cpp/ql/lib/change-notes/released/4.0.1.md b/cpp/ql/lib/change-notes/released/4.0.1.md new file mode 100644 index 00000000000..e04e687f6e4 --- /dev/null +++ b/cpp/ql/lib/change-notes/released/4.0.1.md @@ -0,0 +1,3 @@ +## 4.0.1 + +No user-facing changes. diff --git a/cpp/ql/lib/codeql-pack.release.yml b/cpp/ql/lib/codeql-pack.release.yml index 49fe3eef697..c0db4dcc0b3 100644 --- a/cpp/ql/lib/codeql-pack.release.yml +++ b/cpp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.0.1 diff --git a/cpp/ql/lib/qlpack.yml b/cpp/ql/lib/qlpack.yml index f9b07e13a99..6d862ce68cf 100644 --- a/cpp/ql/lib/qlpack.yml +++ b/cpp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-all -version: 4.0.1-dev +version: 4.0.2-dev groups: cpp dbscheme: semmlecode.cpp.dbscheme extractor: cpp diff --git a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll index d6b4bb8c86e..c169567e8b5 100644 --- a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll +++ b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll @@ -1765,14 +1765,14 @@ module IteratorFlow { * Note: Unlike `def.getAnUltimateDefinition()` this predicate also * traverses back through iterator increment and decrement operations. */ - private Ssa::Def getAnUltimateDefinition(Ssa::Def def) { + private Ssa::DefinitionExt getAnUltimateDefinition(Ssa::DefinitionExt def) { result = def.getAnUltimateDefinition() or exists(IRBlock bb, int i, IteratorCrementCall crementCall, Ssa::SourceVariable sv | crementCall = def.getValue().asInstruction().(StoreInstruction).getSourceValue() and sv = def.getSourceVariable() and bb.getInstruction(i) = crementCall and - Ssa::ssaDefReachesReadExt(sv, result.asDef(), bb, i) + Ssa::ssaDefReachesReadExt(sv, result, bb, i) ) } @@ -1800,13 +1800,13 @@ module IteratorFlow { GetsIteratorCall beginCall, Instruction writeToDeref ) { exists( - StoreInstruction beginStore, IRBlock bbStar, int iStar, Ssa::Def def, - IteratorPointerDereferenceCall starCall, Ssa::Def ultimate, Operand address + StoreInstruction beginStore, IRBlock bbStar, int iStar, Ssa::DefinitionExt def, + IteratorPointerDereferenceCall starCall, Ssa::DefinitionExt ultimate, Operand address | isIteratorWrite(writeToDeref, address) and operandForFullyConvertedCall(address, starCall) and bbStar.getInstruction(iStar) = starCall and - Ssa::ssaDefReachesReadExt(_, def.asDef(), bbStar, iStar) and + Ssa::ssaDefReachesReadExt(_, def, bbStar, iStar) and ultimate = getAnUltimateDefinition*(def) and beginStore = ultimate.getValue().asInstruction() and operandForFullyConvertedCall(beginStore.getSourceValueOperand(), beginCall) diff --git a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll index df239cc6cc4..c9e2a713621 100644 --- a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll +++ b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll @@ -842,18 +842,11 @@ class InitialGlobalValue extends Node, TInitialGlobalValue { result.asSourceCallable() = this.getFunction() } - override Declaration getFunction() { result = globalDef.getIRFunction().getFunction() } + override Declaration getFunction() { result = globalDef.getFunction() } final override predicate isGLValue() { globalDef.getIndirectionIndex() = 0 } - override DataFlowType getType() { - exists(DataFlowType type | - type = globalDef.getUnderlyingType() and - if this.isGLValue() - then result = type - else result = getTypeImpl(type, globalDef.getIndirectionIndex() - 1) - ) - } + override DataFlowType getType() { result = globalDef.getUnderlyingType() } final override Location getLocationImpl() { result = globalDef.getLocation() } @@ -1312,7 +1305,7 @@ class UninitializedNode extends Node { LocalVariable v; UninitializedNode() { - exists(Ssa::Def def, Ssa::SourceVariable sv | + exists(Ssa::DefinitionExt def, Ssa::SourceVariable sv | def.getIndirectionIndex() = 0 and def.getValue().asInstruction() instanceof UninitializedInstruction and Ssa::defToNode(this, def, sv, _, _, _) and @@ -2299,7 +2292,7 @@ class ContentSet instanceof Content { pragma[nomagic] private predicate guardControlsPhiInput( - IRGuardCondition g, boolean branch, Ssa::Definition def, IRBlock input, Ssa::PhiNode phi + IRGuardCondition g, boolean branch, Ssa::DefinitionExt def, IRBlock input, Ssa::PhiNode phi ) { phi.hasInputFromBlock(def, _, _, _, input) and ( diff --git a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternals.qll b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternals.qll index 1ad6701cbf6..77e6e8590ce 100644 --- a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternals.qll +++ b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternals.qll @@ -225,10 +225,16 @@ abstract class DefImpl extends TDefImpl { ) } + /** + * Holds if this definition is guaranteed to totally overwrite the + * destination buffer. + */ abstract predicate isCertain(); + /** Gets the value written to the destination variable by this definition. */ abstract Node0Impl getValue(); + /** Gets the operand that represents the address of this definition, if any. */ Operand getAddressOperand() { none() } } @@ -691,8 +697,10 @@ predicate outNodeHasAddressAndIndex( * * Holds if `node` is the node that corresponds to the definition of `def`. */ -predicate defToNode(Node node, Def def, SourceVariable sv, IRBlock bb, int i, boolean uncertain) { - def.hasIndexInBlock(bb, i, sv) and +predicate defToNode( + Node node, DefinitionExt def, SourceVariable sv, IRBlock bb, int i, boolean uncertain +) { + def.definesAt(sv, bb, i, _) and ( nodeHasOperand(node, def.getValue().asOperand(), def.getIndirectionIndex()) or @@ -1057,7 +1065,7 @@ module SsaCached { } cached - Definition phiHasInputFromBlockExt(PhiNode phi, IRBlock bb) { + DefinitionExt phiHasInputFromBlockExt(PhiNode phi, IRBlock bb) { SsaImpl::phiHasInputFromBlockExt(phi, result, bb) } @@ -1071,157 +1079,24 @@ module SsaCached { predicate variableWrite = SsaInput::variableWrite/4; } -cached -private newtype TSsaDef = - TDef(DefinitionExt def) or - TPhi(PhiNode phi) - -abstract private class SsaDef extends TSsaDef { - /** Gets a textual representation of this element. */ - string toString() { none() } - - /** Gets the underlying non-phi definition or use. */ - DefinitionExt asDef() { none() } - - /** Gets the underlying phi node. */ - PhiNode asPhi() { none() } - - /** Gets the location of this element. */ - abstract Location getLocation(); -} - -abstract class Def extends SsaDef, TDef { - DefinitionExt def; - - Def() { this = TDef(def) } - - final override DefinitionExt asDef() { result = def } - - /** Gets the source variable underlying this SSA definition. */ - final SourceVariable getSourceVariable() { result = def.getSourceVariable() } - - override string toString() { result = def.toString() } - - /** - * Holds if this definition (or use) has index `index` in block `block`, - * and is a definition (or use) of the variable `sv`. - */ - predicate hasIndexInBlock(IRBlock block, int index, SourceVariable sv) { - def.definesAt(sv, block, index, _) - } - - /** Gets the value written by this definition, if any. */ - Node0Impl getValue() { none() } - - /** - * Holds if this definition is guaranteed to overwrite the entire - * destination's allocation. - */ - abstract predicate isCertain(); - - /** Gets the address operand written to by this definition. */ - Operand getAddressOperand() { none() } - - /** Gets the address written to by this definition. */ - final Instruction getAddress() { result = this.getAddressOperand().getDef() } - - /** Gets the indirection index of this definition. */ - abstract int getIndirectionIndex(); - - /** - * Gets the indirection level that this definition is writing to. - * For instance, `x = y` is a definition of `x` at indirection level 1 and - * `*x = y` is a definition of `x` at indirection level 2. - */ - abstract int getIndirection(); - - /** - * Gets a definition that ultimately defines this SSA definition and is not - * itself a phi node. - */ - Def getAnUltimateDefinition() { result.asDef() = def.getAnUltimateDefinition() } -} - -private predicate isGlobal(DefinitionExt def, GlobalDefImpl global) { +/** Gets the `DefImpl` corresponding to `def`. */ +private DefImpl getDefImpl(SsaImpl::DefinitionExt def) { exists(SourceVariable sv, IRBlock bb, int i | def.definesAt(sv, bb, i, _) and - global.hasIndexInBlock(bb, i, sv) + result.hasIndexInBlock(bb, i, sv) ) } -private class NonGlobalDef extends Def { - NonGlobalDef() { not isGlobal(def, _) } +class GlobalDef extends DefinitionExt { + GlobalDefImpl impl; - final override Location getLocation() { result = this.getImpl().getLocation() } - - private DefImpl getImpl() { - exists(SourceVariable sv, IRBlock bb, int i | - this.hasIndexInBlock(bb, i, sv) and - result.hasIndexInBlock(bb, i, sv) - ) - } - - override Node0Impl getValue() { result = this.getImpl().getValue() } - - override predicate isCertain() { this.getImpl().isCertain() } - - override Operand getAddressOperand() { result = this.getImpl().getAddressOperand() } - - override int getIndirectionIndex() { result = this.getImpl().getIndirectionIndex() } - - override int getIndirection() { result = this.getImpl().getIndirection() } -} - -class GlobalDef extends Def { - GlobalDefImpl global; - - GlobalDef() { isGlobal(def, global) } - - /** Gets a textual representation of this definition. */ - override string toString() { result = global.toString() } - - final override Location getLocation() { result = global.getLocation() } + GlobalDef() { impl = getDefImpl(this) } /** - * Gets the type of this definition after specifiers have been deeply stripped - * and typedefs have been resolved. + * Gets the global (or `static` local) variable written to by this SSA + * definition. */ - DataFlowType getUnspecifiedType() { result = global.getUnspecifiedType() } - - /** - * Gets the type of this definition, after typedefs have been resolved. - */ - DataFlowType getUnderlyingType() { result = global.getUnderlyingType() } - - /** Gets the `IRFunction` whose body is evaluated after this definition. */ - IRFunction getIRFunction() { result = global.getIRFunction() } - - /** Gets the global variable associated with this definition. */ - GlobalLikeVariable getVariable() { result = global.getVariable() } - - override predicate isCertain() { any() } - - final override int getIndirectionIndex() { result = global.getIndirectionIndex() } - - final override int getIndirection() { result = global.getIndirection() } -} - -class Phi extends TPhi, SsaDef { - PhiNode phi; - - Phi() { this = TPhi(phi) } - - final override PhiNode asPhi() { result = phi } - - final override Location getLocation() { result = phi.getBasicBlock().getLocation() } - - override string toString() { result = phi.toString() } - - SsaPhiInputNode getNode(IRBlock block) { result.getPhiNode() = phi and result.getBlock() = block } - - predicate hasInputFromBlock(Definition inp, IRBlock bb) { inp = phiHasInputFromBlockExt(phi, bb) } - - final Definition getAnInput() { this.hasInputFromBlock(result, _) } + GlobalLikeVariable getVariable() { result = impl.getVariable() } } private module SsaImpl = SsaImplCommon::Make; @@ -1259,12 +1134,12 @@ class PhiNode extends SsaImpl::DefinitionExt { } /** Gets a definition that is an input to this phi node. */ - final Definition getAnInput() { this.hasInputFromBlock(result, _, _, _, _) } + final DefinitionExt getAnInput() { this.hasInputFromBlock(result, _, _, _, _) } } /** An static single assignment (SSA) definition. */ class DefinitionExt extends SsaImpl::DefinitionExt { - private Definition getAPhiInputOrPriorDefinition() { result = this.(PhiNode).getAnInput() } + private DefinitionExt getAPhiInputOrPriorDefinition() { result = this.(PhiNode).getAnInput() } /** * Gets a definition that ultimately defines this SSA definition and is @@ -1275,6 +1150,37 @@ class DefinitionExt extends SsaImpl::DefinitionExt { not result instanceof PhiNode } + /** + * INTERNAL: Do not use. + */ + Node0Impl getValue() { result = getDefImpl(this).getValue() } + + /** Gets the indirection index of this definition. */ + int getIndirectionIndex() { result = getDefImpl(this).getIndirectionIndex() } + + /** Gets the indirection of this definition. */ + int getIndirection() { result = getDefImpl(this).getIndirection() } + + /** + * Holds if this definition is guaranteed to totally overwrite the buffer + * being written to. + */ + predicate isCertain() { getDefImpl(this).isCertain() } + + /** + * Gets the enclosing declaration of this definition. + * + * Note that this may be a variable when this definition defines a global, or + * a static local, variable. + */ + Declaration getFunction() { result = getDefImpl(this).getBlock().getEnclosingFunction() } + + /** Gets the underlying type of the variable being defined by this definition. */ + Type getUnderlyingType() { result = this.getSourceVariable().getType() } + + /** Gets the unspecified type of the variable being defined by this definition. */ + Type getUnspecifiedType() { result = this.getUnderlyingType().getUnspecifiedType() } + /** Gets a node that represents a read of this SSA definition. */ pragma[nomagic] Node getARead() { @@ -1286,6 +1192,4 @@ class DefinitionExt extends SsaImpl::DefinitionExt { } } -class Definition = SsaImpl::Definition; - import SsaCached diff --git a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternalsCommon.qll b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternalsCommon.qll index 52bb16b1f3c..5d8a9ebf9a6 100644 --- a/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternalsCommon.qll +++ b/cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/SsaInternalsCommon.qll @@ -769,8 +769,4 @@ module InputSigCommon { BasicBlock getImmediateBasicBlockDominator(BasicBlock bb) { result.immediatelyDominates(bb) } BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() } - - class ExitBasicBlock extends BasicBlock { - ExitBasicBlock() { this.getLastInstruction() instanceof ExitFunctionInstruction } - } } diff --git a/cpp/ql/src/CHANGELOG.md b/cpp/ql/src/CHANGELOG.md index 1a4c8b06180..21e9b2b6119 100644 --- a/cpp/ql/src/CHANGELOG.md +++ b/cpp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.4 + +No user-facing changes. + ## 1.3.3 ### Minor Analysis Improvements diff --git a/cpp/ql/src/change-notes/released/1.3.4.md b/cpp/ql/src/change-notes/released/1.3.4.md new file mode 100644 index 00000000000..5073aca7222 --- /dev/null +++ b/cpp/ql/src/change-notes/released/1.3.4.md @@ -0,0 +1,3 @@ +## 1.3.4 + +No user-facing changes. diff --git a/cpp/ql/src/codeql-pack.release.yml b/cpp/ql/src/codeql-pack.release.yml index eb1f7dabc84..8263ddf2c8b 100644 --- a/cpp/ql/src/codeql-pack.release.yml +++ b/cpp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.3.3 +lastReleaseVersion: 1.3.4 diff --git a/cpp/ql/src/qlpack.yml b/cpp/ql/src/qlpack.yml index f47caeb6b71..bcd94838675 100644 --- a/cpp/ql/src/qlpack.yml +++ b/cpp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/cpp-queries -version: 1.3.4-dev +version: 1.3.5-dev groups: - cpp - queries diff --git a/csharp/.vscode/launch.json b/csharp/.vscode/launch.json index 75a43a6f9aa..75d27e6708e 100644 --- a/csharp/.vscode/launch.json +++ b/csharp/.vscode/launch.json @@ -70,7 +70,8 @@ // Set the path to the folder that should be extracted: "cwd": "${workspaceFolder}/ql/test/library-tests/dataflow/local", "args": [ - "LocalDataFlow.cs" + "LocalDataFlow.cs", + "/r:System.Private.CoreLib.dll" ], "env": {}, "stopAtEntry": true, diff --git a/csharp/documentation/library-coverage/coverage.csv b/csharp/documentation/library-coverage/coverage.csv index 4e4034099f1..21bf90cae72 100644 --- a/csharp/documentation/library-coverage/coverage.csv +++ b/csharp/documentation/library-coverage/coverage.csv @@ -2,51 +2,45 @@ package,sink,source,summary,sink:code-injection,sink:encryption-decryptor,sink:e Amazon.Lambda.APIGatewayEvents,,6,,,,,,,,,,,,,,,,,6,,,, Amazon.Lambda.Core,10,,,,,,,,,,,10,,,,,,,,,,, Dapper,55,42,1,,,,,,,,,,55,,42,,,,,,,,1 -ILCompiler,,,123,,,,,,,,,,,,,,,,,,,79,44 -ILLink.RoslynAnalyzer,,,139,,,,,,,,,,,,,,,,,,,50,89 -ILLink.Shared,,,31,,,,,,,,,,,,,,,,,,,11,20 +ILCompiler,,,121,,,,,,,,,,,,,,,,,,,77,44 +ILLink.RoslynAnalyzer,,,107,,,,,,,,,,,,,,,,,,,31,76 +ILLink.Shared,,,37,,,,,,,,,,,,,,,,,,,11,26 ILLink.Tasks,,,5,,,,,,,,,,,,,,,,,,,4,1 Internal.IL,,,54,,,,,,,,,,,,,,,,,,,28,26 Internal.Pgo,,,9,,,,,,,,,,,,,,,,,,,2,7 -Internal.TypeSystem,,,329,,,,,,,,,,,,,,,,,,,201,128 -JsonToItemsTaskFactory,,,11,,,,,,,,,,,,,,,,,,,1,10 -Microsoft.Android.Build,,1,14,,,,,,,,,,,,,1,,,,,,12,2 -Microsoft.Apple.Build,,,7,,,,,,,,,,,,,,,,,,,7, +Internal.TypeSystem,,,345,,,,,,,,,,,,,,,,,,,205,140 Microsoft.ApplicationBlocks.Data,28,,,,,,,,,,,,28,,,,,,,,,, Microsoft.AspNetCore.Components,2,4,2,,,,,,,2,,,,,,,,,4,,,1,1 Microsoft.AspNetCore.Http,,,1,,,,,,,,,,,,,,,,,,,1, Microsoft.AspNetCore.Mvc,,,2,,,,,,,,,,,,,,,,,,,,2 Microsoft.AspNetCore.WebUtilities,,,2,,,,,,,,,,,,,,,,,,,2, Microsoft.CSharp,,,2,,,,,,,,,,,,,,,,,,,2, -Microsoft.Diagnostics.Tools.Pgo,,,25,,,,,,,,,,,,,,,,,,,2,23 -Microsoft.DotNet.Build.Tasks,,,10,,,,,,,,,,,,,,,,,,,8,2 +Microsoft.Diagnostics.Tools.Pgo,,,23,,,,,,,,,,,,,,,,,,,,23 +Microsoft.DotNet.Build.Tasks,,,11,,,,,,,,,,,,,,,,,,,9,2 Microsoft.DotNet.PlatformAbstractions,,,1,,,,,,,,,,,,,,,,,,,1, Microsoft.EntityFrameworkCore,6,,12,,,,,,,,,,6,,,,,,,,,,12 Microsoft.Extensions.Caching.Distributed,,,3,,,,,,,,,,,,,,,,,,,,3 Microsoft.Extensions.Caching.Memory,,,37,,,,,,,,,,,,,,,,,,,5,32 -Microsoft.Extensions.Configuration,,3,101,,,,,,,,,,,,,3,,,,,,29,72 -Microsoft.Extensions.DependencyInjection,,,202,,,,,,,,,,,,,,,,,,,15,187 -Microsoft.Extensions.DependencyModel,,1,16,,,,,,,,,,,,,1,,,,,,14,2 +Microsoft.Extensions.Configuration,,3,123,,,,,,,,,,,,,3,,,,,,40,83 +Microsoft.Extensions.DependencyInjection,,,209,,,,,,,,,,,,,,,,,,,15,194 +Microsoft.Extensions.DependencyModel,,1,57,,,,,,,,,,,,,1,,,,,,13,44 Microsoft.Extensions.Diagnostics.Metrics,,,14,,,,,,,,,,,,,,,,,,,1,13 -Microsoft.Extensions.FileProviders,,,17,,,,,,,,,,,,,,,,,,,7,10 -Microsoft.Extensions.FileSystemGlobbing,,,21,,,,,,,,,,,,,,,,,,,10,11 -Microsoft.Extensions.Hosting,,,58,,,,,,,,,,,,,,,,,,,29,29 +Microsoft.Extensions.FileProviders,,,18,,,,,,,,,,,,,,,,,,,8,10 +Microsoft.Extensions.FileSystemGlobbing,,,37,,,,,,,,,,,,,,,,,,,13,24 +Microsoft.Extensions.Hosting,,,61,,,,,,,,,,,,,,,,,,,29,32 Microsoft.Extensions.Http,,,9,,,,,,,,,,,,,,,,,,,7,2 -Microsoft.Extensions.Logging,,,91,,,,,,,,,,,,,,,,,,,25,66 -Microsoft.Extensions.Options,,,68,,,,,,,,,,,,,,,,,,,44,24 -Microsoft.Extensions.Primitives,,,73,,,,,,,,,,,,,,,,,,,67,6 -Microsoft.Interop,,,159,,,,,,,,,,,,,,,,,,,75,84 +Microsoft.Extensions.Logging,,,107,,,,,,,,,,,,,,,,,,,26,81 +Microsoft.Extensions.Options,,,174,,,,,,,,,,,,,,,,,,,48,126 +Microsoft.Extensions.Primitives,,,76,,,,,,,,,,,,,,,,,,,67,9 +Microsoft.Interop,,,216,,,,,,,,,,,,,,,,,,,71,145 Microsoft.JSInterop,2,,,,,,,,,,2,,,,,,,,,,,, Microsoft.NET.Build.Tasks,,,5,,,,,,,,,,,,,,,,,,,3,2 -Microsoft.NET.Sdk.WebAssembly,,,2,,,,,,,,,,,,,,,,,,,1,1 -Microsoft.NET.WebAssembly.Webcil,,,6,,,,,,,,,,,,,,,,,,,6, Microsoft.VisualBasic,,,13,,,,,,,,,,,,,,,,,,,1,12 -Microsoft.WebAssembly.Build.Tasks,,,9,,,,,,,,,,,,,,,,,,,8,1 Microsoft.Win32,,4,2,,,,,,,,,,,,,,,,,,4,,2 -Mono.Linker,,,293,,,,,,,,,,,,,,,,,,,145,148 +Mono.Linker,,,280,,,,,,,,,,,,,,,,,,,129,151 MySql.Data.MySqlClient,48,,,,,,,,,,,,48,,,,,,,,,, Newtonsoft.Json,,,91,,,,,,,,,,,,,,,,,,,73,18 ServiceStack,194,,7,27,,,,,75,,,,92,,,,,,,,,7, SourceGenerators,,,5,,,,,,,,,,,,,,,,,,,,5 -System,54,47,10864,,6,5,5,,,4,1,,33,2,,6,15,17,4,3,,5547,5317 +System,54,47,12241,,6,5,5,,,4,1,,33,2,,6,15,17,4,3,,5941,6300 Windows.Security.Cryptography.Core,1,,,,,,,1,,,,,,,,,,,,,,, diff --git a/csharp/documentation/library-coverage/coverage.rst b/csharp/documentation/library-coverage/coverage.rst index 9a975815d01..3288a1fbaa9 100644 --- a/csharp/documentation/library-coverage/coverage.rst +++ b/csharp/documentation/library-coverage/coverage.rst @@ -8,7 +8,7 @@ C# framework & library support Framework / library,Package,Flow sources,Taint & value steps,Sinks (total),`CWE-079` :sub:`Cross-site scripting` `ServiceStack `_,"``ServiceStack.*``, ``ServiceStack``",,7,194, - System,"``System.*``, ``System``",47,10864,54,5 - Others,"``Amazon.Lambda.APIGatewayEvents``, ``Amazon.Lambda.Core``, ``Dapper``, ``ILCompiler``, ``ILLink.RoslynAnalyzer``, ``ILLink.Shared``, ``ILLink.Tasks``, ``Internal.IL``, ``Internal.Pgo``, ``Internal.TypeSystem``, ``JsonToItemsTaskFactory``, ``Microsoft.Android.Build``, ``Microsoft.Apple.Build``, ``Microsoft.ApplicationBlocks.Data``, ``Microsoft.AspNetCore.Components``, ``Microsoft.AspNetCore.Http``, ``Microsoft.AspNetCore.Mvc``, ``Microsoft.AspNetCore.WebUtilities``, ``Microsoft.CSharp``, ``Microsoft.Diagnostics.Tools.Pgo``, ``Microsoft.DotNet.Build.Tasks``, ``Microsoft.DotNet.PlatformAbstractions``, ``Microsoft.EntityFrameworkCore``, ``Microsoft.Extensions.Caching.Distributed``, ``Microsoft.Extensions.Caching.Memory``, ``Microsoft.Extensions.Configuration``, ``Microsoft.Extensions.DependencyInjection``, ``Microsoft.Extensions.DependencyModel``, ``Microsoft.Extensions.Diagnostics.Metrics``, ``Microsoft.Extensions.FileProviders``, ``Microsoft.Extensions.FileSystemGlobbing``, ``Microsoft.Extensions.Hosting``, ``Microsoft.Extensions.Http``, ``Microsoft.Extensions.Logging``, ``Microsoft.Extensions.Options``, ``Microsoft.Extensions.Primitives``, ``Microsoft.Interop``, ``Microsoft.JSInterop``, ``Microsoft.NET.Build.Tasks``, ``Microsoft.NET.Sdk.WebAssembly``, ``Microsoft.NET.WebAssembly.Webcil``, ``Microsoft.VisualBasic``, ``Microsoft.WebAssembly.Build.Tasks``, ``Microsoft.Win32``, ``Mono.Linker``, ``MySql.Data.MySqlClient``, ``Newtonsoft.Json``, ``SourceGenerators``, ``Windows.Security.Cryptography.Core``",61,2075,152,4 - Totals,,108,12946,400,9 + System,"``System.*``, ``System``",47,12241,54,5 + Others,"``Amazon.Lambda.APIGatewayEvents``, ``Amazon.Lambda.Core``, ``Dapper``, ``ILCompiler``, ``ILLink.RoslynAnalyzer``, ``ILLink.Shared``, ``ILLink.Tasks``, ``Internal.IL``, ``Internal.Pgo``, ``Internal.TypeSystem``, ``Microsoft.ApplicationBlocks.Data``, ``Microsoft.AspNetCore.Components``, ``Microsoft.AspNetCore.Http``, ``Microsoft.AspNetCore.Mvc``, ``Microsoft.AspNetCore.WebUtilities``, ``Microsoft.CSharp``, ``Microsoft.Diagnostics.Tools.Pgo``, ``Microsoft.DotNet.Build.Tasks``, ``Microsoft.DotNet.PlatformAbstractions``, ``Microsoft.EntityFrameworkCore``, ``Microsoft.Extensions.Caching.Distributed``, ``Microsoft.Extensions.Caching.Memory``, ``Microsoft.Extensions.Configuration``, ``Microsoft.Extensions.DependencyInjection``, ``Microsoft.Extensions.DependencyModel``, ``Microsoft.Extensions.Diagnostics.Metrics``, ``Microsoft.Extensions.FileProviders``, ``Microsoft.Extensions.FileSystemGlobbing``, ``Microsoft.Extensions.Hosting``, ``Microsoft.Extensions.Http``, ``Microsoft.Extensions.Logging``, ``Microsoft.Extensions.Options``, ``Microsoft.Extensions.Primitives``, ``Microsoft.Interop``, ``Microsoft.JSInterop``, ``Microsoft.NET.Build.Tasks``, ``Microsoft.VisualBasic``, ``Microsoft.Win32``, ``Mono.Linker``, ``MySql.Data.MySqlClient``, ``Newtonsoft.Json``, ``SourceGenerators``, ``Windows.Security.Cryptography.Core``",60,2272,152,4 + Totals,,107,14520,400,9 diff --git a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md index 288181c929f..938e64917e4 100644 --- a/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.34 + +No user-facing changes. + ## 1.7.33 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md new file mode 100644 index 00000000000..c24a10514ad --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/lib/change-notes/released/1.7.34.md @@ -0,0 +1,3 @@ +## 1.7.34 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml index 80f613ab828..8b738878b2f 100644 --- a/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.33 +lastReleaseVersion: 1.7.34 diff --git a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml index 2a2b7f23397..fc9b5c3bdbe 100644 --- a/csharp/ql/campaigns/Solorigate/lib/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-all -version: 1.7.34-dev +version: 1.7.35-dev groups: - csharp - solorigate diff --git a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md index 288181c929f..938e64917e4 100644 --- a/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md +++ b/csharp/ql/campaigns/Solorigate/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.7.34 + +No user-facing changes. + ## 1.7.33 No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md new file mode 100644 index 00000000000..c24a10514ad --- /dev/null +++ b/csharp/ql/campaigns/Solorigate/src/change-notes/released/1.7.34.md @@ -0,0 +1,3 @@ +## 1.7.34 + +No user-facing changes. diff --git a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml index 80f613ab828..8b738878b2f 100644 --- a/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml +++ b/csharp/ql/campaigns/Solorigate/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.7.33 +lastReleaseVersion: 1.7.34 diff --git a/csharp/ql/campaigns/Solorigate/src/qlpack.yml b/csharp/ql/campaigns/Solorigate/src/qlpack.yml index fae71e15799..37b99a5d69d 100644 --- a/csharp/ql/campaigns/Solorigate/src/qlpack.yml +++ b/csharp/ql/campaigns/Solorigate/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-solorigate-queries -version: 1.7.34-dev +version: 1.7.35-dev groups: - csharp - solorigate diff --git a/csharp/ql/lib/CHANGELOG.md b/csharp/ql/lib/CHANGELOG.md index 211ce45f0ca..d85fe1d07ef 100644 --- a/csharp/ql/lib/CHANGELOG.md +++ b/csharp/ql/lib/CHANGELOG.md @@ -1,3 +1,18 @@ +## 5.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + +### Minor Analysis Improvements + +* Full support for C# 13 / .NET 9. All new language features are now supported by the extractor. QL library and data flow support for the new C# 13 language constructs and generated MaD models for the .NET 9 runtime. +* C# 13: Add generated models for .NET 9. +* The models for `System.Net.Http.HttpRequestMessage` and `System.UriBuilder` have been modified to better model the flow of tainted URIs. +* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. + ## 5.0.0 ### Breaking Changes diff --git a/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md b/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md deleted file mode 100644 index 00afc5867c6..00000000000 --- a/csharp/ql/lib/change-notes/2025-02-03-blazor-routing-parameters.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -category: minorAnalysis ---- -* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. diff --git a/csharp/ql/lib/change-notes/released/5.1.0.md b/csharp/ql/lib/change-notes/released/5.1.0.md new file mode 100644 index 00000000000..3bcb077946c --- /dev/null +++ b/csharp/ql/lib/change-notes/released/5.1.0.md @@ -0,0 +1,14 @@ +## 5.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + +### Minor Analysis Improvements + +* Full support for C# 13 / .NET 9. All new language features are now supported by the extractor. QL library and data flow support for the new C# 13 language constructs and generated MaD models for the .NET 9 runtime. +* C# 13: Add generated models for .NET 9. +* The models for `System.Net.Http.HttpRequestMessage` and `System.UriBuilder` have been modified to better model the flow of tainted URIs. +* Blazor `[Parameter]` fields bound to a variable from the route specified in the `@page` directive are now modeled as remote flow sources. diff --git a/csharp/ql/lib/codeql-pack.release.yml b/csharp/ql/lib/codeql-pack.release.yml index c9e54136ca5..dd8d287d010 100644 --- a/csharp/ql/lib/codeql-pack.release.yml +++ b/csharp/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 5.0.0 +lastReleaseVersion: 5.1.0 diff --git a/csharp/ql/lib/ext/System.Net.Http.model.yml b/csharp/ql/lib/ext/System.Net.Http.model.yml index 7d4fbf87a57..2becfec11d6 100644 --- a/csharp/ql/lib/ext/System.Net.Http.model.yml +++ b/csharp/ql/lib/ext/System.Net.Http.model.yml @@ -10,6 +10,8 @@ extensions: data: - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.String)", "", "Argument[0]", "Argument[this]", "taint", "manual"] - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.String)", "", "Argument[1]", "Argument[this]", "taint", "manual"] + - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.Uri)", "", "Argument[0]", "Argument[this]", "taint", "manual"] + - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.Uri)", "", "Argument[1]", "Argument[this]", "taint", "manual"] - ["System.Net.Http", "HttpRequestOptions", False, "Add", "(System.Collections.Generic.KeyValuePair)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"] - ["System.Net.Http", "HttpRequestOptions", False, "Add", "(System.Collections.Generic.KeyValuePair)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"] - ["System.Net.Http", "MultipartContent", False, "Add", "(System.Net.Http.HttpContent)", "", "Argument[0]", "Argument[this].Element", "value", "manual"] diff --git a/csharp/ql/lib/ext/System.model.yml b/csharp/ql/lib/ext/System.model.yml index 48719f87c4d..5e94dfcbf08 100644 --- a/csharp/ql/lib/ext/System.model.yml +++ b/csharp/ql/lib/ext/System.model.yml @@ -784,6 +784,24 @@ extensions: - ["System", "Uri", False, "get_OriginalString", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"] - ["System", "Uri", False, "get_PathAndQuery", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"] - ["System", "Uri", False, "get_Query", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"] + - ["System", "UriBuilder", False, "ToString", "()", "", "Argument[this].Property[System.UriBuilder.Scheme,System.UriBuilder.UserName,System.UriBuilder.Password,System.UriBuilder.Host,System.UriBuilder.Port,System.UriBuilder.Path,System.UriBuilder.Query,System.UriBuilder.Fragment]", "ReturnValue", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme,System.UriBuilder.Host,System.UriBuilder.Port,System.UriBuilder.Path,System.UriBuilder.Query,System.UriBuilder.Fragment]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.Uri)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme,System.UriBuilder.Host,System.UriBuilder.Port,System.UriBuilder.Path,System.UriBuilder.Query,System.UriBuilder.Fragment]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.UriBuilder.Host]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32)", "", "Argument[1]", "Argument[this].Property[System.UriBuilder.Host]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32)", "", "Argument[2]", "Argument[this].Property[System.UriBuilder.Port]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String)", "", "Argument[1]", "Argument[this].Property[System.UriBuilder.Host]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String)", "", "Argument[2]", "Argument[this].Property[System.UriBuilder.Port]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String)", "", "Argument[3]", "Argument[this].Property[System.UriBuilder.Path]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.UriBuilder.Scheme]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.UriBuilder.Host]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.UriBuilder.Port]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String,System.String)", "", "Argument[3]", "Argument[this].Property[System.UriBuilder.Path]", "taint", "manual"] + - ["System", "UriBuilder", False, "UriBuilder", "(System.String,System.String,System.Int32,System.String,System.String)", "", "Argument[4]", "Argument[this].Property[System.UriBuilder.Query,System.UriBuilder.Fragment]", "taint", "manual"] + - ["System", "UriBuilder", False, "get_Uri", "()", "", "Argument[this].Property[System.UriBuilder.Scheme,System.UriBuilder.UserName,System.UriBuilder.Password,System.UriBuilder.Host,System.UriBuilder.Port,System.UriBuilder.Path,System.UriBuilder.Query,System.UriBuilder.Fragment]", "ReturnValue", "taint", "manual"] - ["System", "ValueTuple", False, "Create", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`8.Item1]", "value", "manual"] - ["System", "ValueTuple", False, "Create", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`8.Item2]", "value", "manual"] - ["System", "ValueTuple", False, "Create", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`8.Item3]", "value", "manual"] diff --git a/csharp/ql/lib/ext/generated/AssemblyStripper.model.yml b/csharp/ql/lib/ext/generated/AssemblyStripper.model.yml deleted file mode 100644 index b5c54bb7a00..00000000000 --- a/csharp/ql/lib/ext/generated/AssemblyStripper.model.yml +++ /dev/null @@ -1,7 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["AssemblyStripper", "AssemblyStripper", "StripAssembly", "(System.String,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Generators.model.yml b/csharp/ql/lib/ext/generated/Generators.model.yml index 4cf9c116698..39ae5c69f44 100644 --- a/csharp/ql/lib/ext/generated/Generators.model.yml +++ b/csharp/ql/lib/ext/generated/Generators.model.yml @@ -5,3 +5,4 @@ extensions: extensible: neutralModel data: - ["Generators", "EventSourceGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] + - ["Generators", "ProductVersionInfoGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml index ce26bec046a..75d056b03be 100644 --- a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml +++ b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.Amd64.model.yml @@ -12,7 +12,7 @@ extensions: extensible: neutralModel data: - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo+SafePointOffset", "SafePointOffset", "(System.Int32,System.UInt32)", "summary", "df-generated"] - - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "GcInfo", "(System.Byte[],System.Int32,System.Reflection.PortableExecutable.Machine,System.UInt16)", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "GcInfo", "(System.Byte[],System.Int32,System.Reflection.PortableExecutable.Machine,System.UInt16,System.UInt16)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "ToString", "()", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "WriteTo", "(System.Text.StringBuilder,System.Reflection.PortableExecutable.Machine,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "GcSlotTable", "(System.Byte[],System.Reflection.PortableExecutable.Machine,ILCompiler.Reflection.ReadyToRun.GcInfoTypes,System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml new file mode 100644 index 00000000000..cc2411b2600 --- /dev/null +++ b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.RiscV64.model.yml @@ -0,0 +1,11 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["ILCompiler.Reflection.ReadyToRun.RiscV64", "Epilog", "Epilog", "(System.Int32,System.Int32,System.UInt32)", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.RiscV64", "Epilog", "ToString", "()", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.RiscV64", "UnwindCode", "UnwindCode", "(System.Int32)", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.RiscV64", "UnwindInfo", "ToString", "()", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.RiscV64", "UnwindInfo", "UnwindInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml index 51134c57b04..22e1a25dae0 100644 --- a/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml +++ b/csharp/ql/lib/ext/generated/ILCompiler.Reflection.ReadyToRun.x86.model.yml @@ -4,8 +4,6 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", False, "ToString", "()", "", "Argument[this].Property[ILCompiler.Reflection.ReadyToRun.x86.GcInfo.Header]", "ReturnValue", "taint", "dfc-generated"] - - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", False, "ToString", "()", "", "Argument[this].Property[ILCompiler.Reflection.ReadyToRun.x86.GcInfo.SlotTable]", "ReturnValue", "taint", "dfc-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", False, "GcSlot", "(System.Int32,System.String,System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "", "Argument[1]", "Argument[this].Property[ILCompiler.Reflection.ReadyToRun.x86.GcSlotTable+GcSlot.Register]", "value", "dfc-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", False, "GcSlot", "(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "", "Argument[1]", "Argument[this].Property[ILCompiler.Reflection.ReadyToRun.x86.GcSlotTable+GcSlot.Register]", "taint", "dfc-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", False, "ToString", "()", "", "Argument[this].Property[ILCompiler.Reflection.ReadyToRun.x86.GcSlotTable+GcSlot.Register]", "ReturnValue", "taint", "dfc-generated"] @@ -16,8 +14,9 @@ extensions: data: - ["ILCompiler.Reflection.ReadyToRun.x86", "CalleeSavedRegister", "CalleeSavedRegister", "(System.Int32,ILCompiler.Reflection.ReadyToRun.x86.CalleeSavedRegisters)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "CalleeSavedRegister", "ToString", "()", "summary", "df-generated"] - - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "GcInfo", "(System.Byte[],System.Int32,System.Reflection.PortableExecutable.Machine,System.UInt16)", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "GcInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "GetRegisterName", "(System.Int32)", "summary", "df-generated"] + - ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "ToString", "()", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable", "GcSlotTable", "(System.Byte[],ILCompiler.Reflection.ReadyToRun.x86.InfoHdrSmall,System.Int32)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+CallRegister", "CallRegister", "(ILCompiler.Reflection.ReadyToRun.x86.Registers,System.Boolean)", "summary", "df-generated"] - ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "PtrArg", "(System.UInt32,System.UInt32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml index 6e944d379af..7bec23ae842 100644 --- a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml +++ b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.DataFlow.model.yml @@ -4,18 +4,30 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["ILLink.RoslynAnalyzer.DataFlow", "BlockProxy", False, "BlockProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.BlockProxy.Block]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "CapturedReferenceValue", False, "CapturedReferenceValue", "(Microsoft.CodeAnalysis.IOperation)", "", "Argument[0]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.CapturedReferenceValue.Reference]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "ControlFlowGraphProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy.ControlFlowGraph]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "CreateProxyBranch", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch)", "", "Argument[0].Property[Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.Destination]", "ReturnValue.Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.Destination].Property[ILLink.RoslynAnalyzer.DataFlow.BlockProxy.Block]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "CreateProxyBranch", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch)", "", "Argument[0].Property[Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch.Source]", "ReturnValue.Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.Source].Property[ILLink.RoslynAnalyzer.DataFlow.BlockProxy.Block]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "FirstBlock", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "LastBlock", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "TryGetEnclosingFinally", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "", "Argument[0].Property[ILLink.RoslynAnalyzer.DataFlow.BlockProxy.Block].Property[Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.EnclosingRegion]", "ReturnValue.Property[ILLink.RoslynAnalyzer.DataFlow.RegionProxy.Region]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "TryGetEnclosingTryOrCatchOrFilter", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "", "Argument[0].Property[ILLink.RoslynAnalyzer.DataFlow.BlockProxy.Block].Property[Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock.EnclosingRegion]", "ReturnValue.Property[ILLink.RoslynAnalyzer.DataFlow.RegionProxy.Region]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "TryGetEnclosingTryOrCatchOrFilter", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "", "Argument[0].Property[ILLink.RoslynAnalyzer.DataFlow.RegionProxy.Region].Property[Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion.EnclosingRegion]", "ReturnValue.Property[ILLink.RoslynAnalyzer.DataFlow.RegionProxy.Region]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "get_Blocks", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", False, "get_Entry", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "And", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "And", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "DeepCopy", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "FeatureChecksValue", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "Negate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "Or", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", False, "Or", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", False, "FeatureChecksVisitor", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "DeepCopy", "()", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "FeatureContext", "(ILLink.Shared.DataFlow.ValueSet)", "", "Argument[0]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "Intersection", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "Intersection", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "Union", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", False, "Union", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContextLattice", False, "Meet", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] @@ -29,7 +41,7 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "InterproceduralStateLattice", False, "Meet", "(ILLink.RoslynAnalyzer.DataFlow.InterproceduralState,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState)", "", "Argument[1].Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralState`2.Methods]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralState`2.Methods]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "InterproceduralStateLattice", False, "get_Top", "()", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralStateLattice`2.HoistedLocalLattice].Property[ILLink.Shared.DataFlow.DictionaryLattice`3.Top]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralState`2.HoistedLocals]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "InterproceduralStateLattice", False, "get_Top", "()", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralStateLattice`2.MethodLattice].Property[ILLink.Shared.DataFlow.ValueSetLattice`1.Top]", "ReturnValue.Field[ILLink.RoslynAnalyzer.DataFlow.InterproceduralState`2.Methods]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowAnalysis", False, "LocalDataFlowAnalysis", "(Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext,Microsoft.CodeAnalysis.IOperation,TContext)", "", "Argument[0]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowAnalysis`6.Context]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowAnalysis", False, "LocalDataFlowAnalysis", "(Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext,Microsoft.CodeAnalysis.IOperation,TLattice,TContextLattice,TContext)", "", "Argument[0]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowAnalysis`6.Context]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", False, "LocalDataFlowVisitor", "(Microsoft.CodeAnalysis.Compilation,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,System.Collections.Immutable.ImmutableDictionary,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState)", "", "Argument[0]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.Compilation]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", False, "LocalDataFlowVisitor", "(Microsoft.CodeAnalysis.Compilation,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,System.Collections.Immutable.ImmutableDictionary,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState)", "", "Argument[1]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", False, "LocalDataFlowVisitor", "(Microsoft.CodeAnalysis.Compilation,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,System.Collections.Immutable.ImmutableDictionary,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState)", "", "Argument[2]", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.OwningSymbol]", "value", "dfc-generated"] @@ -39,28 +51,28 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitCompoundAssignment", "(Microsoft.CodeAnalysis.Operations.ICompoundAssignmentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitConversion", "(Microsoft.CodeAnalysis.Operations.IConversionOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDelegateCreation", "(Microsoft.CodeAnalysis.Operations.IDelegateCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicIndexerAccess", "(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicIndexerAccess", "(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicInvocation", "(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicInvocation", "(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicMemberReference", "(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicMemberReference", "(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicObjectCreation", "(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicObjectCreation", "(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicIndexerAccess", "(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicIndexerAccess", "(Microsoft.CodeAnalysis.Operations.IDynamicIndexerAccessOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicInvocation", "(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicInvocation", "(Microsoft.CodeAnalysis.Operations.IDynamicInvocationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicMemberReference", "(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicMemberReference", "(Microsoft.CodeAnalysis.Operations.IDynamicMemberReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicObjectCreation", "(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitDynamicObjectCreation", "(Microsoft.CodeAnalysis.Operations.IDynamicObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitEventAssignment", "(Microsoft.CodeAnalysis.Operations.IEventAssignmentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitEventReference", "(Microsoft.CodeAnalysis.Operations.IEventReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitExpressionStatement", "(Microsoft.CodeAnalysis.Operations.IExpressionStatementOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitFlowAnonymousFunction", "(Microsoft.CodeAnalysis.FlowAnalysis.IFlowAnonymousFunctionOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitFlowCapture", "(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitFlowCaptureReference", "(Microsoft.CodeAnalysis.FlowAnalysis.IFlowCaptureReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitImplicitIndexerReference", "(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitImplicitIndexerReference", "(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitImplicitIndexerReference", "(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitImplicitIndexerReference", "(Microsoft.CodeAnalysis.Operations.IImplicitIndexerReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitInlineArrayAccess", "(Microsoft.CodeAnalysis.Operations.IInlineArrayAccessOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitInvocation", "(Microsoft.CodeAnalysis.Operations.IInvocationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitObjectCreation", "(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitObjectCreation", "(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitPropertyReference", "(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitPropertyReference", "(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitObjectCreation", "(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitObjectCreation", "(Microsoft.CodeAnalysis.Operations.IObjectCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitPropertyReference", "(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Field[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.LocalStateAndContextLattice].Property[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice`4.Top]", "Argument[1].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState`4.Current]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitPropertyReference", "(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitReturn", "(Microsoft.CodeAnalysis.Operations.IReturnOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitSimpleAssignment", "(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", True, "VisitSimpleAssignment", "(Microsoft.CodeAnalysis.Operations.ISimpleAssignmentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -85,11 +97,11 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "LocalStateLattice", False, "Meet", "(ILLink.RoslynAnalyzer.DataFlow.LocalState,ILLink.RoslynAnalyzer.DataFlow.LocalState)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "MethodBodyValue", False, "MethodBodyValue", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.MethodBodyValue.OwningSymbol]", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "MethodBodyValue", False, "MethodBodyValue", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph)", "", "Argument[1]", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.MethodBodyValue.ControlFlowGraph]", "value", "dfc-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "RegionProxy", False, "RegionProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.RegionProxy.Region]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["ILLink.RoslynAnalyzer.DataFlow", "BlockProxy", "BlockProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.BasicBlock)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "BlockProxy", "ToString", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "BlockProxy", "get_ConditionKind", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "BlockProxy", "op_Equality", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] @@ -97,31 +109,15 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "CapturedReferenceValue", "Equals", "(ILLink.RoslynAnalyzer.DataFlow.CapturedReferenceValue)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "CapturedReferenceValue", "Equals", "(System.Object)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "CapturedReferenceValue", "GetHashCode", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "ControlFlowGraphProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "CreateProxyBranch", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowBranch)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "FirstBlock", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetConditionalSuccessor", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetCorrespondingTry", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetFallThroughSuccessor", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetPredecessors", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetPreviousFilters", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "GetSuccessors", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "HasFilter", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "LastBlock", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "TryGetEnclosingFinally", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "TryGetEnclosingTryOrCatchOrFilter", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "TryGetEnclosingTryOrCatchOrFilter", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "get_Blocks", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "get_Entry", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "op_Equality", "(ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy,ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "ControlFlowGraphProxy", "op_Inequality", "(ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy,ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", "op_Equality", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue,ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksValue", "op_Inequality", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue,ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "GetLiteralBool", "(Microsoft.CodeAnalysis.IOperation)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "VisitArgument", "(Microsoft.CodeAnalysis.Operations.IArgumentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "VisitBinaryOperator", "(Microsoft.CodeAnalysis.Operations.IBinaryOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "VisitIsPattern", "(Microsoft.CodeAnalysis.Operations.IIsPatternOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "VisitPropertyReference", "(Microsoft.CodeAnalysis.Operations.IPropertyReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureChecksVisitor", "VisitUnaryOperator", "(Microsoft.CodeAnalysis.Operations.IUnaryOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", "Equals", "(ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", "Equals", "(System.Object)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "FeatureContext", "GetHashCode", "()", "summary", "df-generated"] @@ -149,6 +145,7 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "HandleAssignment", "(TValue,TValue,Microsoft.CodeAnalysis.IOperation,TContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "HandleDelegateCreation", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,TContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "HandleMethodCall", "(Microsoft.CodeAnalysis.IMethodSymbol,TValue,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.IOperation,TContext)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "HandleReturnConditionValue", "(TConditionValue,Microsoft.CodeAnalysis.IOperation)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "HandleReturnValue", "(TValue,Microsoft.CodeAnalysis.IOperation,TContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "Transfer", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "LocalDataFlowVisitor", "VisitArgument", "(Microsoft.CodeAnalysis.Operations.IArgumentOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState)", "summary", "df-generated"] @@ -176,7 +173,6 @@ extensions: - ["ILLink.RoslynAnalyzer.DataFlow", "MethodBodyValue", "get_OwningSymbol", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "OperationWalker", "DefaultVisit", "(Microsoft.CodeAnalysis.IOperation,TArgument)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "OperationWalker", "Visit", "(Microsoft.CodeAnalysis.IOperation,TArgument)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.DataFlow", "RegionProxy", "RegionProxy", "(Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowRegion)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "RegionProxy", "get_Kind", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "RegionProxy", "op_Equality", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer.DataFlow", "RegionProxy", "op_Inequality", "(ILLink.RoslynAnalyzer.DataFlow.RegionProxy,ILLink.RoslynAnalyzer.DataFlow.RegionProxy)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml index 528a4086cbe..2356651dd6e 100644 --- a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml +++ b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.TrimAnalysis.model.yml @@ -5,78 +5,3 @@ extensions: extensible: summaryModel data: - ["ILLink.RoslynAnalyzer.TrimAnalysis", "SingleValueExtensions", False, "FromTypeSymbol", "(Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern.Source]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[1]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern.Target]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[2]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern.Operation]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[3]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern.OwningSymbol]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[4]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern.FeatureContext]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern)", "", "Argument[2].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", False, "TrimAnalysisFieldAccessPattern", "(Microsoft.CodeAnalysis.IFieldSymbol,Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.Field]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", False, "TrimAnalysisFieldAccessPattern", "(Microsoft.CodeAnalysis.IFieldSymbol,Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[1]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.Operation]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", False, "TrimAnalysisFieldAccessPattern", "(Microsoft.CodeAnalysis.IFieldSymbol,Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[2]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.OwningSymbol]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", False, "TrimAnalysisFieldAccessPattern", "(Microsoft.CodeAnalysis.IFieldSymbol,Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[3]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern.FeatureContext]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern)", "", "Argument[2].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern)", "", "Argument[2].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.Instance]", "ReturnValue.Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.Instance]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.CalledMethod]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[1]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.Instance]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[3]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.Operation]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[4]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.OwningSymbol]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[5].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", False, "TrimAnalysisPatternStore", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", False, "TrimAnalysisPatternStore", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern)", "", "Argument[2].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "ReturnValue.Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", False, "TrimAnalysisReflectionAccessPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.ReferencedMethod]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", False, "TrimAnalysisReflectionAccessPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[1]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.Operation]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", False, "TrimAnalysisReflectionAccessPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[2]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.OwningSymbol]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", False, "TrimAnalysisReflectionAccessPattern", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[3].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern.FeatureContext].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", False, "TrimAnalysisVisitor", "(Microsoft.CodeAnalysis.Compilation,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContextLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,System.Collections.Immutable.ImmutableDictionary,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisPatternStore,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState,ILLink.Shared.DataFlow.ValueSetLattice>,ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "", "Argument[5]", "Argument[this].Field[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisVisitor.TrimAnalysisPatterns]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "ApplyCondition", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContext,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>)", "", "Argument[0].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue.EnabledFeatures]", "Argument[1].Field[ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContext`2.Context].Field[ILLink.RoslynAnalyzer.DataFlow.FeatureContext.EnabledFeatures]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "ApplyCondition", "(ILLink.RoslynAnalyzer.DataFlow.FeatureChecksValue,ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContext,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "GetFieldTargetValue", "(Microsoft.CodeAnalysis.IFieldSymbol,Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "HandleArrayElementRead", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "HandleDelegateCreation", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "HandleMethodCall", "(Microsoft.CodeAnalysis.IMethodSymbol,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "", "Argument[1].Property[System.Nullable`1.Value]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "Visit", "(Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitArrayCreation", "(Microsoft.CodeAnalysis.Operations.IArrayCreationOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitBinaryOperator", "(Microsoft.CodeAnalysis.Operations.IBinaryOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitConversion", "(Microsoft.CodeAnalysis.Operations.IConversionOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitFieldReference", "(Microsoft.CodeAnalysis.Operations.IFieldReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitInstanceReference", "(Microsoft.CodeAnalysis.Operations.IInstanceReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", True, "VisitTypeOf", "(Microsoft.CodeAnalysis.Operations.ITypeOfOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowVisitor`5.TopValue]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", False, "TrimDataFlowAnalysis", "(Microsoft.CodeAnalysis.Diagnostics.OperationBlockAnalysisContext,ILLink.RoslynAnalyzer.DataFlowAnalyzerContext,Microsoft.CodeAnalysis.IOperation)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", True, "GetVisitor", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.FlowAnalysis.ControlFlowGraph,System.Collections.Immutable.ImmutableDictionary,ILLink.RoslynAnalyzer.DataFlow.InterproceduralState,ILLink.Shared.DataFlow.ValueSetLattice>)", "", "Argument[this].Property[ILLink.RoslynAnalyzer.TrimAnalysis.TrimDataFlowAnalysis.TrimAnalysisPatterns]", "ReturnValue.Field[ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisVisitor.TrimAnalysisPatterns]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", True, "TraceStart", "(ILLink.RoslynAnalyzer.DataFlow.ControlFlowGraphProxy)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", "CollectDiagnostics", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", "op_Equality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisAssignmentPattern", "op_Inequality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", "CollectDiagnostics", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", "op_Equality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisFieldAccessPattern", "op_Inequality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", "CollectDiagnostics", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", "op_Equality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisMethodCallPattern", "op_Inequality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", "Add", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisAssignmentPattern,System.Boolean)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", "Add", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisFieldAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", "Add", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisMethodCallPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", "Add", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisPatternStore", "CollectDiagnostics", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", "CollectDiagnostics", "(ILLink.RoslynAnalyzer.DataFlowAnalyzerContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", "op_Equality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisReflectionAccessPattern", "op_Inequality", "(ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern,ILLink.RoslynAnalyzer.TrimAnalysis.TrimAnalysisReflectionAccessPattern)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "GetConditionValue", "(Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "GetParameterTargetValue", "(Microsoft.CodeAnalysis.IParameterSymbol)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "HandleArrayElementWrite", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,System.Boolean)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "HandleAssignment", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "HandleReturnValue", "(ILLink.Shared.DataFlow.ValueSet,Microsoft.CodeAnalysis.IOperation,ILLink.RoslynAnalyzer.DataFlow.FeatureContext)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimAnalysisVisitor", "VisitParameterReference", "(Microsoft.CodeAnalysis.Operations.IParameterReferenceOperation,ILLink.RoslynAnalyzer.DataFlow.LocalDataFlowState,ILLink.RoslynAnalyzer.DataFlow.FeatureContext,ILLink.Shared.DataFlow.ValueSetLattice,ILLink.RoslynAnalyzer.DataFlow.FeatureContextLattice>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", "CollectDiagnostics", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", "TraceBlockInput", "(ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContext,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>,System.Nullable,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>>,System.Nullable,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", "TraceBlockOutput", "(ILLink.RoslynAnalyzer.DataFlow.LocalStateAndContext,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>,System.Nullable,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>>,System.Nullable,ILLink.RoslynAnalyzer.DataFlow.FeatureContext>>)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", "TraceVisitBlock", "(ILLink.RoslynAnalyzer.DataFlow.BlockProxy)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer.TrimAnalysis", "TrimDataFlowAnalysis", "get_TrimAnalysisPatterns", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml index 98e034e8058..1bc046818bc 100644 --- a/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml +++ b/csharp/ql/lib/ext/generated/ILLink.RoslynAnalyzer.model.yml @@ -7,8 +7,6 @@ extensions: - ["ILLink.RoslynAnalyzer", "CompilationExtensions", False, "GetUnqualifiedName", "(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax)", "", "Argument[0].Property[Microsoft.CodeAnalysis.CSharp.Syntax.AliasQualifiedNameSyntax.Name]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer", "CompilationExtensions", False, "GetUnqualifiedName", "(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax)", "", "Argument[0].Property[Microsoft.CodeAnalysis.CSharp.Syntax.QualifiedNameSyntax.Right]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer", "CompilationExtensions", False, "GetUnqualifiedName", "(Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", False, "Create", "(Microsoft.CodeAnalysis.Diagnostics.AnalyzerOptions,Microsoft.CodeAnalysis.Compilation,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "ReturnValue.Property[ILLink.RoslynAnalyzer.DataFlowAnalyzerContext.Compilation]", "value", "dfc-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", False, "get_EnabledRequiresAnalyzers", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["ILLink.RoslynAnalyzer", "IPropertySymbolExtensions", False, "GetGetMethod", "(Microsoft.CodeAnalysis.IPropertySymbol)", "", "Argument[0].Property[Microsoft.CodeAnalysis.IPropertySymbol.GetMethod]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer", "IPropertySymbolExtensions", False, "GetGetMethod", "(Microsoft.CodeAnalysis.IPropertySymbol)", "", "Argument[0].Property[Microsoft.CodeAnalysis.IPropertySymbol.OverriddenProperty].Property[Microsoft.CodeAnalysis.IPropertySymbol.GetMethod]", "ReturnValue", "value", "dfc-generated"] - ["ILLink.RoslynAnalyzer", "IPropertySymbolExtensions", False, "GetSetMethod", "(Microsoft.CodeAnalysis.IPropertySymbol)", "", "Argument[0].Property[Microsoft.CodeAnalysis.IPropertySymbol.OverriddenProperty].Property[Microsoft.CodeAnalysis.IPropertySymbol.SetMethod]", "ReturnValue", "value", "dfc-generated"] @@ -25,11 +23,9 @@ extensions: - ["ILLink.RoslynAnalyzer", "COMAnalyzer", "Initialize", "(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "COMAnalyzer", "get_SupportedDiagnostics", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "CompilationExtensions", "GetBestTypeByMetadataName", "(Microsoft.CodeAnalysis.Compilation,System.String)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "CompilationExtensions", "TaskOfTType", "(Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "CompilationExtensions", "TaskType", "(Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "CompilationExtensions", "ToImmutableArray", "(System.ReadOnlySpan)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", "GetSpecialIncompatibleMembers", "(ILLink.RoslynAnalyzer.RequiresAnalyzerBase)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", "get_AnyAnalyzersEnabled", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", "get_Compilation", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "DataFlowAnalyzerContext", "get_EnableTrimAnalyzer", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "DiagnosticDescriptors", "GetDiagnosticDescriptor", "(ILLink.Shared.DiagnosticId)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "DiagnosticDescriptors", "GetDiagnosticDescriptor", "(ILLink.Shared.DiagnosticId,ILLink.Shared.DiagnosticString)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "DiagnosticDescriptors", "GetDiagnosticDescriptor", "(ILLink.Shared.DiagnosticId,Microsoft.CodeAnalysis.LocalizableResourceString,Microsoft.CodeAnalysis.LocalizableResourceString,System.String,Microsoft.CodeAnalysis.DiagnosticSeverity,System.Boolean,System.String)", "summary", "df-generated"] @@ -38,17 +34,18 @@ extensions: - ["ILLink.RoslynAnalyzer", "DynamicallyAccessedMembersAnalyzer", "get_RequiresAnalyzers", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "DynamicallyAccessedMembersAnalyzer", "get_SupportedDiagnostics", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsConstructor", "(Microsoft.CodeAnalysis.ISymbol)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsEntryPoint", "(Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsInterface", "(Microsoft.CodeAnalysis.ISymbol)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsStaticConstructor", "(Microsoft.CodeAnalysis.ISymbol)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsSubclassOf", "(Microsoft.CodeAnalysis.ISymbol,System.String,System.String)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "IsUnmanagedCallersOnlyEntryPoint", "(Microsoft.CodeAnalysis.IMethodSymbol)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "get_ILLinkMemberDisplayFormat", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "ISymbolExtensions", "get_ILLinkTypeDisplayFormat", "()", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "CheckAndCreateRequiresDiagnostic", "(Microsoft.CodeAnalysis.IOperation,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.ISymbol,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.Diagnostic)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "CreateSpecialIncompatibleMembersDiagnostic", "(Microsoft.CodeAnalysis.IOperation,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Diagnostic)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "CreateSpecialIncompatibleMembersDiagnostic", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,ILLink.Shared.TrimAnalysis.DiagnosticContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "GetUrlFromAttribute", "(Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "Initialize", "(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresAnalyzerBase", "VerifyAttributeArguments", "(Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "RequiresAssemblyFilesAnalyzer", "CreateSpecialIncompatibleMembersDiagnostic", "(Microsoft.CodeAnalysis.IOperation,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Diagnostic)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "RequiresAssemblyFilesAnalyzer", "CreateSpecialIncompatibleMembersDiagnostic", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,ILLink.Shared.TrimAnalysis.DiagnosticContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresAssemblyFilesAnalyzer", "VerifyAttributeArguments", "(Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresAssemblyFilesAnalyzer", "get_SupportedDiagnostics", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresDynamicCodeAnalyzer", "VerifyAttributeArguments", "(Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] @@ -56,7 +53,7 @@ extensions: - ["ILLink.RoslynAnalyzer", "RequiresISymbolExtensions", "DoesMemberRequire", "(Microsoft.CodeAnalysis.ISymbol,System.String,Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresISymbolExtensions", "IsInRequiresScope", "(Microsoft.CodeAnalysis.ISymbol,System.String)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresISymbolExtensions", "IsInRequiresScope", "(Microsoft.CodeAnalysis.ISymbol,System.String,Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - - ["ILLink.RoslynAnalyzer", "RequiresUnreferencedCodeAnalyzer", "CreateSpecialIncompatibleMembersDiagnostic", "(Microsoft.CodeAnalysis.IOperation,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.Diagnostic)", "summary", "df-generated"] + - ["ILLink.RoslynAnalyzer", "RequiresUnreferencedCodeAnalyzer", "CreateSpecialIncompatibleMembersDiagnostic", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.ISymbol,ILLink.Shared.TrimAnalysis.DiagnosticContext)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresUnreferencedCodeAnalyzer", "VerifyAttributeArguments", "(Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresUnreferencedCodeAnalyzer", "get_SupportedDiagnostics", "()", "summary", "df-generated"] - ["ILLink.RoslynAnalyzer", "RequiresUnreferencedCodeUtils", "DoesMemberRequireUnreferencedCodeAttribute", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml b/csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml index 5f1feaaad72..d29f75b86f1 100644 --- a/csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml +++ b/csharp/ql/lib/ext/generated/ILLink.Shared.DataFlow.model.yml @@ -13,8 +13,9 @@ extensions: - ["ILLink.Shared.DataFlow", "DictionaryLattice", False, "DictionaryLattice", "(TValueLattice)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.DictionaryLattice`3.ValueLattice]", "value", "dfc-generated"] - ["ILLink.Shared.DataFlow", "DictionaryLattice", False, "Meet", "(ILLink.Shared.DataFlow.DefaultValueDictionary,ILLink.Shared.DataFlow.DefaultValueDictionary)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", False, "ForwardDataFlowAnalysis", "(TLattice,TValue)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.ForwardDataFlowAnalysis`8.lattice]", "value", "dfc-generated"] - - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", False, "ControlFlowBranch", "(TBlock,System.Nullable,System.Collections.Immutable.ImmutableArray,System.Boolean)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.Source]", "value", "dfc-generated"] - - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", False, "ControlFlowBranch", "(TBlock,System.Nullable,System.Collections.Immutable.ImmutableArray,System.Boolean)", "", "Argument[2]", "Argument[this].Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.FinallyRegions]", "value", "dfc-generated"] + - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", False, "ControlFlowBranch", "(TBlock,System.Nullable,System.Collections.Immutable.ImmutableArray,ILLink.Shared.DataFlow.ConditionKind)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.Source]", "value", "dfc-generated"] + - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", False, "ControlFlowBranch", "(TBlock,System.Nullable,System.Collections.Immutable.ImmutableArray,ILLink.Shared.DataFlow.ConditionKind)", "", "Argument[1]", "Argument[this].Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.Destination]", "value", "dfc-generated"] + - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", False, "ControlFlowBranch", "(TBlock,System.Nullable,System.Collections.Immutable.ImmutableArray,ILLink.Shared.DataFlow.ConditionKind)", "", "Argument[2]", "Argument[this].Field[ILLink.Shared.DataFlow.IControlFlowGraph`2+ControlFlowBranch.FinallyRegions]", "value", "dfc-generated"] - ["ILLink.Shared.DataFlow", "Maybe", False, "Maybe", "(T)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.Maybe`1.MaybeValue]", "value", "dfc-generated"] - ["ILLink.Shared.DataFlow", "MaybeLattice", False, "MaybeLattice", "(TValueLattice)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.DataFlow.MaybeLattice`2.ValueLattice]", "value", "dfc-generated"] - ["ILLink.Shared.DataFlow", "SingleValue", True, "DeepCopy", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] @@ -44,18 +45,17 @@ extensions: - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "Fixpoint", "(TControlFlowGraph,TTransfer)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "TraceBlockInput", "(TValue,System.Nullable,System.Nullable)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "TraceBlockOutput", "(TValue,System.Nullable,System.Nullable)", "summary", "df-generated"] + - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "TraceEdgeInput", "(ILLink.Shared.DataFlow.IControlFlowGraph+ControlFlowBranch,TValue)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "TraceStart", "(TControlFlowGraph)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "ForwardDataFlowAnalysis", "TraceVisitBlock", "(TBlock)", "summary", "df-generated"] - - ["ILLink.Shared.DataFlow", "IBlock", "get_ConditionKind", "()", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", "Equals", "(ILLink.Shared.DataFlow.IControlFlowGraph+ControlFlowBranch)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", "Equals", "(System.Object)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph+ControlFlowBranch", "GetHashCode", "()", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "FirstBlock", "(TRegion)", "summary", "df-generated"] - - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetConditionalSuccessor", "(TBlock)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetCorrespondingTry", "(TRegion)", "summary", "df-generated"] - - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetFallThroughSuccessor", "(TBlock)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetPredecessors", "(TBlock)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetPreviousFilters", "(TRegion)", "summary", "df-generated"] + - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "GetSuccessors", "(TBlock)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "HasFilter", "(TRegion)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "LastBlock", "(TRegion)", "summary", "df-generated"] - ["ILLink.Shared.DataFlow", "IControlFlowGraph", "TryGetEnclosingFinally", "(TBlock,TRegion)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml b/csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml index c3bde0c4d2b..e0e5b2f59b8 100644 --- a/csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml +++ b/csharp/ql/lib/ext/generated/ILLink.Shared.TrimAnalysis.model.yml @@ -4,37 +4,42 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["ILLink.Shared.TrimAnalysis", "DiagnosticContext", False, "DiagnosticContext", "(Microsoft.CodeAnalysis.Location,System.Action)", "", "Argument[0]", "Argument[this].Property[ILLink.Shared.TrimAnalysis.DiagnosticContext.Location]", "value", "dfc-generated"] + - ["ILLink.Shared.TrimAnalysis", "DiagnosticContext", False, "DiagnosticContext", "(Mono.Linker.MessageOrigin,System.Boolean,Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this].Field[ILLink.Shared.TrimAnalysis.DiagnosticContext.Origin]", "value", "dfc-generated"] + - ["ILLink.Shared.TrimAnalysis", "FieldReferenceValue", False, "FieldReferenceValue", "(Mono.Cecil.FieldReference)", "", "Argument[0]", "Argument[this].Property[ILLink.Shared.TrimAnalysis.FieldReferenceValue.Field]", "value", "dfc-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", False, "FlowAnnotations", "(Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "LocalVariableReferenceValue", False, "LocalVariableReferenceValue", "(Mono.Cecil.Cil.VariableDefinition)", "", "Argument[0]", "Argument[this].Property[ILLink.Shared.TrimAnalysis.LocalVariableReferenceValue.LocalDefinition]", "value", "dfc-generated"] + - ["ILLink.Shared.TrimAnalysis", "ReferenceValue", False, "ReferenceValue", "(Mono.Cecil.TypeReference)", "", "Argument[0]", "Argument[this].Property[ILLink.Shared.TrimAnalysis.ReferenceValue.ReferencedType]", "value", "dfc-generated"] - ["ILLink.Shared.TrimAnalysis", "ValueWithDynamicallyAccessedMembers", True, "GetDiagnosticArgumentsForAnnotationMismatch", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["ILLink.Shared.TrimAnalysis", "FieldReferenceValue", "FieldReferenceValue", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "DiagnosticContext", "AddDiagnostic", "(ILLink.Shared.DiagnosticId,ILLink.Shared.TrimAnalysis.ValueWithDynamicallyAccessedMembers,ILLink.Shared.TrimAnalysis.ValueWithDynamicallyAccessedMembers,System.String[])", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "DiagnosticContext", "AddDiagnostic", "(ILLink.Shared.DiagnosticId,System.String[])", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "DiagnosticContext", "get_Location", "()", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FieldReferenceValue", "get_EqualityContract", "()", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FieldReferenceValue", "op_Equality", "(ILLink.Shared.TrimAnalysis.FieldReferenceValue,ILLink.Shared.TrimAnalysis.FieldReferenceValue)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FieldReferenceValue", "op_Inequality", "(ILLink.Shared.TrimAnalysis.FieldReferenceValue,ILLink.Shared.TrimAnalysis.FieldReferenceValue)", "summary", "df-generated"] - - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetFieldAnnotation", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetFieldAnnotation", "(Mono.Cecil.FieldReference)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetGenericParameterAnnotation", "(Mono.Cecil.GenericParameter)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetMethodReturnValueAnnotation", "(Microsoft.CodeAnalysis.IMethodSymbol)", "summary", "df-generated"] - - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetReturnParameterAnnotation", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetReturnParameterAnnotation", "(Mono.Cecil.MethodReference)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetTypeAnnotation", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "GetTypeAnnotation", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "IsTypeInterestingForDataflow", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresDataFlowAnalysis", "(Microsoft.CodeAnalysis.IMethodSymbol)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresDataFlowAnalysis", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] - - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresDataFlowAnalysis", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] + - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresDataFlowAnalysis", "(Mono.Cecil.MethodReference)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresGenericArgumentDataFlowAnalysis", "(Mono.Cecil.GenericParameter)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "RequiresVirtualMethodDataFlowAnalysis", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "ShouldWarnWhenAccessedForReflection", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "ShouldWarnWhenAccessedForReflection", "(Mono.Cecil.IMemberDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "ShouldWarnWhenAccessedForReflection", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "FlowAnnotations", "get_Instance", "()", "summary", "df-generated"] - - ["ILLink.Shared.TrimAnalysis", "LocalVariableReferenceValue", "LocalVariableReferenceValue", "(Mono.Cecil.Cil.VariableDefinition)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "LocalVariableReferenceValue", "get_EqualityContract", "()", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "LocalVariableReferenceValue", "op_Equality", "(ILLink.Shared.TrimAnalysis.LocalVariableReferenceValue,ILLink.Shared.TrimAnalysis.LocalVariableReferenceValue)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "LocalVariableReferenceValue", "op_Inequality", "(ILLink.Shared.TrimAnalysis.LocalVariableReferenceValue,ILLink.Shared.TrimAnalysis.LocalVariableReferenceValue)", "summary", "df-generated"] - - ["ILLink.Shared.TrimAnalysis", "ReferenceValue", "ReferenceValue", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "ReferenceValue", "get_EqualityContract", "()", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "ReferenceValue", "op_Equality", "(ILLink.Shared.TrimAnalysis.ReferenceValue,ILLink.Shared.TrimAnalysis.ReferenceValue)", "summary", "df-generated"] - ["ILLink.Shared.TrimAnalysis", "ReferenceValue", "op_Inequality", "(ILLink.Shared.TrimAnalysis.ReferenceValue,ILLink.Shared.TrimAnalysis.ReferenceValue)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml b/csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml index 86808a1d73a..9c15260100d 100644 --- a/csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml +++ b/csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml @@ -70,3 +70,5 @@ extensions: - ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "get_IsNoInlining", "()", "summary", "df-generated"] - ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "get_IsPInvoke", "()", "summary", "df-generated"] - ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "get_Prefix", "()", "summary", "df-generated"] + - ["Internal.IL.Stubs", "SpecializableILStubMethod", "EmitIL", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"] + - ["Internal.IL.Stubs", "SpecializableILStubMethod", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml b/csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml index 9273ce408ea..1fa218c3707 100644 --- a/csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml +++ b/csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml @@ -124,7 +124,6 @@ extensions: - ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_RequireSecObject", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "EcmaModule", "CompareTo", "(Internal.TypeSystem.Ecma.EcmaModule)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "EcmaModule", "CompareTo", "(Internal.TypeSystem.Ecma.IEcmaModule)", "summary", "df-generated"] - - ["Internal.TypeSystem.Ecma", "EcmaModule", "GetContentTypeFromAssemblyFlags", "(System.Reflection.AssemblyFlags)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "EcmaModule", "GetUserString", "(System.Reflection.Metadata.UserStringHandle)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "EcmaModule", "get_IsPlatformNeutral", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "EcmaModule", "get_ModuleTypeSort", "()", "summary", "df-generated"] @@ -185,15 +184,18 @@ extensions: - ["Internal.TypeSystem.Ecma", "PdbSymbolReader", "Dispose", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PdbSymbolReader", "GetLocalVariableNamesForMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PdbSymbolReader", "GetSequencePointsForMethod", "(System.Int32)", "summary", "df-generated"] + - ["Internal.TypeSystem.Ecma", "PdbSymbolReader", "GetSourceLinkData", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PdbSymbolReader", "GetStateMachineKickoffMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "Dispose", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "GetLocalVariableNamesForMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "GetSequencePointsForMethod", "(System.Int32)", "summary", "df-generated"] + - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "GetSourceLinkData", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "GetStateMachineKickoffMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "TryOpen", "(System.String,System.Reflection.Metadata.MetadataStringDecoder,System.Reflection.Metadata.BlobContentId)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "PortablePdbSymbolReader", "TryOpenEmbedded", "(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataStringDecoder)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "Dispose", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "GetLocalVariableNamesForMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "GetSequencePointsForMethod", "(System.Int32)", "summary", "df-generated"] + - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "GetSourceLinkData", "()", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "GetStateMachineKickoffMethod", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "TryOpenSymbolReaderForMetadataFile", "(System.String,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml b/csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml index d418b5c7381..be631bb427c 100644 --- a/csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml +++ b/csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml @@ -23,6 +23,8 @@ extensions: - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", False, "AppendNameForNestedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType,Internal.TypeSystem.DefType,System.Boolean)", "", "Argument[2]", "Argument[0]", "taint", "df-generated"] - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", False, "AppendNameForNestedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType,Internal.TypeSystem.DefType,System.Boolean)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", False, "CustomAttributeTypeNameFormatter", "(Internal.TypeSystem.IAssemblyDesc)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Internal.TypeSystem", "CustomAttributeTypeNameParser", False, "GetTypeByCustomAttributeTypeName", "(Internal.TypeSystem.ModuleDesc,System.String,System.Boolean,System.Func)", "", "Argument[3].ReturnValue", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "CustomAttributeTypeNameParser", False, "GetTypeByCustomAttributeTypeNameForDataFlow", "(System.String,Internal.TypeSystem.ModuleDesc,Internal.TypeSystem.TypeSystemContext,System.Collections.Generic.List,System.Boolean,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "DebugNameFormatter", True, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.ArrayType,Internal.TypeSystem.DebugNameFormatter+FormatOptions)", "", "Argument[1].Property[Internal.TypeSystem.ArrayType.ElementType].Property[Internal.TypeSystem.GenericParameterDesc.DiagnosticName]", "Argument[0]", "taint", "dfc-generated"] - ["Internal.TypeSystem", "DebugNameFormatter", True, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.ArrayType,Internal.TypeSystem.DebugNameFormatter+FormatOptions)", "", "Argument[1].Property[Internal.TypeSystem.ParameterizedType.ParameterType].Property[Internal.TypeSystem.GenericParameterDesc.DiagnosticName]", "Argument[0]", "taint", "dfc-generated"] - ["Internal.TypeSystem", "DebugNameFormatter", True, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.ByRefType,Internal.TypeSystem.DebugNameFormatter+FormatOptions)", "", "Argument[1].Property[Internal.TypeSystem.ParameterizedType.ParameterType].Property[Internal.TypeSystem.GenericParameterDesc.DiagnosticName]", "Argument[0]", "taint", "dfc-generated"] @@ -58,10 +60,17 @@ extensions: - ["Internal.TypeSystem", "FieldDesc", True, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "FieldDesc", True, "get_OwningType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "FieldLayoutAlgorithm", True, "ComputeInstanceLayout", "(Internal.TypeSystem.DefType,Internal.TypeSystem.InstanceLayoutKind)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator+FieldLayoutInterval", False, "FieldLayoutInterval", "(System.Int32,System.Int32,TIntervalTag)", "", "Argument[2]", "Argument[this].Field[Internal.TypeSystem.FieldLayoutIntervalCalculator`1+FieldLayoutInterval.Tag]", "value", "dfc-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", False, "get_Intervals", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "FunctionPointerType", False, "get_Signature", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.FunctionPointerType._signature]", "ReturnValue", "value", "dfc-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", True, "get_AssociatedTypeOrMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "IAssemblyDesc", True, "GetName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Internal.TypeSystem", "IModuleResolver", True, "ResolveAssembly", "(System.Reflection.AssemblyName,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Internal.TypeSystem", "IModuleResolver", True, "ResolveAssembly", "(System.Reflection.Metadata.AssemblyNameInfo,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", False, "ImpliedRepeatedFieldDesc", "(Internal.TypeSystem.DefType,Internal.TypeSystem.FieldDesc,System.Int32)", "", "Argument[0]", "Argument[this].Property[Internal.TypeSystem.ImpliedRepeatedFieldDesc.OwningType]", "value", "dfc-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", False, "ImpliedRepeatedFieldDesc", "(Internal.TypeSystem.DefType,Internal.TypeSystem.FieldDesc,System.Int32)", "", "Argument[1]", "Argument[this].SyntheticField[Internal.TypeSystem.ImpliedRepeatedFieldDesc._underlyingFieldDesc]", "value", "dfc-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", False, "get_Context", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.ImpliedRepeatedFieldDesc._underlyingFieldDesc].Property[Internal.TypeSystem.TypeSystemEntity.Context]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", False, "get_FieldType", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.ImpliedRepeatedFieldDesc._underlyingFieldDesc].Property[Internal.TypeSystem.FieldDesc.FieldType]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", False, "get_Name", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.ImpliedRepeatedFieldDesc._underlyingFieldDesc].Property[Internal.TypeSystem.FieldDesc.Name]", "ReturnValue", "taint", "dfc-generated"] - ["Internal.TypeSystem", "InstantiatedType", False, "InstantiateTypeArray", "(T[],Internal.TypeSystem.Instantiation,Internal.TypeSystem.Instantiation)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["Internal.TypeSystem", "InstantiatedType", False, "InstantiateTypeArray", "(T[],Internal.TypeSystem.Instantiation,Internal.TypeSystem.Instantiation)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Internal.TypeSystem", "InstantiatedType", False, "InstantiateTypeArray", "(T[],Internal.TypeSystem.Instantiation,Internal.TypeSystem.Instantiation)", "", "Argument[1].SyntheticField[Internal.TypeSystem.Instantiation._genericParameters].Element", "ReturnValue.Element", "value", "dfc-generated"] @@ -272,6 +281,13 @@ extensions: - ["Internal.TypeSystem", "TypeSystemHelpers", False, "ResolveVariantInterfaceMethodToDefaultImplementationOnType", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc,Internal.TypeSystem.MethodDesc)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "TypeSystemHelpers", False, "ResolveVariantInterfaceMethodToDefaultImplementationOnType", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc,Internal.TypeSystem.MethodDesc)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "TypeSystemHelpers", False, "ResolveVariantInterfaceMethodToVirtualMethodOnType", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "TypeWithRepeatedFields", "(Internal.TypeSystem.MetadataType)", "", "Argument[0]", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType]", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "get_ContainingType", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType].Property[Internal.TypeSystem.MetadataType.ContainingType]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "get_Context", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType].Property[Internal.TypeSystem.TypeSystemEntity.Context]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "get_Module", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType].Property[Internal.TypeSystem.MetadataType.Module]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "get_Name", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType].Property[Internal.TypeSystem.MetadataType.Name]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", False, "get_Namespace", "()", "", "Argument[this].SyntheticField[Internal.TypeSystem.TypeWithRepeatedFields.MetadataType].Property[Internal.TypeSystem.MetadataType.Namespace]", "ReturnValue", "value", "dfc-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFieldsFieldLayoutAlgorithm", False, "TypeWithRepeatedFieldsFieldLayoutAlgorithm", "(Internal.TypeSystem.FieldLayoutAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Internal.TypeSystem", "VirtualMethodAlgorithm", True, "ComputeAllVirtualSlots", "(Internal.TypeSystem.TypeDesc)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "VirtualMethodAlgorithm", True, "FindVirtualFunctionTargetMethodOnObjectType", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.TypeDesc)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Internal.TypeSystem", "VirtualMethodAlgorithm", True, "ResolveInterfaceMethodToDefaultImplementationOnType", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -332,7 +348,6 @@ extensions: - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureMethodVariable,System.Boolean)", "summary", "df-generated"] - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureTypeVariable,System.Boolean)", "summary", "df-generated"] - ["Internal.TypeSystem", "CustomAttributeTypeNameFormatter", "AppendNameForInstantiatedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType,System.Boolean)", "summary", "df-generated"] - - ["Internal.TypeSystem", "CustomAttributeTypeNameParser", "GetTypeByCustomAttributeTypeName", "(Internal.TypeSystem.ModuleDesc,System.String,System.Boolean,System.Func)", "summary", "df-generated"] - ["Internal.TypeSystem", "DebugNameFormatter+Void", "get_Value", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "DebugNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureMethodVariable,Internal.TypeSystem.DebugNameFormatter+FormatOptions)", "summary", "df-generated"] - ["Internal.TypeSystem", "DebugNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureTypeVariable,Internal.TypeSystem.DebugNameFormatter+FormatOptions)", "summary", "df-generated"] @@ -400,6 +415,17 @@ extensions: - ["Internal.TypeSystem", "FieldLayoutAlgorithm", "ComputeIsUnsafeValueType", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] - ["Internal.TypeSystem", "FieldLayoutAlgorithm", "ComputeStaticFieldLayout", "(Internal.TypeSystem.DefType,Internal.TypeSystem.StaticLayoutKind)", "summary", "df-generated"] - ["Internal.TypeSystem", "FieldLayoutAlgorithm", "ComputeValueTypeShapeCharacteristics", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator+FieldLayoutInterval", "CompareTo", "(Internal.TypeSystem.FieldLayoutIntervalCalculator+FieldLayoutInterval)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "AddFields", "(Internal.TypeSystem.TypeDesc,System.Boolean)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "AddToFieldLayout", "(System.Int32,Internal.TypeSystem.TypeDesc)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "AddToFieldLayout", "(System.Int32,Internal.TypeSystem.TypeDesc,System.Boolean)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "CombineIntervals", "(Internal.TypeSystem.FieldLayoutIntervalCalculator+FieldLayoutInterval,Internal.TypeSystem.FieldLayoutIntervalCalculator+FieldLayoutInterval)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "FieldLayoutIntervalCalculator", "(System.Int32)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "GetIntervalDataForType", "(System.Int32,Internal.TypeSystem.TypeDesc)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "IntervalsHaveCompatibleTags", "(TIntervalTag,TIntervalTag)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "NeedsRecursiveLayout", "(System.Int32,Internal.TypeSystem.TypeDesc)", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "get_EmptyIntervalData", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "FieldLayoutIntervalCalculator", "get_PointerSize", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "FunctionPointerType", "CompareToImpl", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"] - ["Internal.TypeSystem", "FunctionPointerType", "ComputeTypeFlags", "(Internal.TypeSystem.TypeFlags)", "summary", "df-generated"] - ["Internal.TypeSystem", "FunctionPointerType", "GetHashCode", "()", "summary", "df-generated"] @@ -433,7 +459,7 @@ extensions: - ["Internal.TypeSystem", "GenericParameterDesc", "IsCanonicalSubtype", "(Internal.TypeSystem.CanonicalFormKind)", "summary", "df-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", "get_Constraints", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", "get_DiagnosticName", "()", "summary", "df-generated"] - - ["Internal.TypeSystem", "GenericParameterDesc", "get_HasAcceptByRefLikeConstraint", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "GenericParameterDesc", "get_HasAllowByRefLikeConstraint", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", "get_HasDefaultConstructorConstraint", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", "get_HasNotNullableValueTypeConstraint", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "GenericParameterDesc", "get_HasReferenceTypeConstraint", "()", "summary", "df-generated"] @@ -452,6 +478,17 @@ extensions: - ["Internal.TypeSystem", "IPrefixMangledSignature", "get_Prefix", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "IPrefixMangledType", "get_BaseType", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "IPrefixMangledType", "get_Prefix", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "CompareToImpl", "(Internal.TypeSystem.FieldDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "GetMarshalAsDescriptor", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_ClassCode", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_FieldIndex", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_HasEmbeddedSignatureData", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_HasRva", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_IsInitOnly", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_IsLiteral", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_IsStatic", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "ImpliedRepeatedFieldDesc", "get_IsThreadStatic", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "InstantiatedMethod", "CompareToImpl", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"] - ["Internal.TypeSystem", "InstantiatedMethod", "ComputeHashCode", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "InstantiatedMethod", "GetParameterMetadata", "()", "summary", "df-generated"] @@ -503,6 +540,7 @@ extensions: - ["Internal.TypeSystem", "Instantiation", "GetHashCode", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "Instantiation", "get_IsNull", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "Instantiation", "get_Length", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "LayoutInt", "AddThrowing", "(Internal.TypeSystem.LayoutInt,Internal.TypeSystem.LayoutInt,Internal.TypeSystem.TypeDesc)", "summary", "df-generated"] - ["Internal.TypeSystem", "LayoutInt", "Equals", "(System.Object)", "summary", "df-generated"] - ["Internal.TypeSystem", "LayoutInt", "GetHashCode", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "LayoutInt", "LayoutInt", "(System.Int32)", "summary", "df-generated"] @@ -669,6 +707,7 @@ extensions: - ["Internal.TypeSystem", "MethodSignature", "get_Flags", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "MethodSignature", "get_GenericParameterCount", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "MethodSignature", "get_HasEmbeddedSignatureData", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "MethodSignature", "get_IsExplicitThis", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "MethodSignature", "get_IsStatic", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "MethodSignature", "get_Length", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "MethodSignatureBuilder", "set_Flags", "(Internal.TypeSystem.MethodSignatureFlags)", "summary", "df-generated"] @@ -743,6 +782,7 @@ extensions: - ["Internal.TypeSystem", "TargetDetails", "get_OperatingSystem", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "TargetDetails", "get_OptimumFunctionAlignment", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "TargetDetails", "get_PointerSize", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TargetDetails", "get_SupportsAlign8", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "TargetDetails", "get_SupportsRelativePointers", "()", "summary", "df-generated"] - ["Internal.TypeSystem", "ThreadSafeFlags", "AddFlags", "(System.Int32)", "summary", "df-generated"] - ["Internal.TypeSystem", "ThreadSafeFlags", "HasFlags", "(System.Int32)", "summary", "df-generated"] @@ -899,6 +939,25 @@ extensions: - ["Internal.TypeSystem", "TypeSystemHelpers", "RequiresSlotUnification", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"] - ["Internal.TypeSystem", "TypeSystemHelpers", "ResolveInterfaceMethodToStaticVirtualMethodOnType", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc)", "summary", "df-generated"] - ["Internal.TypeSystem", "TypeSystemHelpers", "ResolveVariantInterfaceMethodToStaticVirtualMethodOnType", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.MethodDesc)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "CompareToImpl", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "ComputeTypeFlags", "(Internal.TypeSystem.TypeFlags)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "FindMethodsImplWithMatchingDeclName", "(System.String)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "GetClassLayout", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "GetHashCode", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "GetInlineArrayLength", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "GetNestedType", "(System.String)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_ClassCode", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_IsAbstract", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_IsBeforeFieldInit", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_IsExplicitLayout", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_IsSealed", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_IsSequentialLayout", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFields", "get_PInvokeStringFormat", "()", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFieldsFieldLayoutAlgorithm", "ComputeContainsGCPointers", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFieldsFieldLayoutAlgorithm", "ComputeIsUnsafeValueType", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFieldsFieldLayoutAlgorithm", "ComputeStaticFieldLayout", "(Internal.TypeSystem.DefType,Internal.TypeSystem.StaticLayoutKind)", "summary", "df-generated"] + - ["Internal.TypeSystem", "TypeWithRepeatedFieldsFieldLayoutAlgorithm", "ComputeValueTypeShapeCharacteristics", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] - ["Internal.TypeSystem", "UniversalCanonLayoutAlgorithm", "ComputeContainsGCPointers", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] - ["Internal.TypeSystem", "UniversalCanonLayoutAlgorithm", "ComputeIsUnsafeValueType", "(Internal.TypeSystem.DefType)", "summary", "df-generated"] - ["Internal.TypeSystem", "UniversalCanonLayoutAlgorithm", "ComputeStaticFieldLayout", "(Internal.TypeSystem.DefType,Internal.TypeSystem.StaticLayoutKind)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/JsonToItemsTaskFactory.model.yml b/csharp/ql/lib/ext/generated/JsonToItemsTaskFactory.model.yml deleted file mode 100644 index 7934a2d2264..00000000000 --- a/csharp/ql/lib/ext/generated/JsonToItemsTaskFactory.model.yml +++ /dev/null @@ -1,35 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+CaseInsensitiveDictionaryConverter", True, "Read", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", False, "JsonModelItem", "(System.String,System.Collections.Generic.Dictionary)", "", "Argument[0]", "Argument[this].Property[JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem.Identity]", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", False, "JsonModelItem", "(System.String,System.Collections.Generic.Dictionary)", "", "Argument[1]", "Argument[this].Property[JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem.Metadata]", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItemConverter", True, "Read", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", False, "JsonToItemsTask", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonToItemsTask.TaskName]", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", False, "SetPropertyValue", "(Microsoft.Build.Framework.TaskPropertyInfo,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "CreateTask", "(Microsoft.Build.Framework.IBuildEngine)", "", "Argument[this].SyntheticField[JsonToItemsTaskFactory.JsonToItemsTaskFactory._taskName]", "ReturnValue.Property[JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonToItemsTask.TaskName]", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "GetTaskParameters", "()", "", "Argument[this].SyntheticField[JsonToItemsTaskFactory.JsonToItemsTaskFactory._taskProperties]", "ReturnValue", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "Initialize", "(System.String,System.Collections.Generic.IDictionary,System.String,Microsoft.Build.Framework.IBuildEngine)", "", "Argument[0]", "Argument[this].SyntheticField[JsonToItemsTaskFactory.JsonToItemsTaskFactory._taskName]", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "Initialize", "(System.String,System.Collections.Generic.IDictionary,System.String,Microsoft.Build.Framework.IBuildEngine)", "", "Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].SyntheticField[JsonToItemsTaskFactory.JsonToItemsTaskFactory._taskProperties].Element", "value", "dfc-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "Initialize", "(System.String,System.Collections.Generic.IDictionary,System.String,Microsoft.Build.Framework.IBuildEngine)", "", "Argument[1].Property[System.Collections.Generic.IDictionary`2.Values].Element", "Argument[this].SyntheticField[JsonToItemsTaskFactory.JsonToItemsTaskFactory._taskProperties].Element", "value", "dfc-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+CaseInsensitiveDictionaryConverter", "Write", "(System.Text.Json.Utf8JsonWriter,System.Collections.Generic.Dictionary,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", "get_Identity", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", "get_Metadata", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItemConverter", "Write", "(System.Text.Json.Utf8JsonWriter,JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "ConvertItems", "(JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem[])", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "Execute", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "GetJsonAsync", "(System.String,System.IO.FileStream)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "GetPropertyValue", "(Microsoft.Build.Framework.TaskPropertyInfo)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "TryGetJson", "(System.String,JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelRoot)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "get_JsonOptions", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "get_TaskName", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "CleanupTask", "(Microsoft.Build.Framework.ITask)", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_FactoryName", "()", "summary", "df-generated"] - - ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_TaskType", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Ndk.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Ndk.model.yml deleted file mode 100644 index 5eb848cffa0..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Ndk.model.yml +++ /dev/null @@ -1,30 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "NdkTools", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].SyntheticField[Microsoft.Android.Build.Ndk.NdkTools.clangPath]", "taint", "dfc-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "get_AsPrefixPath", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "get_ClangPath", "()", "", "Argument[this].SyntheticField[Microsoft.Android.Build.Ndk.NdkTools.clangPath]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "get_LdName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "get_LdPath", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", False, "get_ToolPrefixPath", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkVersion", False, "NdkVersion", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Android.Build.Ndk.NdkVersion.Tag]", "taint", "dfc-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkVersion", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Android.Build.Ndk.NdkVersion.Main]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkVersion", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Android.Build.Ndk.NdkVersion.Tag]", "ReturnValue", "taint", "dfc-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: sourceModel - data: - - ["Microsoft.Android.Build.Ndk", "Ndk", False, "get_NdkPath", "()", "", "ReturnValue", "environment", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.Android.Build.Ndk", "AndroidArch", "AndroidArch", "(System.String,System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "Ndk", "get_NdkPath", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "Ndk", "get_NdkVersion", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkTools", "get_Triple", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkVersion", "get_Main", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build.Ndk", "NdkVersion", "get_Tag", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Tasks.model.yml deleted file mode 100644 index 2cfc8a20064..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.Tasks.model.yml +++ /dev/null @@ -1,7 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.Android.Build.Tasks", "NdkToolFinderTask", True, "Execute", "()", "", "Argument[this].Property[Microsoft.Android.Build.Tasks.NdkToolFinderTask.MinApiLevel]", "Argument[this].Property[Microsoft.Android.Build.Tasks.NdkToolFinderTask.ClangPath]", "taint", "dfc-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Android.Build.model.yml deleted file mode 100644 index 9c2af68af6d..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Android.Build.model.yml +++ /dev/null @@ -1,23 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.Android.Build", "AndroidProject", False, "AndroidProject", "(System.String,System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Android.Build.AndroidProject.projectName]", "value", "dfc-generated"] - - ["Microsoft.Android.Build", "AndroidProject", False, "BuildCMake", "(System.String,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Android.Build", "AndroidProject", False, "BuildCMake", "(System.String,System.Boolean)", "", "Argument[this].SyntheticField[Microsoft.Android.Build.AndroidProject.projectName]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Android.Build", "AndroidProject", False, "get_Abi", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.Android.Build", "AndroidBuildOptions", "get_CompilerArguments", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidBuildOptions", "get_IncludePaths", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidBuildOptions", "get_LinkerArguments", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidBuildOptions", "get_NativeLibraryPaths", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidBuildOptions", "get_Sources", "()", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidProject", "AndroidProject", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidProject", "Build", "(System.String,Microsoft.Mobile.Build.Clang.ClangBuildOptions,System.Boolean,System.String)", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidProject", "GenerateCMake", "(System.String,System.Boolean)", "summary", "df-generated"] - - ["Microsoft.Android.Build", "AndroidProject", "GenerateCMake", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Apple.Build.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Apple.Build.model.yml deleted file mode 100644 index 926814d55d1..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Apple.Build.model.yml +++ /dev/null @@ -1,18 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.Apple.Build", "AppleProject", False, "AppleProject", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Apple.Build", "AppleProject", False, "AppleProject", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Apple.Build", "AppleProject", False, "Build", "(System.String,Microsoft.Mobile.Build.Clang.ClangBuildOptions,System.Boolean)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - - ["Microsoft.Apple.Build", "AppleProject", False, "Build", "(System.String,Microsoft.Mobile.Build.Clang.ClangBuildOptions,System.String,System.Boolean)", "", "Argument[2]", "Argument[1].Property[Microsoft.Mobile.Build.Clang.ClangBuildOptions.CompilerArguments].Element", "taint", "dfc-generated"] - - ["Microsoft.Apple.Build", "AppleSdk", False, "AppleSdk", "(System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Apple.Build", "AppleSdk", False, "get_DeveloperRoot", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Apple.Build", "AppleSdk", False, "get_SdkRoot", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.Apple.Build", "AppleSdk", "GetPlatformName", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml index 38fcba62dc4..b80511d28af 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Diagnostics.Tools.Pgo.model.yml @@ -16,8 +16,6 @@ extensions: - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", False, "Edge", "(Microsoft.Diagnostics.Tools.Pgo.Node,Microsoft.Diagnostics.Tools.Pgo.Node,System.Int64,System.Int64,System.Int64)", "", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Source]", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.BackEdge].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Target]", "value", "dfc-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", False, "Edge", "(Microsoft.Diagnostics.Tools.Pgo.Node,Microsoft.Diagnostics.Tools.Pgo.Node,System.Int64,System.Int64,System.Int64)", "", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Target]", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.BackEdge].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Source]", "value", "dfc-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", False, "Edge", "(Microsoft.Diagnostics.Tools.Pgo.Node,Microsoft.Diagnostics.Tools.Pgo.Node,System.Int64,System.Int64,System.Int64)", "", "Argument[this]", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.BackEdge].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.BackEdge]", "value", "dfc-generated"] - - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", False, "ToString", "()", "", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Source]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", False, "ToString", "()", "", "Argument[this].Field[Microsoft.Diagnostics.Tools.Pgo.Edge.Target]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "FlowSmoothing", False, "MapEdges", "(System.Func,System.Int64,S>)", "", "Argument[0].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "FlowSmoothing", False, "MapNodes", "(System.Func)", "", "Argument[0].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "KeyValueMap", False, "KeyValueMap", "(TKey[],TValue[])", "", "Argument[1]", "Argument[this].SyntheticField[Microsoft.Diagnostics.Tools.Pgo.KeyValueMap`2._values]", "value", "dfc-generated"] @@ -36,6 +34,7 @@ extensions: - ["Microsoft.Diagnostics.Tools.Pgo", "CirculationGraph", "TotalCirculationCost", "()", "summary", "df-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", "AddFlow", "(System.Int64)", "summary", "df-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", "CheckEdgeConsistency", "()", "summary", "df-generated"] + - ["Microsoft.Diagnostics.Tools.Pgo", "Edge", "ToString", "()", "summary", "df-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "FlowSmoothing", "CheckGraphConsistency", "()", "summary", "df-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "FlowSmoothing", "FlowSmoothing", "(System.Collections.Generic.Dictionary,T,System.Func>,System.Func)", "summary", "df-generated"] - ["Microsoft.Diagnostics.Tools.Pgo", "FlowSmoothing", "MakeGraphFeasible", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml index ba7b07afb60..cabfe3ec13f 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.DotNet.Build.Tasks.model.yml @@ -8,7 +8,8 @@ extensions: - ["Microsoft.DotNet.Build.Tasks", "TpnDocument", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnDocument.Preamble]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.DotNet.Build.Tasks", "TpnDocument", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnDocument.Sections].Element", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.DotNet.Build.Tasks", "TpnSection", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnSection.Content]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.DotNet.Build.Tasks", "TpnSection", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnSection.Header]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.DotNet.Build.Tasks", "TpnSection", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnSection.Header].Property[Microsoft.DotNet.Build.Tasks.TpnSectionHeader.Name]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.DotNet.Build.Tasks", "TpnSection", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnSection.Header].Property[Microsoft.DotNet.Build.Tasks.TpnSectionHeader.SeparatorLine]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.DotNet.Build.Tasks", "TpnSectionHeader", False, "ParseAll", "(System.String[])", "", "Argument[0].Element", "ReturnValue.Element.Property[Microsoft.DotNet.Build.Tasks.TpnSectionHeader.Name]", "taint", "dfc-generated"] - ["Microsoft.DotNet.Build.Tasks", "TpnSectionHeader", False, "ParseAll", "(System.String[])", "", "Argument[0].Element", "ReturnValue.Element.Property[Microsoft.DotNet.Build.Tasks.TpnSectionHeader.SeparatorLine]", "value", "dfc-generated"] - ["Microsoft.DotNet.Build.Tasks", "TpnSectionHeader", False, "ToString", "()", "", "Argument[this].Property[Microsoft.DotNet.Build.Tasks.TpnSectionHeader.Name]", "ReturnValue", "taint", "dfc-generated"] @@ -19,7 +20,6 @@ extensions: extensible: neutralModel data: - ["Microsoft.DotNet.Build.Tasks", "BuildTask", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.DotNet.Build.Tasks", "GenerateChecksums", "Execute", "()", "summary", "df-generated"] - ["Microsoft.DotNet.Build.Tasks", "GenerateFileVersionProps", "Execute", "()", "summary", "df-generated"] - ["Microsoft.DotNet.Build.Tasks", "GenerateRunScript", "Execute", "()", "summary", "df-generated"] - ["Microsoft.DotNet.Build.Tasks", "GenerateTestSharedFrameworkDepsFile", "Execute", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml index 58f2a9347c4..a1a7e8244fa 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Distributed.model.yml @@ -19,6 +19,10 @@ extensions: - ["Microsoft.Extensions.Caching.Distributed", "DistributedCacheExtensions", "SetString", "(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Distributed", "DistributedCacheExtensions", "SetStringAsync", "(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Distributed", "DistributedCacheExtensions", "SetStringAsync", "(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Distributed", "IBufferDistributedCache", "Set", "(System.String,System.Buffers.ReadOnlySequence,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Distributed", "IBufferDistributedCache", "SetAsync", "(System.String,System.Buffers.ReadOnlySequence,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Distributed", "IBufferDistributedCache", "TryGet", "(System.String,System.Buffers.IBufferWriter)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Distributed", "IBufferDistributedCache", "TryGetAsync", "(System.String,System.Buffers.IBufferWriter,System.Threading.CancellationToken)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Distributed", "IDistributedCache", "Get", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Distributed", "IDistributedCache", "GetAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Distributed", "IDistributedCache", "Refresh", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Hybrid.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Hybrid.model.yml new file mode 100644 index 00000000000..7566d73477c --- /dev/null +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Hybrid.model.yml @@ -0,0 +1,16 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "GetOrCreateAsync", "(System.String,System.Func>,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "GetOrCreateAsync", "(System.String,TState,System.Func>,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "RemoveAsync", "(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "RemoveAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "RemoveByTagAsync", "(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "RemoveByTagAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "HybridCache", "SetAsync", "(System.String,T,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "IHybridCacheSerializer", "Deserialize", "(System.Buffers.ReadOnlySequence)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "IHybridCacheSerializer", "Serialize", "(T,System.Buffers.IBufferWriter)", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Hybrid", "IHybridCacheSerializerFactory", "TryCreateSerializer", "(Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml index b8a437e7063..c4aca39e7e9 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Caching.Memory.model.yml @@ -63,5 +63,6 @@ extensions: - ["Microsoft.Extensions.Caching.Memory", "MemoryCache", "Remove", "(System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Memory", "MemoryCache", "TryGetValue", "(System.Object,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Memory", "MemoryCache", "get_Count", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Caching.Memory", "MemoryCache", "get_Keys", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Memory", "MemoryCacheEntryOptions", "get_ExpirationTokens", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Caching.Memory", "MemoryCacheEntryOptions", "get_PostEvictionCallbacks", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml index 5493c5823a0..3896f91e4b4 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Binder.SourceGeneration.model.yml @@ -5,12 +5,19 @@ extensions: extensible: summaryModel data: - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "AsConfigWithChildren", "(Microsoft.Extensions.Configuration.IConfiguration)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.ConsoleLoggerOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.JsonConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.Console.SimpleConsoleFormatterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,System.Text.Encodings.Web.JavaScriptEncoder,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "BindCore", "(Microsoft.Extensions.Configuration.IConfiguration,System.Text.Json.JsonWriterOptions,System.Boolean,Microsoft.Extensions.Configuration.BinderOptions)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "Bind_ConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "Bind_ConsoleLoggerOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "Bind_JsonConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "Bind_SimpleConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "", "Argument[0]", "Argument[1].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatterOptions.TimestampFormat]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", False, "GetValue", "(Microsoft.Extensions.Configuration.IConfiguration,System.String,T)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InterceptorInfo", False, "GetInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.MethodsToGen)", "", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo.ConfigBinder].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InterceptorInfo", False, "GetInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.MethodsToGen)", "", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo.OptionsBuilderExt].Element", "ReturnValue.Element", "value", "dfc-generated"] @@ -22,18 +29,17 @@ extensions: - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "ObjectSpec", False, "ObjectSpec", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.Extensions.Configuration.Binder.SourceGeneration.ObjectInstantiationStrategy,SourceGenerators.ImmutableEquatableArray,SourceGenerators.ImmutableEquatableArray,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.ObjectSpec.InitExceptionMessage]", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "ParameterSpec", False, "ParameterSpec", "(Microsoft.CodeAnalysis.IParameterSymbol,SourceGenerators.TypeRef)", "", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.MemberSpec.TypeRef].Property[SourceGenerators.TypeRef.FullyQualifiedName]", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.MemberSpec.DefaultValueExpr]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypeSpec", False, "TypeSpec", "(Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypeSpec.TypeRef]", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypeSpec.EffectiveTypeRef]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo", False, "TypedInterceptorInvocationInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.ComplexTypeSpec,SourceGenerators.ImmutableEquatableArray)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo.TargetType]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo", False, "TypedInterceptorInvocationInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.ComplexTypeSpec,SourceGenerators.ImmutableEquatableArray)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo.Locations]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "Bind_ConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "Bind_ConsoleLoggerOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "Bind_JsonConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "Bind_SimpleConsoleFormatterOptions", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "GetValueCore", "(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseBool", "(System.String,System.Func)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseEnum", "(System.String,System.Func)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseInt", "(System.String,System.Func)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseBool", "(System.String,System.String)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseChar", "(System.String,System.String)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseEnum", "(System.String,System.String)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ParseInt", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingExtensions", "ValidateConfigurationKeys", "(System.Type,System.Lazy>,Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Configuration.BinderOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingHelperInfo", "op_Equality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.BindingHelperInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.BindingHelperInfo)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "BindingHelperInfo", "op_Inequality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.BindingHelperInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.BindingHelperInfo)", "summary", "df-generated"] @@ -46,9 +52,12 @@ extensions: - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "ConfigurationBindingGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InterceptorInfo", "op_Equality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InterceptorInfo", "op_Inequality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.InterceptorInfo)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "InterceptableLocationGetDisplayLocation", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "InvocationLocationInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.MethodsToGen,Microsoft.CodeAnalysis.Operations.IInvocationOperation)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_CharacterNumber", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_FilePath", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_InterceptableLocationData", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_InterceptableLocationVersion", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_Interceptor", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "get_LineNumber", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "InvocationLocationInfo", "op_Equality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.InvocationLocationInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.InvocationLocationInfo)", "summary", "df-generated"] @@ -102,6 +111,5 @@ extensions: - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo+Builder", "Builder", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.MethodsToGen,Microsoft.Extensions.Configuration.Binder.SourceGeneration.ComplexTypeSpec)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo+Builder", "RegisterInvocation", "(Microsoft.CodeAnalysis.Operations.IInvocationOperation)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo+Builder", "ToIncrementalValue", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo", "TypedInterceptorInvocationInfo", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.ComplexTypeSpec,SourceGenerators.ImmutableEquatableArray)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo", "op_Equality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Binder.SourceGeneration", "TypedInterceptorInvocationInfo", "op_Inequality", "(Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo,Microsoft.Extensions.Configuration.Binder.SourceGeneration.TypedInterceptorInvocationInfo)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml index d6887bfa0a4..59548fafc9f 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.CommandLine.model.yml @@ -1,9 +1,13 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["Microsoft.Extensions.Configuration.CommandLine", "CommandLineConfigurationProvider", False, "CommandLineConfigurationProvider", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IDictionary)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Args]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["Microsoft.Extensions.Configuration.CommandLine", "CommandLineConfigurationProvider", "CommandLineConfigurationProvider", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IDictionary)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.CommandLine", "CommandLineConfigurationProvider", "Load", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.CommandLine", "CommandLineConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] + - ["Microsoft.Extensions.Configuration.CommandLine", "CommandLineConfigurationProvider", "get_Args", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml index 9391d7ae32f..64f1ffdf171 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.EnvironmentVariables.model.yml @@ -11,4 +11,3 @@ extensions: extensible: neutralModel data: - ["Microsoft.Extensions.Configuration.EnvironmentVariables", "EnvironmentVariablesConfigurationProvider", "Load", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.EnvironmentVariables", "EnvironmentVariablesConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml index 23d983d193c..c53934225b2 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Ini.model.yml @@ -1,13 +1,16 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationProvider", False, "Read", "(System.IO.Stream)", "", "Argument[0]", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationProvider", False, "Read", "(System.IO.Stream)", "", "Argument[0]", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "taint", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - ["Microsoft.Extensions.Configuration.Ini", "IniConfigurationProvider", "IniConfigurationProvider", "(Microsoft.Extensions.Configuration.Ini.IniConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Ini", "IniConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Ini", "IniConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationProvider", "IniStreamConfigurationProvider", "(Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationProvider", "Read", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Ini", "IniStreamConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml index 4aa51d6d325..788cc726480 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Json.model.yml @@ -6,7 +6,5 @@ extensions: data: - ["Microsoft.Extensions.Configuration.Json", "JsonConfigurationProvider", "JsonConfigurationProvider", "(Microsoft.Extensions.Configuration.Json.JsonConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Json", "JsonConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Json", "JsonConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Json", "JsonStreamConfigurationProvider", "JsonStreamConfigurationProvider", "(Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Json", "JsonStreamConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Json", "JsonStreamConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml index 5befa2883de..3c062d97c7c 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Memory.model.yml @@ -10,4 +10,3 @@ extensions: extensible: neutralModel data: - ["Microsoft.Extensions.Configuration.Memory", "MemoryConfigurationProvider", "Add", "(System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Memory", "MemoryConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml index dd396ea022e..958f6516da6 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.UserSecrets.model.yml @@ -5,6 +5,7 @@ extensions: extensible: summaryModel data: - ["Microsoft.Extensions.Configuration.UserSecrets", "PathHelper", False, "GetSecretsPathFromSecretsId", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Configuration.UserSecrets", "UserSecretsIdAttribute", False, "UserSecretsIdAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.UserSecretsId]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: sourceModel @@ -14,5 +15,4 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: - - ["Microsoft.Extensions.Configuration.UserSecrets", "UserSecretsIdAttribute", "UserSecretsIdAttribute", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.UserSecrets", "UserSecretsIdAttribute", "get_UserSecretsId", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml index f3896c5a971..e40f736f517 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.Xml.model.yml @@ -13,7 +13,5 @@ extensions: data: - ["Microsoft.Extensions.Configuration.Xml", "XmlConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Xml", "XmlConfigurationProvider", "XmlConfigurationProvider", "(Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Xml", "XmlConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Xml", "XmlStreamConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration.Xml", "XmlStreamConfigurationProvider", "XmlStreamConfigurationProvider", "(Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration.Xml", "XmlStreamConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml index 95b0eb690a7..abd92a302ae 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Configuration.model.yml @@ -16,7 +16,12 @@ extensions: - ["Microsoft.Extensions.Configuration", "ConfigurationBuilder", False, "Add", "(Microsoft.Extensions.Configuration.IConfigurationSource)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBuilder", False, "Add", "(Microsoft.Extensions.Configuration.IConfigurationSource)", "", "Argument[0]", "ReturnValue.SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBuilder", False, "get_Sources", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", False, "ConfigurationDebugViewContext", "(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", False, "ConfigurationDebugViewContext", "(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", False, "ConfigurationDebugViewContext", "(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", False, "ConfigurationDebugViewContext", "(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider]", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationExtensions", False, "Add", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "ConfigurationKeyNameAttribute", False, "ConfigurationKeyNameAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name]", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationManager", False, "Add", "(Microsoft.Extensions.Configuration.IConfigurationSource)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationManager", False, "Add", "(Microsoft.Extensions.Configuration.IConfigurationSource)", "", "Argument[0]", "ReturnValue.SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationManager", False, "get_Sources", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources]", "ReturnValue", "value", "dfc-generated"] @@ -39,13 +44,16 @@ extensions: - ["Microsoft.Extensions.Configuration", "FileConfigurationExtensions", False, "SetBasePath", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationExtensions", False, "SetFileLoadExceptionHandler", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationExtensions", False, "SetFileProvider", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", False, "FileConfigurationProvider", "(Microsoft.Extensions.Configuration.FileConfigurationSource)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source]", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source].Property[Microsoft.Extensions.Configuration.FileConfigurationSource.Path]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "FileConfigurationSource", False, "EnsureDefaults", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfiguration", True, "GetReloadToken", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationBuilder", True, "Add", "(Microsoft.Extensions.Configuration.IConfigurationSource)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationBuilder", True, "get_Properties", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationProvider", True, "GetChildKeys", "(System.Collections.Generic.IEnumerable,System.String)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationProvider", True, "GetReloadToken", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationRoot", True, "get_Providers", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Configuration", "IConfigurationSource", True, "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Configuration", "IniConfigurationExtensions", False, "AddIniFile", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "IniConfigurationExtensions", False, "AddIniFile", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "IniConfigurationExtensions", False, "AddIniFile", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -60,6 +68,7 @@ extensions: - ["Microsoft.Extensions.Configuration", "JsonConfigurationExtensions", False, "AddJsonStream", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.IO.Stream)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "MemoryConfigurationBuilderExtensions", False, "AddInMemoryCollection", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "MemoryConfigurationBuilderExtensions", False, "AddInMemoryCollection", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable>)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Configuration", "StreamConfigurationProvider", False, "StreamConfigurationProvider", "(Microsoft.Extensions.Configuration.StreamConfigurationSource)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source]", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "UserSecretsConfigurationExtensions", False, "AddUserSecrets", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "UserSecretsConfigurationExtensions", False, "AddUserSecrets", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Configuration", "UserSecretsConfigurationExtensions", False, "AddUserSecrets", "(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean,System.Boolean)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -81,7 +90,6 @@ extensions: - ["Microsoft.Extensions.Configuration", "ChainedConfigurationProvider", "Dispose", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ChainedConfigurationProvider", "Load", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ChainedConfigurationProvider", "Set", "(System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "ChainedConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "Bind", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "Bind", "(Microsoft.Extensions.Configuration.IConfiguration,System.Object,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "Bind", "(Microsoft.Extensions.Configuration.IConfiguration,System.String,System.Object)", "summary", "df-generated"] @@ -89,7 +97,6 @@ extensions: - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "Get", "(Microsoft.Extensions.Configuration.IConfiguration,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "GetValue", "(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationBinder", "GetValue", "(Microsoft.Extensions.Configuration.IConfiguration,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", "ConfigurationDebugViewContext", "(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", "get_ConfigurationProvider", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", "get_Key", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationDebugViewContext", "get_Path", "()", "summary", "df-generated"] @@ -101,7 +108,6 @@ extensions: - ["Microsoft.Extensions.Configuration", "ConfigurationExtensions", "GetRequiredSection", "(Microsoft.Extensions.Configuration.IConfiguration,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationKeyComparer", "Compare", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationKeyComparer", "get_Instance", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "ConfigurationKeyNameAttribute", "ConfigurationKeyNameAttribute", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationKeyNameAttribute", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationManager", "Dispose", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "ConfigurationManager", "GetChildren", "()", "summary", "df-generated"] @@ -126,12 +132,9 @@ extensions: - ["Microsoft.Extensions.Configuration", "ConfigurationSection", "set_Item", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "Dispose", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "FileConfigurationProvider", "(Microsoft.Extensions.Configuration.FileConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "Load", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationProvider", "get_Source", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "FileConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "FileConfigurationSource", "EnsureDefaults", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "FileConfigurationSource", "ResolveFileProvider", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfiguration", "GetChildren", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfiguration", "GetSection", "(System.String)", "summary", "df-generated"] @@ -143,9 +146,6 @@ extensions: - ["Microsoft.Extensions.Configuration", "IConfigurationRoot", "Reload", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationSection", "get_Key", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "IConfigurationSection", "get_Path", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "IConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "StreamConfigurationProvider", "Load", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "StreamConfigurationProvider", "Load", "(System.IO.Stream)", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "StreamConfigurationProvider", "StreamConfigurationProvider", "(Microsoft.Extensions.Configuration.StreamConfigurationSource)", "summary", "df-generated"] - ["Microsoft.Extensions.Configuration", "StreamConfigurationProvider", "get_Source", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Configuration", "StreamConfigurationSource", "Build", "(Microsoft.Extensions.Configuration.IConfigurationBuilder)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml index f476329784d..d20498238c6 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.Specification.model.yml @@ -10,6 +10,10 @@ extensions: - ["Microsoft.Extensions.DependencyInjection.Specification", "ClassWithOptionalArgsCtorWithStructs", False, "ClassWithOptionalArgsCtorWithStructs", "(System.DateTime,System.DateTime,System.TimeSpan,System.TimeSpan,System.DateTimeOffset,System.DateTimeOffset,System.Guid,System.Guid,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,System.Nullable,System.Nullable,System.Nullable,System.Nullable,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+StructWithPublicDefaultConstructor)", "", "Argument[12]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.Integer]", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "ClassWithOptionalArgsCtorWithStructs", False, "ClassWithOptionalArgsCtorWithStructs", "(System.DateTime,System.DateTime,System.TimeSpan,System.TimeSpan,System.DateTimeOffset,System.DateTimeOffset,System.Guid,System.Guid,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,System.Nullable,System.Nullable,System.Nullable,System.Nullable,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+StructWithPublicDefaultConstructor)", "", "Argument[13]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.IntegerNull]", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "ClassWithOptionalArgsCtorWithStructs", False, "ClassWithOptionalArgsCtorWithStructs", "(System.DateTime,System.DateTime,System.TimeSpan,System.TimeSpan,System.DateTimeOffset,System.DateTimeOffset,System.Guid,System.Guid,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+CustomStruct,System.Nullable,System.Nullable,System.Nullable,System.Nullable,Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs+StructWithPublicDefaultConstructor)", "", "Argument[14]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.Specification.ClassWithOptionalArgsCtorWithStructs.StructWithConstructor]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+OtherService", False, "OtherService", "(Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+IService,Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+IService)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+OtherService.Service1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+OtherService", False, "OtherService", "(Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+IService,Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+IService)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+OtherService.Service2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+Service", False, "Service", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+Service._id]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+Service", False, "ToString", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.DependencyInjection.Specification.KeyedDependencyInjectionSpecificationTests+Service._id]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+SimpleParentWithDynamicKeyedService", False, "SimpleParentWithDynamicKeyedService", "(System.IServiceProvider)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all @@ -92,6 +96,8 @@ extensions: - ["Microsoft.Extensions.DependencyInjection.Specification", "DependencyInjectionSpecificationTests", "get_ServiceContainerPicksConstructorWithLongestMatchesData", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "DependencyInjectionSpecificationTests", "get_SupportsIServiceProviderIsService", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "DependencyInjectionSpecificationTests", "get_TypesWithNonPublicConstructorData", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+OtherService", "get_Service1", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+OtherService", "get_Service2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests+SimpleParentWithDynamicKeyedService", "GetService", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ClosedGenericsWithIsKeyedService", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "CreateServiceProvider", "(Microsoft.Extensions.DependencyInjection.IServiceCollection)", "summary", "df-generated"] @@ -112,9 +118,14 @@ extensions: - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceSingletonInstanceWithKeyInjection", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceSingletonInstanceWithKeyedParameter", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceSingletonType", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceThrowsIfNotSupported", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceTransientFactory", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceTransientType", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceTransientTypeWithAnyKey", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceWithKeyedParameter_MissingRegistrationButWithDefaults", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceWithKeyedParameter_MissingRegistrationButWithUnkeyedService", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceWithKeyedParameter_MissingRegistration_FirstParameter", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServiceWithKeyedParameter_MissingRegistration_SecondParameter", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServices", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServicesAnyKey", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection.Specification", "KeyedDependencyInjectionSpecificationTests", "ResolveKeyedServicesAnyKeyWithAnyKeyRegistration", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml index 2d9fe696bca..9f127f2b111 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyInjection.model.yml @@ -11,6 +11,8 @@ extensions: - ["Microsoft.Extensions.DependencyInjection", "AsyncServiceScope", False, "get_ServiceProvider", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.DependencyInjection.AsyncServiceScope._serviceScope]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "DefaultServiceProviderFactory", False, "CreateBuilder", "(Microsoft.Extensions.DependencyInjection.IServiceCollection)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "DefaultServiceProviderFactory", False, "DefaultServiceProviderFactory", "(Microsoft.Extensions.DependencyInjection.ServiceProviderOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection", "FromKeyedServicesAttribute", False, "FromKeyedServicesAttribute", "(System.Object)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.Key]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "AddAsKeyed", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.DependencyInjection.ServiceLifetime)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "AddDefaultLogger", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "AddHttpMessageHandler", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "AddHttpMessageHandler", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -32,6 +34,7 @@ extensions: - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "RedactLoggedHeaders", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "RedactLoggedHeaders", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "RemoveAllLoggers", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "RemoveAsKeyed", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "SetHandlerLifetime", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.TimeSpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "UseSocketsHttpHandler", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientBuilderExtensions", False, "UseSocketsHttpHandler", "(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -167,7 +170,6 @@ extensions: - ["Microsoft.Extensions.DependencyInjection", "ActivatorUtilities", "CreateInstance", "(System.IServiceProvider,System.Object[])", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "AsyncServiceScope", "Dispose", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "DefaultServiceProviderFactory", "CreateServiceProvider", "(Microsoft.Extensions.DependencyInjection.IServiceCollection)", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyInjection", "FromKeyedServicesAttribute", "FromKeyedServicesAttribute", "(System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "FromKeyedServicesAttribute", "get_Key", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientFactoryServiceCollectionExtensions", "AddHttpClient", "(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "HttpClientFactoryServiceCollectionExtensions", "AddHttpClient", "(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action)", "summary", "df-generated"] @@ -237,6 +239,7 @@ extensions: - ["Microsoft.Extensions.DependencyInjection", "ServiceProvider", "Dispose", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "ServiceProvider", "GetKeyedService", "(System.Type,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "ServiceProvider", "GetRequiredKeyedService", "(System.Type,System.Object)", "summary", "df-generated"] + - ["Microsoft.Extensions.DependencyInjection", "ServiceProviderKeyedServiceExtensions", "GetKeyedService", "(System.IServiceProvider,System.Type,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "ServiceProviderKeyedServiceExtensions", "GetKeyedService", "(System.IServiceProvider,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "ServiceProviderKeyedServiceExtensions", "GetKeyedServices", "(System.IServiceProvider,System.Type,System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyInjection", "ServiceProviderKeyedServiceExtensions", "GetKeyedServices", "(System.IServiceProvider,System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml index 3b1f1aa1e0a..0da3c155762 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.DependencyModel.model.yml @@ -4,25 +4,64 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", False, "CompilationLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String)", "", "Argument[4].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationLibrary.Assemblies].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", False, "ResolveReferencePaths", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", False, "ResolveReferencePaths", "(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", False, "ResolveReferencePaths", "(Microsoft.Extensions.DependencyModel.Resolution.ICompilationAssemblyResolver[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[10]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.EmitEntryPoint]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[11]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.GenerateXmlDocumentation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.LanguageVersion]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.Platform]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.AllowUnsafe]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.WarningsAsErrors]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.Optimize]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.KeyFile]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[7]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.DelaySign]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[8]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.PublicSign]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", False, "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "", "Argument[9]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.CompilationOptions.DebugType]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Dependency", False, "Dependency", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Dependency.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Dependency", False, "Dependency", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Dependency.Version]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "DependencyContext", False, "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.DependencyContext.Target]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "DependencyContext", False, "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.DependencyContext.CompilationOptions]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "DependencyContext", False, "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.DependencyContext.CompileLibraries].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "DependencyContext", False, "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[3].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeLibraries].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "DependencyContext", False, "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[4].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.DependencyContext.RuntimeGraph].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContextExtensions", False, "GetDefaultNativeAssets", "(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContextExtensions", False, "GetDefaultNativeRuntimeFileAssets", "(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContextExtensions", False, "GetRuntimeNativeAssets", "(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContextExtensions", False, "GetRuntimeNativeRuntimeFileAssets", "(Microsoft.Extensions.DependencyModel.RuntimeLibrary,Microsoft.Extensions.DependencyModel.DependencyContext,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "RuntimeAssembly", False, "RuntimeAssembly", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Type]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Version]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Hash]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[4].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Dependencies].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[7]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.HashPath]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "Library", False, "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[8]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.Library.RuntimeStoreManifestName]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "ResourceAssembly", False, "ResourceAssembly", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.ResourceAssembly.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "ResourceAssembly", False, "ResourceAssembly", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.ResourceAssembly.Locale]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeAssembly", False, "RuntimeAssembly", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeAssembly.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", False, "RuntimeAssetGroup", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.Runtime]", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", False, "RuntimeAssetGroup", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "Argument[this].SyntheticField[Microsoft.Extensions.DependencyModel.RuntimeAssetGroup._runtimeFiles].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", False, "RuntimeAssetGroup", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeAssetGroup.Runtime]", "value", "dfc-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", False, "get_AssetPaths", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", False, "get_RuntimeFiles", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.DependencyModel.RuntimeAssetGroup._runtimeFiles]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeFallbacks", False, "RuntimeFallbacks", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeFallbacks.Runtime]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", False, "RuntimeFile", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeFile.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", False, "RuntimeFile", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeFile.AssemblyVersion]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", False, "RuntimeFile", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeFile.FileVersion]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", False, "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeLibrary.RuntimeAssemblyGroups]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", False, "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeLibrary.NativeLibraryGroups]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", False, "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "", "Argument[6].Element", "Argument[this].Property[Microsoft.Extensions.DependencyModel.RuntimeLibrary.ResourceAssemblies].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "TargetInfo", False, "TargetInfo", "(System.String,System.String,System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.TargetInfo.Framework]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "TargetInfo", False, "TargetInfo", "(System.String,System.String,System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.TargetInfo.Runtime]", "value", "dfc-generated"] + - ["Microsoft.Extensions.DependencyModel", "TargetInfo", False, "TargetInfo", "(System.String,System.String,System.String,System.Boolean)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.DependencyModel.TargetInfo.RuntimeSignature]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", "CompilationLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean)", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", "CompilationLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationLibrary", "get_Assemblies", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "CompilationOptions", "(System.Collections.Generic.IEnumerable,System.String,System.String,System.Nullable,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable,System.String,System.Nullable,System.Nullable)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_AllowUnsafe", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_DebugType", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_Default", "()", "summary", "df-generated"] @@ -36,13 +75,11 @@ extensions: - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_Platform", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_PublicSign", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "CompilationOptions", "get_WarningsAsErrors", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "Dependency", "Dependency", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Dependency", "Equals", "(Microsoft.Extensions.DependencyModel.Dependency)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Dependency", "Equals", "(System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Dependency", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Dependency", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Dependency", "get_Version", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "DependencyContext", "DependencyContext", "(Microsoft.Extensions.DependencyModel.TargetInfo,Microsoft.Extensions.DependencyModel.CompilationOptions,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContext", "Load", "(System.Reflection.Assembly)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContext", "Merge", "(Microsoft.Extensions.DependencyModel.DependencyContext)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "DependencyContext", "get_CompilationOptions", "()", "summary", "df-generated"] @@ -68,7 +105,6 @@ extensions: - ["Microsoft.Extensions.DependencyModel", "IDependencyContextReader", "Read", "(System.IO.Stream)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "Library", "Library", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "get_Dependencies", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "get_Hash", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "get_HashPath", "()", "summary", "df-generated"] @@ -78,26 +114,20 @@ extensions: - ["Microsoft.Extensions.DependencyModel", "Library", "get_Serviceable", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "get_Type", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "Library", "get_Version", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "ResourceAssembly", "ResourceAssembly", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssembly", "Create", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssembly", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssembly", "get_Path", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", "RuntimeAssetGroup", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", "RuntimeAssetGroup", "(System.String,System.String[])", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeAssetGroup", "get_Runtime", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "RuntimeFallbacks", "RuntimeFallbacks", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeFallbacks", "RuntimeFallbacks", "(System.String,System.String[])", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", "RuntimeFile", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", "get_AssemblyVersion", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", "get_FileVersion", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeFile", "get_Path", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "RuntimeLibrary", "(System.String,System.String,System.String,System.String,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Boolean,System.String,System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "get_NativeLibraryGroups", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "get_ResourceAssemblies", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "RuntimeLibrary", "get_RuntimeAssemblyGroups", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.DependencyModel", "TargetInfo", "TargetInfo", "(System.String,System.String,System.String,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "TargetInfo", "get_Framework", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "TargetInfo", "get_IsPortable", "()", "summary", "df-generated"] - ["Microsoft.Extensions.DependencyModel", "TargetInfo", "get_Runtime", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml index 778e72b617f..82a9d9c0213 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.Physical.model.yml @@ -6,7 +6,6 @@ extensions: data: - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalDirectoryInfo", False, "PhysicalDirectoryInfo", "(System.IO.DirectoryInfo)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalDirectoryInfo", False, "get_Name", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.DirectoryInfo.Name]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalDirectoryInfo", False, "get_PhysicalPath", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Field[System.IO.FileSystemInfo.FullPath]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalDirectoryInfo", False, "get_PhysicalPath", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.FileSystemInfo.FullName]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalFileInfo", False, "CreateReadStream", "()", "", "Argument[this].Property[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.PhysicalPath]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Extensions.FileProviders.Physical", "PhysicalFileInfo", False, "CreateReadStream", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo._info].Property[System.IO.FileSystemInfo.FullName]", "ReturnValue", "taint", "dfc-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml index e9a6ddcb600..9a81ce456d2 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileProviders.model.yml @@ -7,6 +7,8 @@ extensions: - ["Microsoft.Extensions.FileProviders", "CompositeFileProvider", False, "CompositeFileProvider", "(Microsoft.Extensions.FileProviders.IFileProvider[])", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileProviders", "CompositeFileProvider", False, "CompositeFileProvider", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.FileProviders", "CompositeFileProvider", False, "get_FileProviders", "()", "", "Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", False, "NotFoundFileInfo", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileProviders.NotFoundFileInfo.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", False, "PhysicalFileProvider", "(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileProviders.PhysicalFileProvider.Root]", "taint", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -28,7 +30,6 @@ extensions: - ["Microsoft.Extensions.FileProviders", "NotFoundDirectoryContents", "get_Exists", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "NotFoundDirectoryContents", "get_Singleton", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", "CreateReadStream", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", "NotFoundFileInfo", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", "get_Exists", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", "get_IsDirectory", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "NotFoundFileInfo", "get_LastModified", "()", "summary", "df-generated"] @@ -46,6 +47,5 @@ extensions: - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "GetDirectoryContents", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "GetFileInfo", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "PhysicalFileProvider", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "PhysicalFileProvider", "(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters)", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "Watch", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileProviders", "PhysicalFileProvider", "get_Root", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml index 111c339ac36..1fdab7aa87c 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.model.yml @@ -1,5 +1,13 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", False, "LiteralPathSegment", "(System.String,System.StringComparison)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Value]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", False, "WildcardPathSegment", "(System.String,System.Collections.Generic.List,System.String,System.StringComparison)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.BeginsWith]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", False, "WildcardPathSegment", "(System.String,System.Collections.Generic.List,System.String,System.StringComparison)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Contains]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", False, "WildcardPathSegment", "(System.String,System.Collections.Generic.List,System.String,System.StringComparison)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.EndsWith]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -8,7 +16,6 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "CurrentPathSegment", "get_CanProduceStem", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "Equals", "(System.Object)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "GetHashCode", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "LiteralPathSegment", "(System.String,System.StringComparison)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "Match", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "get_CanProduceStem", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "LiteralPathSegment", "get_Value", "()", "summary", "df-generated"] @@ -17,7 +24,6 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "RecursiveWildcardSegment", "Match", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "RecursiveWildcardSegment", "get_CanProduceStem", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", "Match", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", "WildcardPathSegment", "(System.String,System.Collections.Generic.List,System.String,System.StringComparison)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", "get_BeginsWith", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", "get_CanProduceStem", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments", "WildcardPathSegment", "get_Contains", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml index 7c016072636..7d835210a5a 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.model.yml @@ -8,11 +8,17 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear+FrameData", False, "get_Stem", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", False, "CalculateStem", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", False, "CalculateStem", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", False, "PatternContextLinear", "(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Pattern]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", True, "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name]", "ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", True, "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem]", "ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem]", "taint", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged+FrameData", False, "get_Stem", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", False, "CalculateStem", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", False, "CalculateStem", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", False, "PatternContextRagged", "(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", False, "PushDirectory", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", "", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.EndsWith]", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", False, "PushDirectory", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", "", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.StartsWith]", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", True, "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name]", "ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", True, "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "", "Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem]", "ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem]", "taint", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -25,9 +31,7 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContext", "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear+FrameData", "get_StemItems", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "IsLastSegment", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "PatternContextLinear", "(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "PushDirectory", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "TestMatchingSegment", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinear", "get_Pattern", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextLinearExclude", "PatternContextLinearExclude", "(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)", "summary", "df-generated"] @@ -38,9 +42,7 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged+FrameData", "get_StemItems", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "IsEndingGroup", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "IsStartingGroup", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "PatternContextRagged", "(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "PopDirectory", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "Test", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "TestMatchingGroup", "(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "TestMatchingSegment", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts", "PatternContextRagged", "get_Pattern", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml index 704921ea8f0..3e8720ecc71 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.Internal.model.yml @@ -5,6 +5,7 @@ extensions: extensible: summaryModel data: - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "MatcherContext", False, "MatcherContext", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase,System.StringComparison)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "PatternTestResult", False, "Success", "(System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -24,6 +25,5 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "IRaggedPattern", "get_Segments", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "IRaggedPattern", "get_StartsWith", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "MatcherContext", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "PatternTestResult", "Success", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "PatternTestResult", "get_IsSuccessful", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing.Internal", "PatternTestResult", "get_Stem", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml index 6d9cc350b03..fb2786c0abc 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.FileSystemGlobbing.model.yml @@ -4,16 +4,20 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", False, "FilePatternMatch", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", False, "FilePatternMatch", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "InMemoryDirectoryInfo", True, "GetFile", "(System.String)", "", "Argument[this]", "ReturnValue.SyntheticField[Microsoft.Extensions.FileSystemGlobbing.Internal.InMemoryFileInfo._parent]", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "Matcher", True, "AddExclude", "(System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "Matcher", True, "AddInclude", "(System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", False, "GetResultsInFullPath", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", "", "Argument[1]", "ReturnValue.Element", "taint", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing", "PatternMatchingResult", False, "PatternMatchingResult", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files]", "value", "dfc-generated"] + - ["Microsoft.Extensions.FileSystemGlobbing", "PatternMatchingResult", False, "PatternMatchingResult", "(System.Collections.Generic.IEnumerable,System.Boolean)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "Equals", "(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "Equals", "(System.Object)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "FilePatternMatch", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "get_Path", "()", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "FilePatternMatch", "get_Stem", "()", "summary", "df-generated"] @@ -22,11 +26,8 @@ extensions: - ["Microsoft.Extensions.FileSystemGlobbing", "Matcher", "Matcher", "(System.StringComparison)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "AddExcludePatterns", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable[])", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "AddIncludePatterns", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable[])", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "GetResultsInFullPath", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "Match", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "Match", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "Match", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "MatcherExtensions", "Match", "(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing", "PatternMatchingResult", "PatternMatchingResult", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["Microsoft.Extensions.FileSystemGlobbing", "PatternMatchingResult", "PatternMatchingResult", "(System.Collections.Generic.IEnumerable,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Extensions.FileSystemGlobbing", "PatternMatchingResult", "get_HasMatches", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml index 7a6af8383e4..f97498bec43 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Hosting.model.yml @@ -6,8 +6,11 @@ extensions: data: - ["Microsoft.Extensions.Hosting", "BackgroundService", True, "get_ExecuteTask", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Hosting", "Host", False, "CreateEmptyApplicationBuilder", "(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", "", "Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args]", "ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Hosting", "Host", False, "CreateEmptyApplicationBuilder", "(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", "", "Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration]", "ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration]", "value", "dfc-generated"] - ["Microsoft.Extensions.Hosting", "HostApplicationBuilder", False, "HostApplicationBuilder", "(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", "", "Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args]", "Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Hosting", "HostApplicationBuilder", False, "HostApplicationBuilder", "(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)", "", "Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration]", "Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration]", "value", "dfc-generated"] - ["Microsoft.Extensions.Hosting", "HostApplicationBuilder", False, "get_Configuration", "()", "", "Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Hosting", "HostBuilderContext", False, "HostBuilderContext", "(System.Collections.Generic.IDictionary)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Hosting.HostBuilderContext.Properties]", "value", "dfc-generated"] - ["Microsoft.Extensions.Hosting", "HostingHostBuilderExtensions", False, "ConfigureAppConfiguration", "(Microsoft.Extensions.Hosting.IHostBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Hosting", "HostingHostBuilderExtensions", False, "ConfigureContainer", "(Microsoft.Extensions.Hosting.IHostBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Hosting", "HostingHostBuilderExtensions", False, "ConfigureDefaults", "(Microsoft.Extensions.Hosting.IHostBuilder,System.String[])", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -69,7 +72,6 @@ extensions: - ["Microsoft.Extensions.Hosting", "HostApplicationBuilder", "get_Configuration", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Hosting", "HostBuilder", "Build", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Hosting", "HostBuilder", "get_Properties", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Hosting", "HostBuilderContext", "HostBuilderContext", "(System.Collections.Generic.IDictionary)", "summary", "df-generated"] - ["Microsoft.Extensions.Hosting", "HostBuilderContext", "get_Properties", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Hosting", "HostEnvironmentEnvExtensions", "IsDevelopment", "(Microsoft.Extensions.Hosting.IHostEnvironment)", "summary", "df-generated"] - ["Microsoft.Extensions.Hosting", "HostEnvironmentEnvExtensions", "IsEnvironment", "(Microsoft.Extensions.Hosting.IHostEnvironment,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml index 78b72199f65..ffdf0b8326b 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Abstractions.model.yml @@ -1,10 +1,29 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", False, "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", False, "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", False, "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", False, "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", False, "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", "LogEntry", "(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func)", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_ActivitySpanId", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_ActivityTraceId", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_Attributes", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_EventId", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_Exception", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_FormattedMessage", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_LogLevel", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_ManagedThreadId", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_MessageTemplate", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "BufferedLogRecord", "get_Timestamp", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Abstractions", "IBufferedLogger", "LogRecords", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", "get_Category", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", "get_EventId", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Abstractions", "LogEntry", "get_Exception", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml index 40e4e40223d..fb69f5240e1 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Console.model.yml @@ -5,6 +5,7 @@ extensions: extensible: summaryModel data: - ["Microsoft.Extensions.Logging.Console", "ConfigurationConsoleLoggerSettings", False, "ConfigurationConsoleLoggerSettings", "(Microsoft.Extensions.Configuration.IConfiguration)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Logging.Console", "ConsoleFormatter", False, "ConsoleFormatter", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name]", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging.Console", "ConsoleFormatter", True, "Write", "(Microsoft.Extensions.Logging.Abstractions.LogEntry,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "ConsoleLoggerProvider", False, "ConsoleLoggerProvider", "(Microsoft.Extensions.Options.IOptionsMonitor,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "IConsoleLoggerSettings", True, "Reload", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] @@ -14,7 +15,6 @@ extensions: data: - ["Microsoft.Extensions.Logging.Console", "ConfigurationConsoleLoggerSettings", "TryGetSwitch", "(System.String,Microsoft.Extensions.Logging.LogLevel)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "ConfigurationConsoleLoggerSettings", "get_IncludeScopes", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging.Console", "ConsoleFormatter", "ConsoleFormatter", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "ConsoleFormatter", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "ConsoleLoggerProvider", "ConsoleLoggerProvider", "(Microsoft.Extensions.Options.IOptionsMonitor)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Console", "ConsoleLoggerProvider", "Dispose", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml index 1f14aa970ae..c6b1149824e 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.Generators.model.yml @@ -22,6 +22,7 @@ extensions: - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_MissingLoggerField", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_MissingRequiredType", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_MultipleLoggerFields", "()", "summary", "df-generated"] + - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_PrimaryConstructorParameterLoggerHidden", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_RedundantQualifierInMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_ShouldntMentionExceptionInMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging.Generators", "DiagnosticDescriptors", "get_ShouldntMentionLogLevelInMessage", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml index 22ca3029111..594b3ca302e 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Logging.model.yml @@ -26,6 +26,7 @@ extensions: - ["Microsoft.Extensions.Logging", "DebugLoggerFactoryExtensions", False, "AddDebug", "(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.LogLevel)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "DebugLoggerFactoryExtensions", False, "AddDebug", "(Microsoft.Extensions.Logging.ILoggerFactory,System.Func)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "DebugLoggerFactoryExtensions", False, "AddDebug", "(Microsoft.Extensions.Logging.ILoggingBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "EventId", False, "EventId", "(System.Int32,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name]", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "EventId", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "EventLoggerFactoryExtensions", False, "AddEventLog", "(Microsoft.Extensions.Logging.ILoggerFactory)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "EventLoggerFactoryExtensions", False, "AddEventLog", "(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.EventLog.EventLogSettings)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -73,12 +74,21 @@ extensions: - ["Microsoft.Extensions.Logging", "LoggerFactory", False, "LoggerFactory", "(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFactory", False, "LoggerFactory", "(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFilterOptions", False, "get_Rules", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "LoggerFilterRule", "(System.String,System.String,System.Nullable,System.Func)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "LoggerFilterRule", "(System.String,System.String,System.Nullable,System.Func)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "LoggerFilterRule", "(System.String,System.String,System.Nullable,System.Func)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "LoggerFilterRule", "(System.String,System.String,System.Nullable,System.Func)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.Filter]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerFilterRule", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", False, "LoggerMessageAttribute", "(Microsoft.Extensions.Logging.LogLevel,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", False, "LoggerMessageAttribute", "(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", False, "LoggerMessageAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message]", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "LoggingBuilderExtensions", False, "AddConfiguration", "(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "LoggingBuilderExtensions", False, "AddProvider", "(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.ILoggerProvider)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "LoggingBuilderExtensions", False, "ClearProviders", "(Microsoft.Extensions.Logging.ILoggingBuilder)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "LoggingBuilderExtensions", False, "Configure", "(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "LoggingBuilderExtensions", False, "SetMinimumLevel", "(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LogLevel)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Logging", "ProviderAliasAttribute", False, "ProviderAliasAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Logging.ProviderAliasAttribute.Alias]", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "TraceSourceFactoryExtensions", False, "AddTraceSource", "(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "TraceSourceFactoryExtensions", False, "AddTraceSource", "(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Logging", "TraceSourceFactoryExtensions", False, "AddTraceSource", "(Microsoft.Extensions.Logging.ILoggerFactory,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -93,7 +103,6 @@ extensions: data: - ["Microsoft.Extensions.Logging", "EventId", "Equals", "(Microsoft.Extensions.Logging.EventId)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "EventId", "Equals", "(System.Object)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "EventId", "EventId", "(System.Int32,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "EventId", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "EventId", "get_Id", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "EventId", "get_Name", "()", "summary", "df-generated"] @@ -140,7 +149,6 @@ extensions: - ["Microsoft.Extensions.Logging", "LoggerFactory", "LoggerFactory", "(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFactoryExtensions", "CreateLogger", "(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFactoryExtensions", "CreateLogger", "(Microsoft.Extensions.Logging.ILoggerFactory)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "LoggerFilterRule", "LoggerFilterRule", "(System.String,System.String,System.Nullable,System.Func)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFilterRule", "get_CategoryName", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFilterRule", "get_Filter", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerFilterRule", "get_LogLevel", "()", "summary", "df-generated"] @@ -167,8 +175,4 @@ extensions: - ["Microsoft.Extensions.Logging", "LoggerMessage", "DefineScope", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerMessage", "DefineScope", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", "LoggerMessageAttribute", "(Microsoft.Extensions.Logging.LogLevel)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", "LoggerMessageAttribute", "(Microsoft.Extensions.Logging.LogLevel,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", "LoggerMessageAttribute", "(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "LoggerMessageAttribute", "LoggerMessageAttribute", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Logging", "ProviderAliasAttribute", "ProviderAliasAttribute", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Logging", "ProviderAliasAttribute", "get_Alias", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml index 94bcb441f53..09e2777ec50 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Options.model.yml @@ -4,21 +4,52 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["Microsoft.Extensions.Options", "ConfigurationChangeTokenSource", False, "ConfigurationChangeTokenSource", "(System.String,Microsoft.Extensions.Configuration.IConfiguration)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigurationChangeTokenSource", False, "ConfigurationChangeTokenSource", "(System.String,Microsoft.Extensions.Configuration.IConfiguration)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigurationChangeTokenSource", False, "GetChangeToken", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,TDep,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", False, "ConfigureNamedOptions", "(System.String,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", True, "Configure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ConfigureOptions", False, "ConfigureOptions", "(System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ConfigureOptions`1.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ConfigureOptions", True, "Configure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "DataAnnotationValidateOptions", False, "DataAnnotationValidateOptions", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "OptionsBuilder", False, "OptionsBuilder", "(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Services]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "OptionsBuilder", False, "OptionsBuilder", "(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Name]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Configure", "(System.Action)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Configure", "(System.Action)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Configure", "(System.Action)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] @@ -43,35 +74,110 @@ extensions: - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Validate", "(System.Func,System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Validate", "(System.Func)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", True, "Validate", "(System.Func,System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "OptionsFactory", False, "Create", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsFactory", False, "OptionsFactory", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsFactory", False, "OptionsFactory", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsFactory", False, "OptionsFactory", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>)", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsManager", False, "OptionsManager", "(Microsoft.Extensions.Options.IOptionsFactory)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsMonitor", False, "OptionsMonitor", "(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsMonitor", False, "OptionsMonitor", "(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "OptionsValidationException", False, "OptionsValidationException", "(System.String,System.Type,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.OptionsName]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "OptionsValidationException", False, "OptionsValidationException", "(System.String,System.Type,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "OptionsValidationException", True, "get_Message", "()", "", "Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures].Element", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Options", "OptionsWrapper", False, "OptionsWrapper", "(TOptions)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.OptionsWrapper`1.Value]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep1,TDep2,System.Action)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigure", "(TOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,TDep,System.Action)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,System.Action)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "PostConfigureOptions", False, "PostConfigureOptions", "(System.String,System.Action)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Action]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", True, "PostConfigure", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency5]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "", "Argument[7]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency4]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "", "Argument[6]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency3]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "", "Argument[5]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage]", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency1]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency2]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "", "Argument[4]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Dependency]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,TDep,System.Func,System.String)", "", "Argument[3]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "Validate", "(System.String,TOptions)", "", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,System.Func,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Name]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,System.Func,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Validation]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptions", False, "ValidateOptions", "(System.String,System.Func,System.String)", "", "Argument[2]", "Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptionsResult", False, "Fail", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage]", "taint", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptionsResult", False, "Fail", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptionsResult", False, "Fail", "(System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptionsResult", False, "Fail", "(System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element", "value", "dfc-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "AddError", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "AddError", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "AddResult", "(Microsoft.Extensions.Options.ValidateOptionsResult)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "AddResult", "(System.ComponentModel.DataAnnotations.ValidationResult)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "AddResults", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", False, "Build", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -79,7 +185,6 @@ extensions: - ["Microsoft.Extensions.Options", "ConfigurationChangeTokenSource", "ConfigurationChangeTokenSource", "(Microsoft.Extensions.Configuration.IConfiguration)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigurationChangeTokenSource", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureFromConfigurationOptions", "ConfigureFromConfigurationOptions", "(Microsoft.Extensions.Configuration.IConfiguration)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency2", "()", "summary", "df-generated"] @@ -87,34 +192,27 @@ extensions: - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency4", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency5", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency3", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency4", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency3", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,TDep1,TDep2,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,TDep,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Dependency", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "ConfigureNamedOptions", "(System.String,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureNamedOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ConfigureOptions", "ConfigureOptions", "(System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ConfigureOptions", "get_Action", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "DataAnnotationValidateOptions", "DataAnnotationValidateOptions", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "DataAnnotationValidateOptions", "Validate", "(System.String,TOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "DataAnnotationValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "IConfigureNamedOptions", "Configure", "(System.String,TOptions)", "summary", "df-generated"] @@ -137,14 +235,12 @@ extensions: - ["Microsoft.Extensions.Options", "NamedConfigureFromConfigurationOptions", "NamedConfigureFromConfigurationOptions", "(System.String,Microsoft.Extensions.Configuration.IConfiguration)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "NamedConfigureFromConfigurationOptions", "NamedConfigureFromConfigurationOptions", "(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "Options", "Create", "(TOptions)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "OptionsBuilder", "OptionsBuilder", "(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsBuilder", "get_Services", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsCache", "Clear", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsCache", "GetOrAdd", "(System.String,System.Func)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsCache", "TryAdd", "(System.String,TOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsCache", "TryRemove", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "OptionsFactory", "Create", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsFactory", "CreateInstance", "(System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsFactory", "OptionsFactory", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsManager", "Get", "(System.String)", "summary", "df-generated"] @@ -154,13 +250,10 @@ extensions: - ["Microsoft.Extensions.Options", "OptionsMonitor", "OnChange", "(System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsMonitor", "get_CurrentValue", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsMonitorExtensions", "OnChange", "(Microsoft.Extensions.Options.IOptionsMonitor,System.Action)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "OptionsValidationException", "OptionsValidationException", "(System.String,System.Type,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsValidationException", "get_Failures", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsValidationException", "get_OptionsName", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsValidationException", "get_OptionsType", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "OptionsWrapper", "OptionsWrapper", "(TOptions)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "OptionsWrapper", "get_Value", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency2", "()", "summary", "df-generated"] @@ -168,36 +261,30 @@ extensions: - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency4", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency5", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency3", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency4", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,TDep1,TDep2,TDep3,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency3", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,TDep1,TDep2,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,TDep,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Dependency", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "PostConfigureOptions", "PostConfigureOptions", "(System.String,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Action", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "PostConfigureOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateEnumeratedItemsAttribute", "ValidateEnumeratedItemsAttribute", "(System.Type)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateEnumeratedItemsAttribute", "get_Validator", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateObjectMembersAttribute", "ValidateObjectMembersAttribute", "(System.Type)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateObjectMembersAttribute", "get_Validator", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency3", "()", "summary", "df-generated"] @@ -206,7 +293,6 @@ extensions: - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency3", "()", "summary", "df-generated"] @@ -214,29 +300,22 @@ extensions: - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,TDep1,TDep2,TDep3,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency3", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,TDep1,TDep2,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency1", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency2", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,TDep,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Dependency", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptions", "ValidateOptions", "(System.String,System.Func,System.String)", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_FailureMessage", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Name", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptions", "get_Validation", "()", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptionsResult", "Fail", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptionsResult", "Fail", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", "Build", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Options", "ValidateOptionsResultBuilder", "Clear", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml index 0938e03690c..001d2a74593 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Extensions.Primitives.model.yml @@ -5,11 +5,14 @@ extensions: extensible: summaryModel data: - ["Microsoft.Extensions.Primitives", "CancellationChangeToken", False, "CancellationChangeToken", "(System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Extensions.Primitives", "CompositeChangeToken", False, "CompositeChangeToken", "(System.Collections.Generic.IReadOnlyList)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens]", "value", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "Extensions", False, "Append", "(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "Extensions", False, "Append", "(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)", "", "Argument[1].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "Argument[0]", "taint", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "Extensions", False, "Append", "(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment)", "", "Argument[1].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "IChangeToken", True, "RegisterChangeCallback", "(System.Action,System.Object)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "InplaceStringBuilder", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Extensions.Primitives", "StringSegment", False, "StringSegment", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "value", "dfc-generated"] + - ["Microsoft.Extensions.Primitives", "StringSegment", False, "StringSegment", "(System.String,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "value", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", False, "Substring", "(System.Int32)", "", "Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", False, "Substring", "(System.Int32,System.Int32)", "", "Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer]", "ReturnValue", "taint", "dfc-generated"] @@ -30,7 +33,6 @@ extensions: - ["Microsoft.Extensions.Primitives", "CancellationChangeToken", "get_HasChanged", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "ChangeToken", "OnChange", "(System.Func,System.Action)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "ChangeToken", "OnChange", "(System.Func,System.Action,TState)", "summary", "df-generated"] - - ["Microsoft.Extensions.Primitives", "CompositeChangeToken", "CompositeChangeToken", "(System.Collections.Generic.IReadOnlyList)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "CompositeChangeToken", "get_ActiveChangeCallbacks", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "CompositeChangeToken", "get_ChangeTokens", "()", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "CompositeChangeToken", "get_HasChanged", "()", "summary", "df-generated"] @@ -64,8 +66,6 @@ extensions: - ["Microsoft.Extensions.Primitives", "StringSegment", "LastIndexOf", "(System.Char)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", "Split", "(System.Char[])", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", "StartsWith", "(System.String,System.StringComparison)", "summary", "df-generated"] - - ["Microsoft.Extensions.Primitives", "StringSegment", "StringSegment", "(System.String)", "summary", "df-generated"] - - ["Microsoft.Extensions.Primitives", "StringSegment", "StringSegment", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", "Subsegment", "(System.Int32)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", "Subsegment", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["Microsoft.Extensions.Primitives", "StringSegment", "Trim", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml index 33bec5f1ec7..252a548f259 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Interop.Analyzers.model.yml @@ -4,12 +4,16 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix", False, "ConvertToSourceGeneratedInteropFix", "(System.Func,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix.ApplyFix]", "value", "dfc-generated"] + - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix", False, "ConvertToSourceGeneratedInteropFix", "(System.Func,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix.SelectedOptions]", "value", "dfc-generated"] + - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", False, "String", "(System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String.Value]", "value", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", False, "ToString", "()", "", "Argument[this].Property[Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String.Value]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", False, "CreateEquivalenceKeyFromOptions", "(System.String,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", False, "CreateEquivalenceKeyFromOptions", "(System.String,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", False, "CreateEquivalenceKeyFromOptions", "(System.String,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "taint", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", False, "AddExplicitDefaultBoolMarshalling", "(Microsoft.CodeAnalysis.Editing.SyntaxGenerator,Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.SyntaxNode,System.String)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", False, "AddHResultStructAsErrorMarshalling", "(Microsoft.CodeAnalysis.Editing.SyntaxGenerator,Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.SyntaxNode)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", True, "CombineOptions", "(System.Collections.Immutable.ImmutableDictionary,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", True, "CreateAllFixesForDiagnosticOptions", "(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[1]", "ReturnValue.Element.Property[Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix.SelectedOptions]", "value", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "CustomMarshallerAttributeAnalyzer+DefaultMarshalModeDiagnostics", False, "GetDefaultMarshalModeDiagnostic", "(Microsoft.CodeAnalysis.DiagnosticDescriptor)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop.Analyzers", "DiagnosticReporter", False, "CreateAndReportDiagnostic", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop.Analyzers", "DiagnosticReporter", False, "CreateAndReportDiagnostic", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] @@ -44,13 +48,11 @@ extensions: - ["Microsoft.Interop.Analyzers", "ConvertComImportToGeneratedComInterfaceFixer", "get_FixableDiagnosticIds", "()", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportAnalyzer", "Initialize", "(Microsoft.CodeAnalysis.Diagnostics.AnalysisContext)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportAnalyzer", "get_SupportedDiagnostics", "()", "summary", "df-generated"] - - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "CreateAllFixesForDiagnosticOptions", "(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "CreateFixForSelectedOptions", "(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "GetDiagnosticTitle", "(System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "ParseOptionsFromDiagnostic", "(Microsoft.CodeAnalysis.Diagnostic)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "get_BaseEquivalenceKey", "()", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToLibraryImportFixer", "get_FixableDiagnosticIds", "()", "summary", "df-generated"] - - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix", "ConvertToSourceGeneratedInteropFix", "(System.Func,System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix", "op_Equality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix", "op_Inequality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+ConvertToSourceGeneratedInteropFix)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+Bool", "Bool", "(System.Boolean)", "summary", "df-generated"] @@ -58,7 +60,6 @@ extensions: - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+Bool", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+Bool", "op_Equality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+Bool,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+Bool)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+Bool", "op_Inequality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+Bool,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+Bool)", "summary", "df-generated"] - - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", "String", "(System.String)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", "op_Equality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option+String", "op_Inequality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option+String)", "summary", "df-generated"] @@ -66,7 +67,6 @@ extensions: - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", "op_Equality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer+Option", "op_Inequality", "(Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option,Microsoft.Interop.Analyzers.ConvertToSourceGeneratedInteropFixer+Option)", "summary", "df-generated"] - - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", "CreateAllFixesForDiagnosticOptions", "(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", "CreateFixForSelectedOptions", "(Microsoft.CodeAnalysis.SyntaxNode,System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", "GetDiagnosticTitle", "(System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop.Analyzers", "ConvertToSourceGeneratedInteropFixer", "GetFixAllProvider", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml index af1dff370c6..906a985116b 100644 --- a/csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml +++ b/csharp/ql/lib/ext/generated/Microsoft.Interop.model.yml @@ -5,46 +5,73 @@ extensions: extensible: summaryModel data: - ["Microsoft.Interop", "ArrayMarshallingInfoProvider", False, "ArrayMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "ArrayMarshallingInfoProvider", False, "CreateArrayMarshallingInfo", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.Interop.CountInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[3]", "ReturnValue.Property[Microsoft.Interop.NativeLinearCollectionMarshallingInfo.ElementCountInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "ArrayMarshallingInfoProvider", False, "GetMarshallingInfo", "(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.Interop.UseSiteAttributeProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "", "Argument[0].Property[Microsoft.CodeAnalysis.IArrayTypeSymbol.ElementType]", "Argument[3].Parameter[0]", "value", "dfc-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorFactory", False, "AttributedMarshallingModelGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorFactory", False, "AttributedMarshallingModelGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorFactory", False, "AttributedMarshallingModelGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorFactory", False, "AttributedMarshallingModelGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorFactory", False, "AttributedMarshallingModelGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorResolver", False, "AttributedMarshallingModelGeneratorResolver", "(Microsoft.Interop.IMarshallingGeneratorResolver,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "AttributedMarshallingModelGeneratorResolver", False, "AttributedMarshallingModelGeneratorResolver", "(Microsoft.Interop.IMarshallingGeneratorResolver,Microsoft.Interop.AttributedMarshallingModelOptions)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "BlittableMarshaller", False, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.ManagedType]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "BlittableTypeMarshallingInfoProvider", False, "BlittableTypeMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "BoolMarshallerBase", False, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.BoolMarshallerBase._nativeType]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "BoolMarshallerBase", False, "BoolMarshallerBase", "(Microsoft.Interop.ManagedTypeInfo,System.Int32,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Interop.BoolMarshallerBase._nativeType]", "value", "dfc-generated"] - - ["Microsoft.Interop", "BoundGenerators", False, "Create", "(System.Collections.Immutable.ImmutableArray,Microsoft.Interop.IMarshallingGeneratorFactory,Microsoft.Interop.StubCodeContext,Microsoft.Interop.IMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "Argument[1]", "taint", "df-generated"] - - ["Microsoft.Interop", "ByValueContentsMarshalKindValidator", False, "ByValueContentsMarshalKindValidator", "(Microsoft.Interop.IMarshallingGeneratorFactory)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "GetSupport", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+NotRecommended.Details]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+NotSupported.NotSupportedDetails]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData.UnnecessaryDataDetails]", "value", "dfc-generated"] - - ["Microsoft.Interop", "CharMarshallingGeneratorFactory", False, "CharMarshallingGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,System.Boolean,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "CharMarshallingGeneratorFactory", False, "CharMarshallingGeneratorFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,System.Boolean,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "BoundGenerators", False, "Create", "(System.Collections.Immutable.ImmutableArray,Microsoft.Interop.IMarshallingGeneratorResolver,Microsoft.Interop.StubCodeContext,Microsoft.Interop.IUnboundMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "Argument[1]", "taint", "df-generated"] + - ["Microsoft.Interop", "ByValueContentsMarshalKindValidator", False, "ByValueContentsMarshalKindValidator", "(Microsoft.Interop.IMarshallingGeneratorResolver)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "ByValueMarshalKindSupportDescriptor", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportDescriptor.DefaultSupport]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "ByValueMarshalKindSupportDescriptor", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportDescriptor.InSupport]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "ByValueMarshalKindSupportDescriptor", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "", "Argument[2]", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportDescriptor.OutSupport]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "ByValueMarshalKindSupportDescriptor", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "", "Argument[3]", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportDescriptor.InOutSupport]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", False, "GetSupport", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "ByValueMarshalKindSupportInfo", "(Microsoft.Interop.ByValueMarshalKindSupport,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+NotRecommended.Details]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+NotSupported.NotSupportedDetails]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", False, "GetSupport", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.ByValueMarshalKindSupportInfo.details]", "ReturnValue.Property[Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData.UnnecessaryDataDetails]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CharMarshallingGeneratorResolver", False, "CharMarshallingGeneratorResolver", "(System.Boolean,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "CharMarshallingInfoProvider", False, "CharMarshallingInfoProvider", "(Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "CollectionExtensions", False, "ToSequenceEqualImmutableArray", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.SequenceEqualImmutableArray`1.Comparer]", "value", "dfc-generated"] - ["Microsoft.Interop", "ComInterfaceMarshallingInfoProvider", False, "ComInterfaceMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "ContainingSyntax", False, "ContainingSyntax", "(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax)", "", "Argument[3]", "Argument[this].Property[Microsoft.Interop.ContainingSyntax.TypeParameters]", "value", "dfc-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", False, "AddContainingSyntax", "(Microsoft.Interop.ContainingSyntax)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop", "ContainingSyntaxContext", False, "ContainingSyntaxContext", "(System.Collections.Immutable.ImmutableArray,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.ContainingSyntaxContext.ContainingSyntax]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ContainingSyntaxContext", False, "ContainingSyntaxContext", "(System.Collections.Immutable.ImmutableArray,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.ContainingSyntaxContext.ContainingNamespace]", "value", "dfc-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", False, "WrapMemberInContainingSyntaxWithUnsafeModifier", "(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop", "CountElementCountInfo", False, "CountElementCountInfo", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.CountElementCountInfo.ElementInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallerData", False, "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallerData.MarshallerType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallerData", False, "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallerData.NativeType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallerData", False, "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[5]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallerData.BufferElementType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallerData", False, "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[6]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallerData.CollectionElementType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallerData", False, "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[7]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallerData.CollectionElementMarshallingInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "CustomTypeMarshallers", False, "CustomTypeMarshallers", "(System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.CustomTypeMarshallers.Modes]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "DefaultIdentifierContext", "(System.String,System.String,Microsoft.Interop.MarshalDirection)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Interop.DefaultIdentifierContext._returnIdentifier]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "DefaultIdentifierContext", "(System.String,System.String,Microsoft.Interop.MarshalDirection)", "", "Argument[1]", "Argument[this].SyntheticField[Microsoft.Interop.DefaultIdentifierContext._nativeReturnIdentifier]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "taint", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.DefaultIdentifierContext._nativeReturnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.DefaultIdentifierContext._returnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultMarshallingInfo", False, "DefaultMarshallingInfo", "(Microsoft.Interop.CharEncoding,Microsoft.CodeAnalysis.INamedTypeSymbol)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.DefaultMarshallingInfo.StringMarshallingCustomType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DefaultMarshallingInfoParser", False, "Create", "(Microsoft.Interop.StubEnvironment,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.Interop.InteropAttributeCompilationData,Microsoft.CodeAnalysis.AttributeData)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[2]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0].Property[Microsoft.CodeAnalysis.ISymbol.Locations].Element", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[2]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[0].Property[Microsoft.CodeAnalysis.ISymbol.Locations].Element", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.ISymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[2]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.Location,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0].Element", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[2]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[0].Element", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticExtensions", False, "CreateDiagnosticInfo", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.DiagnosticDescriptor,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Generic.IEnumerable,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[3]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] + - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Collections.Immutable.ImmutableDictionary,System.Object[])", "", "Argument[2]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Object[])", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticInfo", False, "Create", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.Object[])", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "DiagnosticOr", False, "AddDiagnostic", "(Microsoft.Interop.DiagnosticInfo)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -53,34 +80,39 @@ extensions: - ["Microsoft.Interop", "DiagnosticOr", False, "WithValue", "(T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "DiagnosticOr", True, "get_Diagnostics", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "DiagnosticOr", True, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "ElementInfoProviderExtensions", False, "TryGetInfoForElementName", "(Microsoft.Interop.IElementInfoProvider,Microsoft.CodeAnalysis.AttributeData,System.String,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.TypePositionInfo)", "", "Argument[3].ReturnValue", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ElementInfoProviderExtensions", False, "TryGetInfoForParamIndex", "(Microsoft.Interop.IElementInfoProvider,Microsoft.CodeAnalysis.AttributeData,System.Int32,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.TypePositionInfo)", "", "Argument[3].ReturnValue", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "Forwarder", False, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.ManagedType]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] + - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[this].Property[Microsoft.Interop.GeneratorDiagnostic.DiagnosticProperties]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", False, "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] + - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", False, "UnnecessaryData", "(Microsoft.Interop.TypePositionInfo,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData.UnnecessaryDataLocations]", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnosticsBag", False, "GeneratorDiagnosticsBag", "(Microsoft.Interop.IDiagnosticDescriptorProvider,Microsoft.Interop.ISignatureDiagnosticLocations,System.Resources.ResourceManager,System.Type)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnosticsBag", False, "GeneratorDiagnosticsBag", "(Microsoft.Interop.IDiagnosticDescriptorProvider,Microsoft.Interop.ISignatureDiagnosticLocations,System.Resources.ResourceManager,System.Type)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnosticsBag", False, "GeneratorDiagnosticsBag", "(Microsoft.Interop.IDiagnosticDescriptorProvider,Microsoft.Interop.ISignatureDiagnosticLocations,System.Resources.ResourceManager,System.Type)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnosticsBag", False, "ReportDiagnostic", "(Microsoft.Interop.DiagnosticInfo)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Interop.GeneratorDiagnosticsBag._diagnostics].Element", "value", "dfc-generated"] - ["Microsoft.Interop", "GeneratorDiagnosticsBag", False, "get_Diagnostics", "()", "", "Argument[this].SyntheticField[Microsoft.Interop.GeneratorDiagnosticsBag._diagnostics]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", True, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", True, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGeneratorFactory", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGeneratorFactory", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGeneratorFactory", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", True, "get_CodeContext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", True, "get_NativeType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", True, "get_TypeInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "IMarshallingGeneratorResolver", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "IMarshallingGeneratorResolver", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "IMarshallingGeneratorResolver", True, "Create", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "IMarshallingInfoAttributeParser", True, "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.Interop.UseSiteAttributeProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "", "Argument[3]", "Argument[4].Parameter[1]", "value", "dfc-generated"] - ["Microsoft.Interop", "ITypeBasedMarshallingInfoProvider", True, "GetMarshallingInfo", "(Microsoft.CodeAnalysis.ITypeSymbol,System.Int32,Microsoft.Interop.UseSiteAttributeProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "", "Argument[2]", "Argument[3].Parameter[1]", "value", "dfc-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", True, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "InteropAttributeDataExtensions", False, "WithValuesFromNamedArguments", "(T,System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "taint", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.ManagedToNativeStubCodeContext._nativeReturnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.ManagedToNativeStubCodeContext._returnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "ManagedToNativeStubCodeContext", "(System.String,System.String)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Interop.ManagedToNativeStubCodeContext._returnIdentifier]", "value", "dfc-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", False, "ManagedToNativeStubCodeContext", "(System.String,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[Microsoft.Interop.ManagedToNativeStubCodeContext._nativeReturnIdentifier]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", False, "GetNativeIdentifier", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", False, "ManagedToNativeStubGenerator", "(System.Collections.Immutable.ImmutableArray,System.Boolean,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IMarshallingGeneratorResolver,Microsoft.Interop.CodeEmitOptions)", "", "Argument[0].Element", "Argument[3]", "taint", "df-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", False, "ManagedToNativeStubGenerator", "(System.Collections.Immutable.ImmutableArray,System.Boolean,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IMarshallingGeneratorResolver,Microsoft.Interop.CodeEmitOptions)", "", "Argument[4]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", False, "ManagedTypeInfo", "(Microsoft.Interop.ManagedTypeInfo)", "", "Argument[0].Property[Microsoft.Interop.ManagedTypeInfo.DiagnosticFormattedName]", "Argument[this].Property[Microsoft.Interop.ManagedTypeInfo.DiagnosticFormattedName]", "value", "dfc-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", False, "ManagedTypeInfo", "(Microsoft.Interop.ManagedTypeInfo)", "", "Argument[0].Property[Microsoft.Interop.ManagedTypeInfo.FullTypeName]", "Argument[this].Property[Microsoft.Interop.ManagedTypeInfo.FullTypeName]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ManagedTypeInfo", False, "ManagedTypeInfo", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.ManagedTypeInfo.FullTypeName]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ManagedTypeInfo", False, "ManagedTypeInfo", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.ManagedTypeInfo.DiagnosticFormattedName]", "value", "dfc-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "ReplaceGenericPlaceholderInType", "(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.Compilation)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "TryGetLinearCollectionMarshallersFromEntryType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.Compilation,System.Func,System.Action,System.Nullable)", "", "Argument[0].Property[Microsoft.CodeAnalysis.INamedTypeSymbol.OriginalDefinition]", "Argument[4].Parameter[0]", "value", "dfc-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "TryGetMarshallersFromEntryTypeIgnoringElements", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.Compilation,System.Action,System.Nullable)", "", "Argument[0].Property[Microsoft.CodeAnalysis.INamedTypeSymbol.OriginalDefinition]", "Argument[3].Parameter[0]", "value", "dfc-generated"] @@ -91,101 +123,117 @@ extensions: - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "TryResolveManagedType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean,System.Action,Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "TryResolveMarshallerType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,System.Action,Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[0].Property[Microsoft.CodeAnalysis.INamedTypeSymbol.OriginalDefinition]", "Argument[2].Parameter[0]", "value", "dfc-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", False, "TryResolveMarshallerType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,System.Action,Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop", "MarshalAsArrayInfo", False, "MarshalAsArrayInfo", "(System.Runtime.InteropServices.UnmanagedType,Microsoft.Interop.CharEncoding,System.Runtime.InteropServices.UnmanagedType,Microsoft.Interop.CountInfo)", "", "Argument[3]", "Argument[this].Property[Microsoft.Interop.MarshalAsArrayInfo.CountInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "MarshalAsAttributeParser", False, "MarshalAsAttributeParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalAsAttributeParser", False, "MarshalAsAttributeParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshalAsMarshallingGeneratorFactory", False, "MarshalAsMarshallingGeneratorFactory", "(Microsoft.Interop.InteropGenerationOptions,Microsoft.Interop.IMarshallingGeneratorFactory)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshalAsMarshallingGeneratorFactory", False, "MarshalAsMarshallingGeneratorFactory", "(Microsoft.Interop.InteropGenerationOptions,Microsoft.Interop.IMarshallingGeneratorFactory)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshalAsAttributeParser", False, "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.UseSiteAttributeData.AttributeData]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MarshalAsMarshallingGeneratorResolver", False, "MarshalAsMarshallingGeneratorResolver", "(Microsoft.Interop.InteropGenerationOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalAsWithCustomMarshallersParser", False, "MarshalAsWithCustomMarshallersParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IMarshallingInfoAttributeParser)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalAsWithCustomMarshallersParser", False, "MarshalAsWithCustomMarshallersParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IMarshallingInfoAttributeParser)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalAsWithCustomMarshallersParser", False, "MarshalAsWithCustomMarshallersParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IMarshallingInfoAttributeParser)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalUsingAttributeParser", False, "MarshalUsingAttributeParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshalUsingAttributeParser", False, "MarshalUsingAttributeParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshalUsingAttributeParser", False, "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.UseSiteAttributeData.AttributeData]", "value", "dfc-generated"] - ["Microsoft.Interop", "MarshallerHelpers", False, "GetCompatibleGenericTypeParameterSyntax", "(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", False, "GetLastIndexMarshalledIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", False, "GetManagedSpanIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", False, "GetMarshallerIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", False, "GetNativeSpanIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", False, "GetNumElementsIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", False, "GetLastIndexMarshalledIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", False, "GetManagedSpanIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", False, "GetMarshallerIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", False, "GetNativeSpanIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", False, "GetNumElementsIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", False, "GetTopologicallySortedElements", "(System.Collections.Generic.ICollection,System.Func,System.Func>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["Microsoft.Interop", "MarshallerHelpers", False, "GetTopologicallySortedElements", "(System.Collections.Generic.ICollection,System.Func,System.Func>)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] - ["Microsoft.Interop", "MarshallerHelpers", False, "GetTopologicallySortedElements", "(System.Collections.Generic.ICollection,System.Func,System.Func>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", False, "AsReturnType", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo)", "", "Argument[1].Property[Microsoft.Interop.TypePositionInfo.ManagedType].Property[Microsoft.Interop.ManagedTypeInfo.Syntax]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", False, "AsReturnType", "(Microsoft.Interop.IBoundMarshallingGenerator)", "", "Argument[0].Property[Microsoft.Interop.IBoundMarshallingGenerator.NativeType].Property[Microsoft.Interop.ManagedTypeInfo.Syntax]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "MarshallingInfoParser", False, "MarshallingInfoParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IElementInfoProvider,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshallingInfoParser", False, "MarshallingInfoParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IElementInfoProvider,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshallingInfoParser", False, "MarshallingInfoParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IElementInfoProvider,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshallingInfoParser", False, "MarshallingInfoParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IElementInfoProvider,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MarshallingInfoParser", False, "MarshallingInfoParser", "(Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.Interop.IElementInfoProvider,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "", "Argument[4].Element", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Descriptor]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[1].Property[Microsoft.Interop.GeneratorDiagnostic.DiagnosticProperties]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Properties].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.Interop.GeneratorDiagnostic)", "", "Argument[this].Property[Microsoft.Interop.MethodSignatureDiagnosticLocations.FallbackLocation]", "ReturnValue.Property[Microsoft.Interop.DiagnosticInfo.Location]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "MethodSignatureDiagnosticLocations", "(System.String,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.Location)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.MethodSignatureDiagnosticLocations.MethodIdentifier]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "MethodSignatureDiagnosticLocations", "(System.String,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.Location)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.MethodSignatureDiagnosticLocations.ManagedParameterLocations]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", False, "MethodSignatureDiagnosticLocations", "(System.String,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.Location)", "", "Argument[2]", "Argument[this].Property[Microsoft.Interop.MethodSignatureDiagnosticLocations.FallbackLocation]", "value", "dfc-generated"] - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", False, "MethodSignatureElementInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.IMethodSymbol,System.Collections.Immutable.ImmutableArray)", "", "Argument[2]", "Argument[this].SyntheticField[Microsoft.Interop.MethodSignatureElementInfoProvider._method]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", False, "TryGetInfoForElementName", "(Microsoft.CodeAnalysis.AttributeData,System.String,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "", "Argument[2].ReturnValue", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", False, "TryGetInfoForElementName", "(Microsoft.CodeAnalysis.AttributeData,System.String,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.MethodSignatureElementInfoProvider._method].Property[Microsoft.CodeAnalysis.IMethodSymbol.ReturnType]", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", False, "TryGetInfoForParamIndex", "(Microsoft.CodeAnalysis.AttributeData,System.Int32,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "", "Argument[2].ReturnValue", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", False, "NativeLinearCollectionMarshallingInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers,Microsoft.Interop.CountInfo,Microsoft.Interop.ManagedTypeInfo)", "", "Argument[2]", "Argument[this].Property[Microsoft.Interop.NativeLinearCollectionMarshallingInfo.ElementCountInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", False, "NativeLinearCollectionMarshallingInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers,Microsoft.Interop.CountInfo,Microsoft.Interop.ManagedTypeInfo)", "", "Argument[3]", "Argument[this].Property[Microsoft.Interop.NativeLinearCollectionMarshallingInfo.PlaceholderTypeParameter]", "value", "dfc-generated"] + - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", False, "NativeMarshallingAttributeInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.NativeMarshallingAttributeInfo.EntryPointType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", False, "NativeMarshallingAttributeInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.NativeMarshallingAttributeInfo.Marshallers]", "value", "dfc-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeParser", False, "NativeMarshallingAttributeParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeParser", False, "NativeMarshallingAttributeParser", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "taint", "dfc-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.NativeToManagedStubCodeContext._nativeReturnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[this].SyntheticField[Microsoft.Interop.NativeToManagedStubCodeContext._returnIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "NativeToManagedStubCodeContext", "(System.String,System.String)", "", "Argument[0]", "Argument[this].SyntheticField[Microsoft.Interop.NativeToManagedStubCodeContext._returnIdentifier]", "value", "dfc-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", False, "NativeToManagedStubCodeContext", "(System.String,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[Microsoft.Interop.NativeToManagedStubCodeContext._nativeReturnIdentifier]", "value", "dfc-generated"] - - ["Microsoft.Interop", "OwnedValueCodeContext", False, "OwnedValueCodeContext", "(Microsoft.Interop.StubCodeContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "SafeHandleMarshallingInfoProvider", False, "SafeHandleMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "SafeHandleMarshallingInfoProvider", False, "SafeHandleMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "OwnedValueCodeContext", False, "OwnedValueCodeContext", "(Microsoft.Interop.StubIdentifierContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", False, "Resolved", "(Microsoft.Interop.IBoundMarshallingGenerator)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.ResolvedGenerator.Generator]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", False, "ResolvedGenerator", "(Microsoft.Interop.IBoundMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.ResolvedGenerator.Generator]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", False, "ResolvedGenerator", "(Microsoft.Interop.IBoundMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.ResolvedGenerator.Diagnostics]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", False, "ResolvedWithDiagnostics", "(Microsoft.Interop.IBoundMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.ResolvedGenerator.Generator]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", False, "ResolvedWithDiagnostics", "(Microsoft.Interop.IBoundMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.ResolvedGenerator.Diagnostics]", "value", "dfc-generated"] + - ["Microsoft.Interop", "SequenceEqualImmutableArray", False, "Insert", "(System.Int32,T)", "", "Argument[this].Property[Microsoft.Interop.SequenceEqualImmutableArray`1.Comparer]", "ReturnValue.Property[Microsoft.Interop.SequenceEqualImmutableArray`1.Comparer]", "value", "dfc-generated"] + - ["Microsoft.Interop", "SequenceEqualImmutableArray", False, "SequenceEqualImmutableArray", "(System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.SequenceEqualImmutableArray`1.Array]", "value", "dfc-generated"] + - ["Microsoft.Interop", "SequenceEqualImmutableArray", False, "SequenceEqualImmutableArray", "(System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.SequenceEqualImmutableArray`1.Comparer]", "value", "dfc-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", False, "AsNativeType", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.ManagedType]", "ReturnValue", "value", "dfc-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", False, "StaticPinnableManagedValueMarshaller", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", False, "StaticPinnableManagedValueMarshaller", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Microsoft.Interop", "SizeAndParamIndexInfo", False, "SizeAndParamIndexInfo", "(System.Int32,Microsoft.Interop.TypePositionInfo)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.SizeAndParamIndexInfo.ParamAtIndex]", "value", "dfc-generated"] - ["Microsoft.Interop", "StringMarshallingInfoProvider", False, "StringMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "StringMarshallingInfoProvider", False, "StringMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "StringMarshallingInfoProvider", False, "StringMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["Microsoft.Interop", "StringMarshallingInfoProvider", False, "StringMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.DefaultMarshallingInfo)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.Interop", "StubCodeContext", True, "GetAdditionalIdentifier", "(Microsoft.Interop.TypePositionInfo,System.String)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] - - ["Microsoft.Interop", "StubCodeContext", True, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Microsoft.Interop", "StubCodeContext", True, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "taint", "dfc-generated"] + - ["Microsoft.Interop", "StubEnvironment", False, "StubEnvironment", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.EnvironmentFlags)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.StubEnvironment.Compilation]", "value", "dfc-generated"] - ["Microsoft.Interop", "StubEnvironment", False, "get_DefaultDllImportSearchPathsAttrType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "StubEnvironment", False, "get_LcidConversionAttrType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "StubEnvironment", False, "get_SuppressGCTransitionAttrType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Microsoft.Interop", "StubEnvironment", False, "get_UnmanagedCallConvAttrType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "StubEnvironment", False, "get_WasmImportLinkageAttrType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", True, "GetAdditionalIdentifier", "(Microsoft.Interop.TypePositionInfo,System.String)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", True, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", True, "GetIdentifiers", "(Microsoft.Interop.TypePositionInfo)", "", "Argument[0].Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "taint", "dfc-generated"] + - ["Microsoft.Interop", "SyntaxEquivalentNode", False, "SyntaxEquivalentNode", "(T)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.SyntaxEquivalentNode`1.Node]", "value", "dfc-generated"] - ["Microsoft.Interop", "SyntaxExtensions", False, "AddToModifiers", "(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "SyntaxExtensions", False, "IsInPartialContext", "(Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax,System.Nullable)", "", "Argument[0].Property[Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.Identifier]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "SyntaxExtensions", False, "IsInPartialContext", "(Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax,System.Nullable)", "", "Argument[0].Property[Microsoft.CodeAnalysis.SyntaxNode.Parent].Property[Microsoft.CodeAnalysis.CSharp.Syntax.BaseTypeDeclarationSyntax.Identifier]", "ReturnValue", "value", "dfc-generated"] - ["Microsoft.Interop", "SyntaxExtensions", False, "NestFixedStatements", "(System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.CSharp.Syntax.StatementSyntax)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["Microsoft.Interop", "SzArrayType", False, "SzArrayType", "(Microsoft.Interop.ManagedTypeInfo)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.SzArrayType.ElementTypeInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "TypePositionInfo", False, "CreateForParameter", "(Microsoft.CodeAnalysis.IParameterSymbol,Microsoft.Interop.MarshallingInfo,Microsoft.CodeAnalysis.Compilation)", "", "Argument[0].Property[Microsoft.CodeAnalysis.ISymbol.Name]", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.InstanceIdentifier]", "value", "dfc-generated"] + - ["Microsoft.Interop", "TypePositionInfo", False, "CreateForParameter", "(Microsoft.CodeAnalysis.IParameterSymbol,Microsoft.Interop.MarshallingInfo,Microsoft.CodeAnalysis.Compilation)", "", "Argument[1]", "ReturnValue.Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] - ["Microsoft.Interop", "TypePositionInfo", False, "GetLocation", "(Microsoft.Interop.TypePositionInfo,Microsoft.CodeAnalysis.IMethodSymbol)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["Microsoft.Interop", "TypePositionInfo", False, "TypePositionInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.TypePositionInfo.ManagedType]", "value", "dfc-generated"] + - ["Microsoft.Interop", "TypePositionInfo", False, "TypePositionInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.TypePositionInfo.MarshallingAttributeInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "UseSiteAttributeData", False, "UseSiteAttributeData", "(System.Int32,Microsoft.Interop.CountInfo,Microsoft.CodeAnalysis.AttributeData)", "", "Argument[1]", "Argument[this].Property[Microsoft.Interop.UseSiteAttributeData.CountInfo]", "value", "dfc-generated"] + - ["Microsoft.Interop", "UseSiteAttributeData", False, "UseSiteAttributeData", "(System.Int32,Microsoft.Interop.CountInfo,Microsoft.CodeAnalysis.AttributeData)", "", "Argument[2]", "Argument[this].Property[Microsoft.Interop.UseSiteAttributeData.AttributeData]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", False, "ValueEqualityImmutableDictionary", "(System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "Argument[this].Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] + - ["Microsoft.Interop", "ValueEqualityImmutableDictionaryHelperExtensions", False, "ToValueEquals", "(System.Collections.Immutable.ImmutableDictionary)", "", "Argument[0]", "ReturnValue.Property[Microsoft.Interop.ValueEqualityImmutableDictionary`2.Map]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - ["Microsoft.Interop", "ArrayMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "ArrayMarshallingInfoProvider", "CreateArrayMarshallingInfo", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.Interop.CountInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "AttributedMarshallingModelOptions", "AttributedMarshallingModelOptions", "(System.Boolean,Microsoft.Interop.MarshalMode,Microsoft.Interop.MarshalMode,Microsoft.Interop.MarshalMode)", "summary", "df-generated"] + - ["Microsoft.Interop", "AttributedMarshallingModelOptions", "AttributedMarshallingModelOptions", "(System.Boolean,Microsoft.Interop.MarshalMode,Microsoft.Interop.MarshalMode,Microsoft.Interop.MarshalMode,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "AttributedMarshallingModelOptions", "op_Equality", "(Microsoft.Interop.AttributedMarshallingModelOptions,Microsoft.Interop.AttributedMarshallingModelOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "AttributedMarshallingModelOptions", "op_Inequality", "(Microsoft.Interop.AttributedMarshallingModelOptions,Microsoft.Interop.AttributedMarshallingModelOptions)", "summary", "df-generated"] - - ["Microsoft.Interop", "BlittableMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "BlittableMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "BlittableMarshaller", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "BlittableMarshaller", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "BlittableMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "BlittableMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "BlittableMarshaller", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "BlittableMarshallerResolver", "BlittableMarshallerResolver", "(System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "BlittableTypeMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoolMarshallerBase", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "BoolMarshallerBase", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "BoolMarshallerBase", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "BoolMarshallerBase", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoolMarshallerBase", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "BoolMarshallerBase", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "BoolMarshallerBase", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "BooleanMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoundGenerator", "BoundGenerator", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.IMarshallingGenerator)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoundGenerator", "op_Equality", "(Microsoft.Interop.BoundGenerator,Microsoft.Interop.BoundGenerator)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoundGenerator", "op_Inequality", "(Microsoft.Interop.BoundGenerator,Microsoft.Interop.BoundGenerator)", "summary", "df-generated"] - - ["Microsoft.Interop", "BoundGenerators", "GenerateTargetMethodSignatureData", "(Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "BoundGenerators", "GenerateTargetMethodSignatureData", "(Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "BoundGenerators", "get_HasManagedExceptionMarshaller", "()", "summary", "df-generated"] - ["Microsoft.Interop", "BoundGenerators", "get_IsManagedVoidReturn", "()", "summary", "df-generated"] - ["Microsoft.Interop", "BoundGenerators", "get_IsUnmanagedVoidReturn", "()", "summary", "df-generated"] - ["Microsoft.Interop", "BoundGenerators", "get_ManagedNativeSameReturn", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "BreakingChangeDetector", "BreakingChangeDetector", "(Microsoft.Interop.IMarshallingGeneratorFactory)", "summary", "df-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", "ByValueMarshalKindSupportDescriptor", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "BreakingChangeDetector", "BreakingChangeDetector", "(Microsoft.Interop.IMarshallingGeneratorResolver)", "summary", "df-generated"] - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", "op_Equality", "(Microsoft.Interop.ByValueMarshalKindSupportDescriptor,Microsoft.Interop.ByValueMarshalKindSupportDescriptor)", "summary", "df-generated"] - ["Microsoft.Interop", "ByValueMarshalKindSupportDescriptor", "op_Inequality", "(Microsoft.Interop.ByValueMarshalKindSupportDescriptor,Microsoft.Interop.ByValueMarshalKindSupportDescriptor)", "summary", "df-generated"] - - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", "ByValueMarshalKindSupportInfo", "(Microsoft.Interop.ByValueMarshalKindSupport,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", "op_Equality", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ByValueMarshalKindSupportInfo", "op_Inequality", "(Microsoft.Interop.ByValueMarshalKindSupportInfo,Microsoft.Interop.ByValueMarshalKindSupportInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ByteBoolMarshaller", "ByteBoolMarshaller", "(System.Boolean)", "summary", "df-generated"] @@ -195,7 +243,6 @@ extensions: - ["Microsoft.Interop", "CodeEmitOptions", "op_Inequality", "(Microsoft.Interop.CodeEmitOptions,Microsoft.Interop.CodeEmitOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "CollectionExtensions", "ToSequenceEqual", "(System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["Microsoft.Interop", "CollectionExtensions", "ToSequenceEqualImmutableArray", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["Microsoft.Interop", "CollectionExtensions", "ToSequenceEqualImmutableArray", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["Microsoft.Interop", "ComClassGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] - ["Microsoft.Interop", "ComExceptionMarshalling", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ComExceptionMarshalling", "op_Equality", "(Microsoft.Interop.ComExceptionMarshalling,Microsoft.Interop.ComExceptionMarshalling)", "summary", "df-generated"] @@ -204,22 +251,21 @@ extensions: - ["Microsoft.Interop", "ComInterfaceMarshallingInfoProvider", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "ComInterfaceMarshallingInfoProvider", "CreateComInterfaceMarshallingInfo", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "CompilationExtensions", "GetEnvironmentFlags", "(Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] + - ["Microsoft.Interop", "CompositeMarshallingGeneratorResolver", "CompositeMarshallingGeneratorResolver", "(Microsoft.Interop.IMarshallingGeneratorResolver[])", "summary", "df-generated"] + - ["Microsoft.Interop", "CompositeMarshallingGeneratorResolver", "CompositeMarshallingGeneratorResolver", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Interop", "ConstSizeCountInfo", "ConstSizeCountInfo", "(System.Int32)", "summary", "df-generated"] - ["Microsoft.Interop", "ConstSizeCountInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ConstSizeCountInfo", "op_Equality", "(Microsoft.Interop.ConstSizeCountInfo,Microsoft.Interop.ConstSizeCountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ConstSizeCountInfo", "op_Inequality", "(Microsoft.Interop.ConstSizeCountInfo,Microsoft.Interop.ConstSizeCountInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "ContainingSyntax", "ContainingSyntax", "(Microsoft.CodeAnalysis.SyntaxTokenList,Microsoft.CodeAnalysis.CSharp.SyntaxKind,Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.CSharp.Syntax.TypeParameterListSyntax)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntax", "Equals", "(Microsoft.Interop.ContainingSyntax)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntax", "Equals", "(System.Object)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntax", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "ContainingSyntaxContext", "(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax)", "summary", "df-generated"] - - ["Microsoft.Interop", "ContainingSyntaxContext", "ContainingSyntaxContext", "(System.Collections.Immutable.ImmutableArray,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "Equals", "(Microsoft.Interop.ContainingSyntaxContext)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "WrapMembersInContainingSyntaxWithUnsafeModifier", "(Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax[])", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "op_Equality", "(Microsoft.Interop.ContainingSyntaxContext,Microsoft.Interop.ContainingSyntaxContext)", "summary", "df-generated"] - ["Microsoft.Interop", "ContainingSyntaxContext", "op_Inequality", "(Microsoft.Interop.ContainingSyntaxContext,Microsoft.Interop.ContainingSyntaxContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "CountElementCountInfo", "CountElementCountInfo", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "CountElementCountInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "CountElementCountInfo", "op_Equality", "(Microsoft.Interop.CountElementCountInfo,Microsoft.Interop.CountElementCountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "CountElementCountInfo", "op_Inequality", "(Microsoft.Interop.CountElementCountInfo,Microsoft.Interop.CountElementCountInfo)", "summary", "df-generated"] @@ -228,10 +274,8 @@ extensions: - ["Microsoft.Interop", "CountInfo", "op_Inequality", "(Microsoft.Interop.CountInfo,Microsoft.Interop.CountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomMarshallingInfoHelper", "CreateMarshallingInfoByMarshallerTypeName", "(Microsoft.CodeAnalysis.Compilation,Microsoft.CodeAnalysis.ITypeSymbol,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomMarshallingInfoHelper", "CreateNativeMarshallingInfoForNonSignatureElement", "(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.AttributeData,Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.GeneratorDiagnosticsBag)", "summary", "df-generated"] - - ["Microsoft.Interop", "CustomTypeMarshallerData", "CustomTypeMarshallerData", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,System.Boolean,Microsoft.Interop.MarshallerShape,System.Boolean,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallerData", "op_Equality", "(Microsoft.Interop.CustomTypeMarshallerData,Microsoft.Interop.CustomTypeMarshallerData)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallerData", "op_Inequality", "(Microsoft.Interop.CustomTypeMarshallerData,Microsoft.Interop.CustomTypeMarshallerData)", "summary", "df-generated"] - - ["Microsoft.Interop", "CustomTypeMarshallers", "CustomTypeMarshallers", "(System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallers", "Equals", "(Microsoft.Interop.CustomTypeMarshallers)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallers", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallers", "GetModeOrDefault", "(Microsoft.Interop.MarshalMode)", "summary", "df-generated"] @@ -239,13 +283,16 @@ extensions: - ["Microsoft.Interop", "CustomTypeMarshallers", "TryGetModeOrDefault", "(Microsoft.Interop.MarshalMode,Microsoft.Interop.CustomTypeMarshallerData)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallers", "op_Equality", "(Microsoft.Interop.CustomTypeMarshallers,Microsoft.Interop.CustomTypeMarshallers)", "summary", "df-generated"] - ["Microsoft.Interop", "CustomTypeMarshallers", "op_Inequality", "(Microsoft.Interop.CustomTypeMarshallers,Microsoft.Interop.CustomTypeMarshallers)", "summary", "df-generated"] - - ["Microsoft.Interop", "DefaultMarshallingInfo", "DefaultMarshallingInfo", "(Microsoft.Interop.CharEncoding,Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", "get_EqualityContract", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", "op_Equality", "(Microsoft.Interop.DefaultIdentifierContext,Microsoft.Interop.DefaultIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "DefaultIdentifierContext", "op_Inequality", "(Microsoft.Interop.DefaultIdentifierContext,Microsoft.Interop.DefaultIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "DefaultMarshallingGeneratorResolver", "Create", "(Microsoft.Interop.EnvironmentFlags,Microsoft.Interop.MarshalDirection,System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["Microsoft.Interop", "DefaultMarshallingInfo", "op_Equality", "(Microsoft.Interop.DefaultMarshallingInfo,Microsoft.Interop.DefaultMarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "DefaultMarshallingInfo", "op_Inequality", "(Microsoft.Interop.DefaultMarshallingInfo,Microsoft.Interop.DefaultMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "DelegateMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "DelegateMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "DelegateMarshaller", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "DelegateMarshaller", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "DelegateMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "DelegateMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "DelegateMarshaller", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "DelegateTypeInfo", "DelegateTypeInfo", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "DelegateTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] @@ -274,37 +321,34 @@ extensions: - ["Microsoft.Interop", "DiagnosticOrTHelperExtensions", "Split", "(Microsoft.CodeAnalysis.IncrementalValuesProvider,T2>>)", "summary", "df-generated"] - ["Microsoft.Interop", "DiagnosticOrTHelperExtensions", "Split", "(Microsoft.CodeAnalysis.IncrementalValuesProvider>)", "summary", "df-generated"] - ["Microsoft.Interop", "DiagnosticOrTHelperExtensions", "SplitArrays", "(Microsoft.CodeAnalysis.IncrementalValuesProvider>>)", "summary", "df-generated"] - - ["Microsoft.Interop", "ElementInfoProviderExtensions", "TryGetInfoForElementName", "(Microsoft.Interop.IElementInfoProvider,Microsoft.CodeAnalysis.AttributeData,System.String,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "ElementInfoProviderExtensions", "TryGetInfoForParamIndex", "(Microsoft.Interop.IElementInfoProvider,Microsoft.CodeAnalysis.AttributeData,System.Int32,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "ElementsMarshallingCollectionSourceExtensions", "GetNumElementsAssignmentFromManagedValuesDestination", "(Microsoft.Interop.IElementsMarshallingCollectionSource,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "ElementsMarshallingCollectionSourceExtensions", "GetNumElementsAssignmentFromManagedValuesSource", "(Microsoft.Interop.IElementsMarshallingCollectionSource,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "DownlevelLibraryImportGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "ElementsMarshallingCollectionSourceExtensions", "GetNumElementsAssignmentFromManagedValuesDestination", "(Microsoft.Interop.IElementsMarshallingCollectionSource,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "ElementsMarshallingCollectionSourceExtensions", "GetNumElementsAssignmentFromManagedValuesSource", "(Microsoft.Interop.IElementsMarshallingCollectionSource,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "EnumTypeInfo", "EnumTypeInfo", "(System.String,System.String,Microsoft.CodeAnalysis.SpecialType)", "summary", "df-generated"] - ["Microsoft.Interop", "EnumTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "EnumTypeInfo", "op_Equality", "(Microsoft.Interop.EnumTypeInfo,Microsoft.Interop.EnumTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "EnumTypeInfo", "op_Inequality", "(Microsoft.Interop.EnumTypeInfo,Microsoft.Interop.EnumTypeInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "Forwarder", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "Forwarder", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "Forwarder", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "Forwarder", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "Forwarder", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "Forwarder", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "Forwarder", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratedStatements", "Create", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratedStatements", "Create", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubCodeContext,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", "NotRecommended", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "GeneratedStatements", "Create", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext,Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)", "summary", "df-generated"] + - ["Microsoft.Interop", "GeneratedStatements", "Create", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", "NotRecommended", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", "op_Equality", "(Microsoft.Interop.GeneratorDiagnostic+NotRecommended,Microsoft.Interop.GeneratorDiagnostic+NotRecommended)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotRecommended", "op_Inequality", "(Microsoft.Interop.GeneratorDiagnostic+NotRecommended,Microsoft.Interop.GeneratorDiagnostic+NotRecommended)", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", "NotSupported", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", "NotSupported", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", "op_Equality", "(Microsoft.Interop.GeneratorDiagnostic+NotSupported,Microsoft.Interop.GeneratorDiagnostic+NotSupported)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+NotSupported", "op_Inequality", "(Microsoft.Interop.GeneratorDiagnostic+NotSupported,Microsoft.Interop.GeneratorDiagnostic+NotSupported)", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", "UnnecessaryData", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", "op_Equality", "(Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData,Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic+UnnecessaryData", "op_Inequality", "(Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData,Microsoft.Interop.GeneratorDiagnostic+UnnecessaryData)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "ToDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.Location,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "get_IsFatal", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "GeneratorDiagnostic", "get_StubCodeContext", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "get_TypePositionInfo", "()", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "op_Equality", "(Microsoft.Interop.GeneratorDiagnostic,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "GeneratorDiagnostic", "op_Inequality", "(Microsoft.Interop.GeneratorDiagnostic,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] @@ -324,6 +368,11 @@ extensions: - ["Microsoft.Interop", "HashCode", "Combine", "(T1,T2,T3)", "summary", "df-generated"] - ["Microsoft.Interop", "HashCode", "Combine", "(T1,T2)", "summary", "df-generated"] - ["Microsoft.Interop", "HashCode", "SequentialValuesHash", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", "Generate", "(Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", "get_NativeSignatureBehavior", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", "get_UsesNativeIdentifier", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "IBoundMarshallingGenerator", "get_ValueBoundaryBehavior", "()", "summary", "df-generated"] - ["Microsoft.Interop", "IDiagnosticDescriptorProvider", "GetDescriptor", "(Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "IDiagnosticDescriptorProvider", "get_ConfigurationNotSupported", "()", "summary", "df-generated"] - ["Microsoft.Interop", "IDiagnosticDescriptorProvider", "get_ConfigurationValueNotSupported", "()", "summary", "df-generated"] @@ -331,15 +380,15 @@ extensions: - ["Microsoft.Interop", "IElementInfoProvider", "FindNameForParamIndex", "(System.Int32)", "summary", "df-generated"] - ["Microsoft.Interop", "IElementInfoProvider", "TryGetInfoForElementName", "(Microsoft.CodeAnalysis.AttributeData,System.String,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "IElementInfoProvider", "TryGetInfoForParamIndex", "(Microsoft.CodeAnalysis.AttributeData,System.Int32,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - - ["Microsoft.Interop", "IMarshallingGenerator", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "IMarshallingInfoAttributeParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "ISignatureDiagnosticLocations", "CreateDiagnosticInfo", "(Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "ISymbolExtensions", "IsAccessibleFromFileScopedClass", "(Microsoft.CodeAnalysis.INamedTypeSymbol,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "ITypeBasedMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "IUnboundMarshallingGenerator", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "IUseSiteAttributeParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "IUseSiteAttributeParser", "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalGeneratorInitializationContextExtensions", "CreateEnvironmentFlagsProvider", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] @@ -347,6 +396,7 @@ extensions: - ["Microsoft.Interop", "IncrementalGeneratorInitializationContextExtensions", "RegisterConcatenatedSyntaxOutputs", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext,Microsoft.CodeAnalysis.IncrementalValuesProvider,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalGeneratorInitializationContextExtensions", "RegisterDiagnostics", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext,Microsoft.CodeAnalysis.IncrementalValuesProvider)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalGeneratorInitializationContextExtensions", "RegisterDiagnostics", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext,Microsoft.CodeAnalysis.IncrementalValuesProvider)", "summary", "df-generated"] + - ["Microsoft.Interop", "IncrementalValuesProviderExtensions", "Concat", "(Microsoft.CodeAnalysis.IncrementalValuesProvider,Microsoft.CodeAnalysis.IncrementalValuesProvider)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalValuesProviderExtensions", "SelectNormalized", "(Microsoft.CodeAnalysis.IncrementalValuesProvider)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalValuesProviderExtensions", "Split", "(Microsoft.CodeAnalysis.IncrementalValuesProvider>)", "summary", "df-generated"] - ["Microsoft.Interop", "IncrementalValuesProviderExtensions", "Zip", "(Microsoft.CodeAnalysis.IncrementalValuesProvider,Microsoft.CodeAnalysis.IncrementalValuesProvider)", "summary", "df-generated"] @@ -360,15 +410,13 @@ extensions: - ["Microsoft.Interop", "InteropGenerationOptions", "op_Equality", "(Microsoft.Interop.InteropGenerationOptions,Microsoft.Interop.InteropGenerationOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "InteropGenerationOptions", "op_Inequality", "(Microsoft.Interop.InteropGenerationOptions,Microsoft.Interop.InteropGenerationOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "LibraryImportGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", "get_AdditionalTemporaryStateLivesAcrossStages", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", "get_SingleFrameSpansNativeContext", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", "op_Equality", "(Microsoft.Interop.ManagedToNativeStubCodeContext,Microsoft.Interop.ManagedToNativeStubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedToNativeStubCodeContext", "op_Inequality", "(Microsoft.Interop.ManagedToNativeStubCodeContext,Microsoft.Interop.ManagedToNativeStubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", "GenerateStubBody", "(System.String)", "summary", "df-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", "GenerateTargetMethodSignatureData", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", "get_HasForwardedTypes", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "ManagedToNativeStubGenerator", "get_NoMarshallingRequired", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "CreateTypeInfoForTypeSymbol", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "Equals", "(Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "GetHashCode", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "ManagedTypeInfo", "ManagedTypeInfo", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "get_Syntax", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ManagedTypeInfo", "op_Equality", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] @@ -379,12 +427,10 @@ extensions: - ["Microsoft.Interop", "ManualTypeMarshallingHelper", "ModeUsesUnmanagedToManagedShape", "(Microsoft.Interop.MarshalMode)", "summary", "df-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", "TryGetLinearCollectionMarshallersFromEntryType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.Compilation,System.Func,System.Nullable)", "summary", "df-generated"] - ["Microsoft.Interop", "ManualTypeMarshallingHelper", "TryGetValueMarshallersFromEntryType", "(Microsoft.CodeAnalysis.INamedTypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.Compilation,System.Nullable)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshalAsArrayInfo", "MarshalAsArrayInfo", "(System.Runtime.InteropServices.UnmanagedType,Microsoft.Interop.CharEncoding,System.Runtime.InteropServices.UnmanagedType,Microsoft.Interop.CountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsArrayInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsArrayInfo", "op_Equality", "(Microsoft.Interop.MarshalAsArrayInfo,Microsoft.Interop.MarshalAsArrayInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsArrayInfo", "op_Inequality", "(Microsoft.Interop.MarshalAsArrayInfo,Microsoft.Interop.MarshalAsArrayInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsAttributeParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshalAsAttributeParser", "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsInfo", "MarshalAsInfo", "(System.Runtime.InteropServices.UnmanagedType,Microsoft.Interop.CharEncoding)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsInfo", "op_Equality", "(Microsoft.Interop.MarshalAsInfo,Microsoft.Interop.MarshalAsInfo)", "summary", "df-generated"] @@ -395,21 +441,29 @@ extensions: - ["Microsoft.Interop", "MarshalAsScalarInfo", "op_Inequality", "(Microsoft.Interop.MarshalAsScalarInfo,Microsoft.Interop.MarshalAsScalarInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalAsWithCustomMarshallersParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshalUsingAttributeParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshalUsingAttributeParser", "ParseAttribute", "(Microsoft.CodeAnalysis.AttributeData,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.GetMarshallingInfoCallback)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "CreateClearLastSystemErrorStatement", "(System.Int32)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "CreateGetLastSystemErrorStatement", "(System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "CreateSetLastPInvokeErrorStatement", "(System.String)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "DefaultInit", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "GetCleanupStage", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "GetDependentElementsOfMarshallingInfo", "(Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "GetIndexedManagedElementExpression", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "GetIndexerIdentifier", "(System.Int32)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "GetManagedArgumentRefKindKeyword", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "GetManagedParameterModifiers", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "GetMarshalDirection", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "GetRefKindForByValueContentsKind", "(Microsoft.Interop.ByValueContentsMarshalKind)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallerHelpers", "SkipInitOrDefaultInit", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "IsInInvocationReturnPosition", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.MarshalDirection)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "IsInStubReturnPosition", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.MarshalDirection)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallerHelpers", "SkipInitOrDefaultInit", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallerHelpers", "ValidateCountInfoAvailableAtCall", "(Microsoft.Interop.MarshalDirection,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnosticsBag,Microsoft.CodeAnalysis.IMethodSymbol,Microsoft.CodeAnalysis.DiagnosticDescriptor,Microsoft.CodeAnalysis.DiagnosticDescriptor)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsArgument", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsManagedArgument", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsParameter", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "GenerateAttributesForReturnType", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "GenerateNativeByRefInitialization", "(Microsoft.Interop.IMarshallingGenerator,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsArgument", "(Microsoft.Interop.IBoundMarshallingGenerator,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsManagedArgument", "(Microsoft.Interop.IBoundMarshallingGenerator,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "AsParameter", "(Microsoft.Interop.IBoundMarshallingGenerator,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "GenerateAttributesForReturnType", "(Microsoft.Interop.IBoundMarshallingGenerator)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "GenerateNativeByRefInitialization", "(Microsoft.Interop.IBoundMarshallingGenerator,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "IsBlittable", "(Microsoft.Interop.IBoundMarshallingGenerator)", "summary", "df-generated"] + - ["Microsoft.Interop", "MarshallingGeneratorExtensions", "IsForwarder", "(Microsoft.Interop.IBoundMarshallingGenerator)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallingInfo", "op_Equality", "(Microsoft.Interop.MarshallingInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "MarshallingInfo", "op_Inequality", "(Microsoft.Interop.MarshallingInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] @@ -421,18 +475,9 @@ extensions: - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "Equals", "(Microsoft.Interop.MethodSignatureDiagnosticLocations)", "summary", "df-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "GetHashCode", "()", "summary", "df-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "MethodSignatureDiagnosticLocations", "(Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax)", "summary", "df-generated"] - - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "MethodSignatureDiagnosticLocations", "(System.String,System.Collections.Immutable.ImmutableArray,Microsoft.CodeAnalysis.Location)", "summary", "df-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "op_Equality", "(Microsoft.Interop.MethodSignatureDiagnosticLocations,Microsoft.Interop.MethodSignatureDiagnosticLocations)", "summary", "df-generated"] - ["Microsoft.Interop", "MethodSignatureDiagnosticLocations", "op_Inequality", "(Microsoft.Interop.MethodSignatureDiagnosticLocations,Microsoft.Interop.MethodSignatureDiagnosticLocations)", "summary", "df-generated"] - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", "FindNameForParamIndex", "(System.Int32)", "summary", "df-generated"] - - ["Microsoft.Interop", "MethodSignatureElementInfoProvider", "TryGetInfoForParamIndex", "(Microsoft.CodeAnalysis.AttributeData,System.Int32,Microsoft.Interop.GetMarshallingInfoCallback,Microsoft.Interop.IElementInfoProvider,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportCollectionMarshallingInfo", "MissingSupportCollectionMarshallingInfo", "(Microsoft.Interop.CountInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportCollectionMarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportCollectionMarshallingInfo", "op_Equality", "(Microsoft.Interop.MissingSupportCollectionMarshallingInfo,Microsoft.Interop.MissingSupportCollectionMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportCollectionMarshallingInfo", "op_Inequality", "(Microsoft.Interop.MissingSupportCollectionMarshallingInfo,Microsoft.Interop.MissingSupportCollectionMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportMarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportMarshallingInfo", "op_Equality", "(Microsoft.Interop.MissingSupportMarshallingInfo,Microsoft.Interop.MissingSupportMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "MissingSupportMarshallingInfo", "op_Inequality", "(Microsoft.Interop.MissingSupportMarshallingInfo,Microsoft.Interop.MissingSupportMarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NameSyntaxes", "get_DefaultDllImportSearchPathsAttribute", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NameSyntaxes", "get_DllImportAttribute", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NameSyntaxes", "get_LibraryImportAttribute", "()", "summary", "df-generated"] @@ -443,34 +488,26 @@ extensions: - ["Microsoft.Interop", "NameSyntaxes", "get_System_Runtime_InteropServices_MarshalAsAttribute", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NameSyntaxes", "get_UnmanagedCallConvAttribute", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NameSyntaxes", "get_UnmanagedCallersOnlyAttribute", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", "NativeLinearCollectionMarshallingInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers,Microsoft.Interop.CountInfo,Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "NameSyntaxes", "get_WasmImportLinkageAttribute", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", "op_Equality", "(Microsoft.Interop.NativeLinearCollectionMarshallingInfo,Microsoft.Interop.NativeLinearCollectionMarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NativeLinearCollectionMarshallingInfo", "op_Inequality", "(Microsoft.Interop.NativeLinearCollectionMarshallingInfo,Microsoft.Interop.NativeLinearCollectionMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", "NativeMarshallingAttributeInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.CustomTypeMarshallers)", "summary", "df-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", "op_Equality", "(Microsoft.Interop.NativeMarshallingAttributeInfo,Microsoft.Interop.NativeMarshallingAttributeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeInfo", "op_Inequality", "(Microsoft.Interop.NativeMarshallingAttributeInfo,Microsoft.Interop.NativeMarshallingAttributeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NativeMarshallingAttributeParser", "CanParseAttributeType", "(Microsoft.CodeAnalysis.INamedTypeSymbol)", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", "get_AdditionalTemporaryStateLivesAcrossStages", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", "get_SingleFrameSpansNativeContext", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", "op_Equality", "(Microsoft.Interop.NativeToManagedStubCodeContext,Microsoft.Interop.NativeToManagedStubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "NativeToManagedStubCodeContext", "op_Inequality", "(Microsoft.Interop.NativeToManagedStubCodeContext,Microsoft.Interop.NativeToManagedStubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "NoCountInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NoCountInfo", "op_Equality", "(Microsoft.Interop.NoCountInfo,Microsoft.Interop.NoCountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NoCountInfo", "op_Inequality", "(Microsoft.Interop.NoCountInfo,Microsoft.Interop.NoCountInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NoMarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "NoMarshallingInfo", "op_Equality", "(Microsoft.Interop.NoMarshallingInfo,Microsoft.Interop.NoMarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "NoMarshallingInfo", "op_Inequality", "(Microsoft.Interop.NoMarshallingInfo,Microsoft.Interop.NoMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "NoMarshallingInfoErrorMarshallingFactory", "NoMarshallingInfoErrorMarshallingFactory", "(Microsoft.Interop.IMarshallingGeneratorFactory,System.String)", "summary", "df-generated"] - - ["Microsoft.Interop", "NoMarshallingInfoErrorMarshallingFactory", "get_CustomTypeToErrorMessageMap", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "OwnedValueCodeContext", "get_AdditionalTemporaryStateLivesAcrossStages", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "NoMarshallingInfoErrorResolver", "NoMarshallingInfoErrorResolver", "(System.String)", "summary", "df-generated"] + - ["Microsoft.Interop", "NoMarshallingInfoErrorResolver", "get_CustomTypeToErrorMessageMap", "()", "summary", "df-generated"] - ["Microsoft.Interop", "OwnedValueCodeContext", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "OwnedValueCodeContext", "get_SingleFrameSpansNativeContext", "()", "summary", "df-generated"] - ["Microsoft.Interop", "OwnedValueCodeContext", "op_Equality", "(Microsoft.Interop.OwnedValueCodeContext,Microsoft.Interop.OwnedValueCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "OwnedValueCodeContext", "op_Inequality", "(Microsoft.Interop.OwnedValueCodeContext,Microsoft.Interop.OwnedValueCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "OwnershipTrackingHelpers", "DeclareOriginalValueIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "OwnershipTrackingHelpers", "DeclareOriginalValueIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubIdentifierContext,Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "PointerTypeInfo", "PointerTypeInfo", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "PointerTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "PointerTypeInfo", "op_Equality", "(Microsoft.Interop.PointerTypeInfo,Microsoft.Interop.PointerTypeInfo)", "summary", "df-generated"] @@ -479,20 +516,18 @@ extensions: - ["Microsoft.Interop", "ReferenceTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ReferenceTypeInfo", "op_Equality", "(Microsoft.Interop.ReferenceTypeInfo,Microsoft.Interop.ReferenceTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ReferenceTypeInfo", "op_Inequality", "(Microsoft.Interop.ReferenceTypeInfo,Microsoft.Interop.ReferenceTypeInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "ResolvedGenerator", "NotSupported", "(Microsoft.Interop.GeneratorDiagnostic+NotSupported)", "summary", "df-generated"] - - ["Microsoft.Interop", "ResolvedGenerator", "Resolved", "(Microsoft.Interop.IMarshallingGenerator)", "summary", "df-generated"] - - ["Microsoft.Interop", "ResolvedGenerator", "ResolvedGenerator", "(Microsoft.Interop.IMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - - ["Microsoft.Interop", "ResolvedGenerator", "ResolvedWithDiagnostics", "(Microsoft.Interop.IMarshallingGenerator,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - - ["Microsoft.Interop", "ResolvedGenerator", "get_ResolvedSuccessfully", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", "NotSupported", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic+NotSupported)", "summary", "df-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", "get_IsResolved", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", "get_IsResolvedWithoutErrors", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "ResolvedGenerator", "get_UnresolvedGenerator", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ResolvedGenerator", "op_Equality", "(Microsoft.Interop.ResolvedGenerator,Microsoft.Interop.ResolvedGenerator)", "summary", "df-generated"] - ["Microsoft.Interop", "ResolvedGenerator", "op_Inequality", "(Microsoft.Interop.ResolvedGenerator,Microsoft.Interop.ResolvedGenerator)", "summary", "df-generated"] - ["Microsoft.Interop", "SafeHandleMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] + - ["Microsoft.Interop", "SafeHandleMarshallingInfoProvider", "SafeHandleMarshallingInfoProvider", "(Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "Add", "(T)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "Equals", "(Microsoft.Interop.SequenceEqualImmutableArray)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "GetHashCode", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "SequenceEqualImmutableArray", "Insert", "(System.Int32,T)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "SequenceEqualImmutableArray", "(System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - - ["Microsoft.Interop", "SequenceEqualImmutableArray", "SequenceEqualImmutableArray", "(System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "get_Length", "()", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "op_Equality", "(Microsoft.Interop.SequenceEqualImmutableArray,Microsoft.Interop.SequenceEqualImmutableArray)", "summary", "df-generated"] - ["Microsoft.Interop", "SequenceEqualImmutableArray", "op_Inequality", "(Microsoft.Interop.SequenceEqualImmutableArray,Microsoft.Interop.SequenceEqualImmutableArray)", "summary", "df-generated"] @@ -503,7 +538,6 @@ extensions: - ["Microsoft.Interop", "SignatureContext", "get_StubParameters", "()", "summary", "df-generated"] - ["Microsoft.Interop", "SignatureContext", "op_Equality", "(Microsoft.Interop.SignatureContext,Microsoft.Interop.SignatureContext)", "summary", "df-generated"] - ["Microsoft.Interop", "SignatureContext", "op_Inequality", "(Microsoft.Interop.SignatureContext,Microsoft.Interop.SignatureContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "SizeAndParamIndexInfo", "SizeAndParamIndexInfo", "(System.Int32,Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "SizeAndParamIndexInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "SizeAndParamIndexInfo", "op_Equality", "(Microsoft.Interop.SizeAndParamIndexInfo,Microsoft.Interop.SizeAndParamIndexInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "SizeAndParamIndexInfo", "op_Inequality", "(Microsoft.Interop.SizeAndParamIndexInfo,Microsoft.Interop.SizeAndParamIndexInfo)", "summary", "df-generated"] @@ -523,28 +557,29 @@ extensions: - ["Microsoft.Interop", "StatelessMarshallerShapeHelper+MarshallerMethods", "op_Equality", "(Microsoft.Interop.StatelessMarshallerShapeHelper+MarshallerMethods,Microsoft.Interop.StatelessMarshallerShapeHelper+MarshallerMethods)", "summary", "df-generated"] - ["Microsoft.Interop", "StatelessMarshallerShapeHelper+MarshallerMethods", "op_Inequality", "(Microsoft.Interop.StatelessMarshallerShapeHelper+MarshallerMethods,Microsoft.Interop.StatelessMarshallerShapeHelper+MarshallerMethods)", "summary", "df-generated"] - ["Microsoft.Interop", "StatelessMarshallerShapeHelper", "GetShapeForType", "(Microsoft.CodeAnalysis.ITypeSymbol,Microsoft.CodeAnalysis.ITypeSymbol,System.Boolean,Microsoft.CodeAnalysis.Compilation)", "summary", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "Generate", "(Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "StaticPinnableManagedValueMarshaller", "(Microsoft.Interop.IBoundMarshallingGenerator,Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "get_NativeSignatureBehavior", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "get_UsesNativeIdentifier", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "StaticPinnableManagedValueMarshaller", "get_ValueBoundaryBehavior", "()", "summary", "df-generated"] - ["Microsoft.Interop", "StringMarshallingInfoProvider", "CanProvideMarshallingInfoForType", "(Microsoft.CodeAnalysis.ITypeSymbol)", "summary", "df-generated"] + - ["Microsoft.Interop", "StubCodeContext", "CreateElementMarshallingContext", "(Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "StubCodeContext", "IsInStubReturnPosition", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "StubCodeContext", "get_AdditionalTemporaryStateLivesAcrossStages", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "StubCodeContext", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "StubCodeContext", "get_SingleFrameSpansNativeContext", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "StubCodeContext", "StubCodeContext", "(System.Boolean,System.Boolean,Microsoft.Interop.MarshalDirection)", "summary", "df-generated"] - ["Microsoft.Interop", "StubCodeContext", "op_Equality", "(Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "StubCodeContext", "op_Inequality", "(Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "StubEnvironment", "StubEnvironment", "(Microsoft.CodeAnalysis.Compilation,Microsoft.Interop.EnvironmentFlags)", "summary", "df-generated"] - ["Microsoft.Interop", "StubEnvironment", "op_Equality", "(Microsoft.Interop.StubEnvironment,Microsoft.Interop.StubEnvironment)", "summary", "df-generated"] - ["Microsoft.Interop", "StubEnvironment", "op_Inequality", "(Microsoft.Interop.StubEnvironment,Microsoft.Interop.StubEnvironment)", "summary", "df-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", "get_EqualityContract", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", "op_Equality", "(Microsoft.Interop.StubIdentifierContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "StubIdentifierContext", "op_Inequality", "(Microsoft.Interop.StubIdentifierContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentComparer", "Equals", "(Microsoft.CodeAnalysis.SyntaxNode,Microsoft.CodeAnalysis.SyntaxNode)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentComparer", "Equals", "(Microsoft.CodeAnalysis.SyntaxToken,Microsoft.CodeAnalysis.SyntaxToken)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentComparer", "GetHashCode", "(Microsoft.CodeAnalysis.SyntaxNode)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentComparer", "GetHashCode", "(Microsoft.CodeAnalysis.SyntaxToken)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentNode", "Equals", "(Microsoft.Interop.SyntaxEquivalentNode)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentNode", "GetHashCode", "()", "summary", "df-generated"] - - ["Microsoft.Interop", "SyntaxEquivalentNode", "SyntaxEquivalentNode", "(T)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentNode", "op_Equality", "(Microsoft.Interop.SyntaxEquivalentNode,Microsoft.Interop.SyntaxEquivalentNode)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxEquivalentNode", "op_Inequality", "(Microsoft.Interop.SyntaxEquivalentNode,Microsoft.Interop.SyntaxEquivalentNode)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxExtensions", "StripAccessibilityModifiers", "(Microsoft.CodeAnalysis.SyntaxTokenList)", "summary", "df-generated"] @@ -564,14 +599,9 @@ extensions: - ["Microsoft.Interop", "SyntaxFactoryExtensions", "ReadOnlySpanOf", "(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxFactoryExtensions", "RefArgument", "(Microsoft.CodeAnalysis.CSharp.Syntax.ExpressionSyntax)", "summary", "df-generated"] - ["Microsoft.Interop", "SyntaxFactoryExtensions", "SpanOf", "(Microsoft.CodeAnalysis.CSharp.Syntax.TypeSyntax)", "summary", "df-generated"] - - ["Microsoft.Interop", "SzArrayType", "SzArrayType", "(Microsoft.Interop.ManagedTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "SzArrayType", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "SzArrayType", "op_Equality", "(Microsoft.Interop.SzArrayType,Microsoft.Interop.SzArrayType)", "summary", "df-generated"] - ["Microsoft.Interop", "SzArrayType", "op_Inequality", "(Microsoft.Interop.SzArrayType,Microsoft.Interop.SzArrayType)", "summary", "df-generated"] - - ["Microsoft.Interop", "TargetFrameworkSettings", "TargetFrameworkSettings", "(Microsoft.Interop.TargetFramework,System.Version)", "summary", "df-generated"] - - ["Microsoft.Interop", "TargetFrameworkSettings", "op_Equality", "(Microsoft.Interop.TargetFrameworkSettings,Microsoft.Interop.TargetFrameworkSettings)", "summary", "df-generated"] - - ["Microsoft.Interop", "TargetFrameworkSettings", "op_Inequality", "(Microsoft.Interop.TargetFrameworkSettings,Microsoft.Interop.TargetFrameworkSettings)", "summary", "df-generated"] - - ["Microsoft.Interop", "TargetFrameworkSettingsExtensions", "GetTargetFrameworkSettings", "(Microsoft.CodeAnalysis.Diagnostics.AnalyzerConfigOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "TypeNames", "MarshalEx", "(Microsoft.Interop.InteropGenerationOptions)", "summary", "df-generated"] - ["Microsoft.Interop", "TypeParameterTypeInfo", "TypeParameterTypeInfo", "(System.String,System.String)", "summary", "df-generated"] - ["Microsoft.Interop", "TypeParameterTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] @@ -579,7 +609,7 @@ extensions: - ["Microsoft.Interop", "TypeParameterTypeInfo", "op_Inequality", "(Microsoft.Interop.TypeParameterTypeInfo,Microsoft.Interop.TypeParameterTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "TypePositionInfo", "IncrementIndex", "(System.Int32)", "summary", "df-generated"] - ["Microsoft.Interop", "TypePositionInfo", "IsSpecialIndex", "(System.Int32)", "summary", "df-generated"] - - ["Microsoft.Interop", "TypePositionInfo", "TypePositionInfo", "(Microsoft.Interop.ManagedTypeInfo,Microsoft.Interop.MarshallingInfo)", "summary", "df-generated"] + - ["Microsoft.Interop", "TypePositionInfo", "PositionsEqual", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "TypePositionInfo", "get_IsByRef", "()", "summary", "df-generated"] - ["Microsoft.Interop", "TypePositionInfo", "get_IsManagedExceptionPosition", "()", "summary", "df-generated"] - ["Microsoft.Interop", "TypePositionInfo", "get_IsManagedReturnPosition", "()", "summary", "df-generated"] @@ -624,18 +654,18 @@ extensions: - ["Microsoft.Interop", "TypeSyntaxes", "get_Void", "()", "summary", "df-generated"] - ["Microsoft.Interop", "TypeSyntaxes", "get_VoidStar", "()", "summary", "df-generated"] - ["Microsoft.Interop", "TypeSyntaxes", "get_VoidStarStar", "()", "summary", "df-generated"] + - ["Microsoft.Interop", "UnboundMarshallingGeneratorExtensions", "Bind", "(Microsoft.Interop.IUnboundMarshallingGenerator,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "UnmanagedBlittableMarshallingInfo", "UnmanagedBlittableMarshallingInfo", "(System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "UnmanagedBlittableMarshallingInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "UnmanagedBlittableMarshallingInfo", "op_Equality", "(Microsoft.Interop.UnmanagedBlittableMarshallingInfo,Microsoft.Interop.UnmanagedBlittableMarshallingInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "UnmanagedBlittableMarshallingInfo", "op_Inequality", "(Microsoft.Interop.UnmanagedBlittableMarshallingInfo,Microsoft.Interop.UnmanagedBlittableMarshallingInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "UseSiteAttributeData", "UseSiteAttributeData", "(System.Int32,Microsoft.Interop.CountInfo,Microsoft.CodeAnalysis.AttributeData)", "summary", "df-generated"] - ["Microsoft.Interop", "UseSiteAttributeData", "op_Equality", "(Microsoft.Interop.UseSiteAttributeData,Microsoft.Interop.UseSiteAttributeData)", "summary", "df-generated"] - ["Microsoft.Interop", "UseSiteAttributeData", "op_Inequality", "(Microsoft.Interop.UseSiteAttributeData,Microsoft.Interop.UseSiteAttributeData)", "summary", "df-generated"] - ["Microsoft.Interop", "UseSiteAttributeProvider", "TryGetUseSiteAttributeInfo", "(System.Int32,Microsoft.Interop.UseSiteAttributeData)", "summary", "df-generated"] - - ["Microsoft.Interop", "Utf16CharMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] + - ["Microsoft.Interop", "Utf16CharMarshaller", "Generate", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.StubIdentifierContext)", "summary", "df-generated"] - ["Microsoft.Interop", "Utf16CharMarshaller", "GetNativeSignatureBehavior", "(Microsoft.Interop.TypePositionInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "Utf16CharMarshaller", "GetValueBoundaryBehavior", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - - ["Microsoft.Interop", "Utf16CharMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] + - ["Microsoft.Interop", "Utf16CharMarshaller", "SupportsByValueMarshalKind", "(Microsoft.Interop.ByValueContentsMarshalKind,Microsoft.Interop.TypePositionInfo,Microsoft.Interop.GeneratorDiagnostic)", "summary", "df-generated"] - ["Microsoft.Interop", "Utf16CharMarshaller", "UsesNativeIdentifier", "(Microsoft.Interop.TypePositionInfo,Microsoft.Interop.StubCodeContext)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "ContainsKey", "(T)", "summary", "df-generated"] @@ -644,18 +674,16 @@ extensions: - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "Remove", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "Remove", "(T)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "TryGetValue", "(T,U)", "summary", "df-generated"] - - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "ValueEqualityImmutableDictionary", "(System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "get_Count", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "get_IsReadOnly", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "op_Equality", "(Microsoft.Interop.ValueEqualityImmutableDictionary,Microsoft.Interop.ValueEqualityImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionary", "op_Inequality", "(Microsoft.Interop.ValueEqualityImmutableDictionary,Microsoft.Interop.ValueEqualityImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueEqualityImmutableDictionaryHelperExtensions", "ToValueEqualityImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "summary", "df-generated"] - - ["Microsoft.Interop", "ValueEqualityImmutableDictionaryHelperExtensions", "ToValueEquals", "(System.Collections.Immutable.ImmutableDictionary)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueTypeInfo", "ValueTypeInfo", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueTypeInfo", "get_EqualityContract", "()", "summary", "df-generated"] - ["Microsoft.Interop", "ValueTypeInfo", "op_Equality", "(Microsoft.Interop.ValueTypeInfo,Microsoft.Interop.ValueTypeInfo)", "summary", "df-generated"] - ["Microsoft.Interop", "ValueTypeInfo", "op_Inequality", "(Microsoft.Interop.ValueTypeInfo,Microsoft.Interop.ValueTypeInfo)", "summary", "df-generated"] - - ["Microsoft.Interop", "VariableDeclarations", "GenerateDeclarationsForManagedToUnmanaged", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubCodeContext,System.Boolean)", "summary", "df-generated"] - - ["Microsoft.Interop", "VariableDeclarations", "GenerateDeclarationsForUnmanagedToManaged", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubCodeContext,System.Boolean)", "summary", "df-generated"] + - ["Microsoft.Interop", "VariableDeclarations", "GenerateDeclarationsForManagedToUnmanaged", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubIdentifierContext,System.Boolean)", "summary", "df-generated"] + - ["Microsoft.Interop", "VariableDeclarations", "GenerateDeclarationsForUnmanagedToManaged", "(Microsoft.Interop.BoundGenerators,Microsoft.Interop.StubIdentifierContext,System.Boolean)", "summary", "df-generated"] - ["Microsoft.Interop", "VtableIndexStubGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"] - ["Microsoft.Interop", "WinBoolMarshaller", "WinBoolMarshaller", "(System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Mobile.Build.Clang.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Mobile.Build.Clang.model.yml deleted file mode 100644 index 8c959cda648..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Mobile.Build.Clang.model.yml +++ /dev/null @@ -1,11 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.Mobile.Build.Clang", "ClangBuildOptions", "get_CompilerArguments", "()", "summary", "df-generated"] - - ["Microsoft.Mobile.Build.Clang", "ClangBuildOptions", "get_IncludePaths", "()", "summary", "df-generated"] - - ["Microsoft.Mobile.Build.Clang", "ClangBuildOptions", "get_LinkerArguments", "()", "summary", "df-generated"] - - ["Microsoft.Mobile.Build.Clang", "ClangBuildOptions", "get_NativeLibraryPaths", "()", "summary", "df-generated"] - - ["Microsoft.Mobile.Build.Clang", "ClangBuildOptions", "get_Sources", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.NET.Sdk.WebAssembly.model.yml b/csharp/ql/lib/ext/generated/Microsoft.NET.Sdk.WebAssembly.model.yml deleted file mode 100644 index d412cf13e60..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.NET.Sdk.WebAssembly.model.yml +++ /dev/null @@ -1,25 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.NET.Sdk.WebAssembly", "ConvertDllsToWebCil", True, "Execute", "()", "", "Argument[this].Property[Microsoft.NET.Sdk.WebAssembly.ConvertDllsToWebCil.Candidates]", "Argument[this].Property[Microsoft.NET.Sdk.WebAssembly.ConvertDllsToWebCil.WebCilCandidates]", "value", "dfc-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "ConvertDllsToWebCil", True, "Execute", "()", "", "Argument[this].Property[Microsoft.NET.Sdk.WebAssembly.ConvertDllsToWebCil.OutputPath]", "Argument[this].Field[Microsoft.NET.Sdk.WebAssembly.ConvertDllsToWebCil._fileWrites].Element", "taint", "dfc-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.NET.Sdk.WebAssembly", "AssetsComputingHelper", "GetCandidateRelativePath", "(Microsoft.Build.Framework.ITaskItem)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "AssetsComputingHelper", "GetCustomIcuAsset", "(Microsoft.Build.Framework.ITaskItem)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "AssetsComputingHelper", "ShouldFilterCandidate", "(Microsoft.Build.Framework.ITaskItem,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String,System.Boolean,System.Boolean,System.String)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "AssetsComputingHelper", "TryGetAssetFilename", "(Microsoft.Build.Framework.ITaskItem,System.String)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "BootJsonBuilderHelper", "BootJsonBuilderHelper", "(Microsoft.Build.Utilities.TaskLoggingHelper)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "BootJsonBuilderHelper", "ComputeResourcesHash", "(Microsoft.NET.Sdk.WebAssembly.BootJsonData)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "BootJsonBuilderHelper", "GetNativeResourceTargetInBootConfig", "(Microsoft.NET.Sdk.WebAssembly.BootJsonData,System.String)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "ComputeWasmBuildAssets", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "ComputeWasmPublishAssets", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "ConvertDllsToWebCil", "get_FileWrites", "()", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "FileHasher", "GetFileHash", "(System.String)", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "GenerateWasmBootJson", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.NET.Sdk.WebAssembly", "GenerateWasmBootJson", "WriteBootJson", "(System.IO.Stream,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.NET.WebAssembly.Webcil.model.yml b/csharp/ql/lib/ext/generated/Microsoft.NET.WebAssembly.Webcil.model.yml deleted file mode 100644 index b9ba2d178cc..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.NET.WebAssembly.Webcil.model.yml +++ /dev/null @@ -1,39 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter", False, "FromPortableExecutable", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter", False, "FromPortableExecutable", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", False, "GetMetadataReaderProvider", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", False, "WebcilReader", "(System.IO.Stream)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", False, "WebcilReader", "(System.IO.Stream,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilWasmWrapper", False, "WebcilWasmWrapper", "(System.IO.Stream)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+FilePosition", "FilePosition", "(System.Int32)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+FilePosition", "op_Addition", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition,System.Int32)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+FilePosition", "op_Equality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+FilePosition", "op_Inequality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+PEFileInfo", "PEFileInfo", "(System.Collections.Immutable.ImmutableArray,System.Reflection.PortableExecutable.DirectoryEntry,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+PEFileInfo", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+PEFileInfo", "op_Equality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+PEFileInfo", "op_Inequality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+WCFileInfo", "WCFileInfo", "(Microsoft.NET.WebAssembly.Webcil.WebcilHeader,System.Collections.Immutable.ImmutableArray,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+FilePosition)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+WCFileInfo", "get_EqualityContract", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+WCFileInfo", "op_Equality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter+WCFileInfo", "op_Inequality", "(Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter", "ConvertToWebcil", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter", "GatherInfo", "(System.Reflection.PortableExecutable.PEReader,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilConverter", "WriteConversionTo", "(System.IO.Stream,System.IO.FileStream,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+PEFileInfo,Microsoft.NET.WebAssembly.Webcil.WebcilConverter+WCFileInfo)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "Dispose", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "GetMetadataReader", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "ReadCodeViewDebugDirectoryData", "(System.Reflection.PortableExecutable.DebugDirectoryEntry)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "ReadDebugDirectory", "()", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "ReadEmbeddedPortablePdbDebugDirectoryData", "(System.Reflection.PortableExecutable.DebugDirectoryEntry)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilReader", "ReadPdbChecksumDebugDirectoryData", "(System.Reflection.PortableExecutable.DebugDirectoryEntry)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilSectionHeader", "WebcilSectionHeader", "(System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - - ["Microsoft.NET.WebAssembly.Webcil", "WebcilWasmWrapper", "WriteWasmWrappedWebcil", "(System.IO.Stream)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.WebAssembly.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/Microsoft.WebAssembly.Build.Tasks.model.yml deleted file mode 100644 index b66f35842d6..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.WebAssembly.Build.Tasks.model.yml +++ /dev/null @@ -1,37 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["Microsoft.WebAssembly.Build.Tasks", "RunWithEmSdkEnv", True, "Execute", "()", "", "Argument[this].Property[Microsoft.WebAssembly.Build.Tasks.RunWithEmSdkEnv.EmSdkPath]", "Argument[this].Property[Microsoft.Build.Tasks.Exec.Command]", "taint", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasiAppBuilder", True, "ExecuteInternal", "()", "", "Argument[this].Property[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask.AppDir]", "Argument[this].Field[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask._fileWrites].Element", "taint", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasiAppBuilder", True, "ExecuteInternal", "()", "", "Argument[this].Property[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask.Assemblies].Element", "Argument[this].Field[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask._fileWrites].Element", "taint", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", False, "FileCopyChecked", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Field[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask._fileWrites].Element", "value", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", True, "UpdateRuntimeConfigJson", "()", "", "Argument[this].Property[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask.AppDir]", "Argument[this].Field[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask._fileWrites].Element", "taint", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", True, "UpdateRuntimeConfigJson", "()", "", "Argument[this].Property[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask.RuntimeConfigJsonPath]", "Argument[this].Field[Microsoft.WebAssembly.Build.Tasks.WasmAppBuilderBaseTask._fileWrites].Element", "taint", "dfc-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WebcilConverter", False, "FromPortableExecutable", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WebcilConverter", False, "FromPortableExecutable", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WebcilConverter", False, "FromPortableExecutable", "(System.String,System.String,Microsoft.Build.Utilities.TaskLoggingHelper)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.WebAssembly.Build.Tasks", "EmccCompile", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "GenerateAOTProps", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "GetChromeVersions", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "ManagedToNativeGenerator", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "ManagedToNativeGenerator", "FixupSymbolName", "(System.String)", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasiAppBuilder", "AddToRuntimeConfig", "(System.Text.Json.Nodes.JsonObject,System.Text.Json.Nodes.JsonArray,System.Text.Json.Nodes.JsonArray)", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasiAppBuilder", "ValidateArguments", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilder", "ExecuteInternal", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilder", "ValidateArguments", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "AddToRuntimeConfig", "(System.Text.Json.Nodes.JsonObject,System.Text.Json.Nodes.JsonArray,System.Text.Json.Nodes.JsonArray)", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "ExecuteInternal", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "ProcessSatelliteAssemblies", "(System.Action>)", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "ValidateArguments", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmAppBuilderBaseTask", "get_FileWrites", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmCalculateInitialHeapSize", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WasmLoadAssembliesAndReferences", "Execute", "()", "summary", "df-generated"] - - ["Microsoft.WebAssembly.Build.Tasks", "WebcilConverter", "ConvertToWebcil", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Microsoft.Workload.Build.Tasks.model.yml b/csharp/ql/lib/ext/generated/Microsoft.Workload.Build.Tasks.model.yml deleted file mode 100644 index efee6081e34..00000000000 --- a/csharp/ql/lib/ext/generated/Microsoft.Workload.Build.Tasks.model.yml +++ /dev/null @@ -1,7 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["Microsoft.Workload.Build.Tasks", "InstallWorkloadFromArtifacts", "Execute", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml b/csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml index d56e107dff1..69d48425aa1 100644 --- a/csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml +++ b/csharp/ql/lib/ext/generated/Mono.Linker.Dataflow.model.yml @@ -11,14 +11,15 @@ extensions: - ["Mono.Linker.Dataflow", "GenericArgumentDataFlow", False, "GenericArgumentDataFlow", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkStep,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "GenericArgumentDataFlow", False, "GenericArgumentDataFlow", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkStep,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "GenericArgumentDataFlow", False, "GenericArgumentDataFlow", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkStep,Mono.Linker.MessageOrigin)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Dataflow", "HoistedLocalKey", False, "HoistedLocalKey", "(Mono.Cecil.FieldDefinition)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Dataflow", "HoistedLocalKey", False, "HoistedLocalKey", "(Mono.Cecil.FieldReference)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "ReflectionMarker", False, "ReflectionMarker", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkStep,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "ReflectionMarker", False, "ReflectionMarker", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkStep,System.Boolean)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Source]", "value", "dfc-generated"] - - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Target]", "value", "dfc-generated"] - - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin)", "", "Argument[2]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Origin]", "value", "dfc-generated"] + - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin,System.Nullable)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Source]", "value", "dfc-generated"] + - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin,System.Nullable)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Target]", "value", "dfc-generated"] + - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin,System.Nullable)", "", "Argument[2]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.Origin]", "value", "dfc-generated"] + - ["Mono.Linker.Dataflow", "TrimAnalysisAssignmentPattern", False, "TrimAnalysisAssignmentPattern", "(ILLink.Shared.DataFlow.ValueSet,ILLink.Shared.DataFlow.ValueSet,Mono.Linker.MessageOrigin,System.Nullable)", "", "Argument[3]", "Argument[this].Property[Mono.Linker.Dataflow.TrimAnalysisAssignmentPattern.ParameterIndex]", "value", "dfc-generated"] - ["Mono.Linker.Dataflow", "TrimAnalysisMethodCallPattern", False, "Merge", "(ILLink.Shared.DataFlow.ValueSetLattice,Mono.Linker.Dataflow.TrimAnalysisMethodCallPattern)", "", "Argument[1].Field[Mono.Linker.Dataflow.TrimAnalysisMethodCallPattern.Instance]", "ReturnValue.Field[Mono.Linker.Dataflow.TrimAnalysisMethodCallPattern.Instance]", "value", "dfc-generated"] - ["Mono.Linker.Dataflow", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodReference,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.Dataflow.TrimAnalysisMethodCallPattern.Operation]", "value", "dfc-generated"] - ["Mono.Linker.Dataflow", "TrimAnalysisMethodCallPattern", False, "TrimAnalysisMethodCallPattern", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodReference,ILLink.Shared.DataFlow.ValueSet,System.Collections.Immutable.ImmutableArray>,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this].Field[Mono.Linker.Dataflow.TrimAnalysisMethodCallPattern.CalledMethod]", "value", "dfc-generated"] @@ -34,7 +35,7 @@ extensions: - ["Mono.Linker.Dataflow", "AttributeDataFlow", "ProcessAttributeDataflow", "(Mono.Cecil.FieldDefinition,Mono.Cecil.CustomAttributeArgument)", "summary", "df-generated"] - ["Mono.Linker.Dataflow", "AttributeDataFlow", "ProcessAttributeDataflow", "(Mono.Cecil.MethodDefinition,System.Collections.Generic.IList)", "summary", "df-generated"] - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "GetGeneratedTypeAttributes", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "IsHoistedLocal", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] + - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "IsHoistedLocal", "(Mono.Cecil.FieldReference)", "summary", "df-generated"] - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "IsNestedFunctionOrStateMachineMember", "(Mono.Cecil.IMemberDefinition)", "summary", "df-generated"] - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "TryGetCompilerGeneratedCalleesForUserMethod", "(Mono.Cecil.MethodDefinition,System.Collections.Generic.List)", "summary", "df-generated"] - ["Mono.Linker.Dataflow", "CompilerGeneratedState", "TryGetOwningMethodForCompilerGeneratedMember", "(Mono.Cecil.IMemberDefinition,Mono.Cecil.MethodDefinition)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml b/csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml index 999d5e420ca..f72895d03e2 100644 --- a/csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml +++ b/csharp/ql/lib/ext/generated/Mono.Linker.Steps.model.yml @@ -20,54 +20,52 @@ extensions: - ["Mono.Linker.Steps", "DescriptorMarker", False, "GetMethodSignature", "(Mono.Cecil.MethodDefinition,System.Boolean)", "", "Argument[0].Property[Mono.Cecil.MethodDefinition.Name]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", False, "GetMethodSignature", "(Mono.Cecil.MethodDefinition,System.Boolean)", "", "Argument[0].Property[Mono.Cecil.MethodReference.ReturnType].Property[Mono.Cecil.TypeReference.FullName]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", True, "GetMethod", "(Mono.Cecil.TypeDefinition,System.String)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Methods].Element", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", True, "ProcessField", "(Mono.Cecil.TypeDefinition,Mono.Cecil.FieldDefinition,System.Xml.XPath.XPathNavigator)", "", "Argument[1]", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", True, "ProcessMethod", "(Mono.Cecil.TypeDefinition,Mono.Cecil.MethodDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[1]", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", True, "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "", "Argument[1].Property[Mono.Cecil.PropertyDefinition.GetMethod]", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", True, "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "", "Argument[1].Property[Mono.Cecil.PropertyDefinition.SetMethod]", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", True, "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "", "Argument[1]", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] - ["Mono.Linker.Steps", "IMarkHandler", True, "Initialize", "(Mono.Linker.LinkContext,Mono.Linker.Steps.MarkContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", False, "Parse", "(Mono.Linker.AttributeInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", True, "GetMethod", "(Mono.Cecil.TypeDefinition,System.String)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Methods].Element", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack+Scope", False, "Scope", "(Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.Steps.MarkScopeStack+Scope.Origin]", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", False, "PopToParent", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", False, "PushScope", "(Mono.Linker.MessageOrigin)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", False, "PushScope", "(Mono.Linker.MessageOrigin)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", False, "PushScope", "(Mono.Linker.Steps.MarkScopeStack+Scope)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", False, "PushScope", "(Mono.Linker.Steps.MarkScopeStack+Scope)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep+AttributeProviderPair", False, "AttributeProviderPair", "(Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Steps.MarkStep+AttributeProviderPair.Attribute]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep+AttributeProviderPair", False, "AttributeProviderPair", "(Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.Steps.MarkStep+AttributeProviderPair.Provider]", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "GetOriginalMethod", "(Mono.Cecil.MethodReference,Mono.Linker.DependencyInfo)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "GetOriginalType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "MarkCustomAttributeField", "(Mono.Cecil.CustomAttributeNamedArgument,Mono.Cecil.TypeDefinition,Mono.Cecil.ICustomAttribute)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "MarkCustomAttributeFields", "(Mono.Cecil.ICustomAttribute,Mono.Cecil.TypeDefinition)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "GetOriginalMethod", "(Mono.Cecil.MethodReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "GetOriginalType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "MarkCustomAttributeField", "(Mono.Cecil.CustomAttributeNamedArgument,Mono.Cecil.TypeDefinition,Mono.Cecil.ICustomAttribute,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "MarkCustomAttributeFields", "(Mono.Cecil.ICustomAttribute,Mono.Cecil.TypeDefinition,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "MarkField", "(Mono.Cecil.FieldReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "MarkFields", "(Mono.Cecil.TypeDefinition,System.Boolean,Mono.Linker.DependencyInfo,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "MarkFields", "(Mono.Cecil.TypeDefinition,System.Boolean,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "MarkMethodIf", "(Mono.Collections.Generic.Collection,System.Func,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "MarkMethodIf", "(Mono.Collections.Generic.Collection,System.Func,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "MarkMethodsIf", "(Mono.Collections.Generic.Collection,System.Func,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "MarkProperty", "(Mono.Cecil.PropertyDefinition,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "MarkStaticFields", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", False, "MarkStaticFields", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_Annotations", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_Context", "()", "", "Argument[this].SyntheticField[Mono.Linker.Steps.MarkStep._context]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_EmbeddedXmlInfo", "()", "", "Argument[this].Property[Mono.Linker.Steps.MarkStep.Context].Property[Mono.Linker.LinkContext.EmbeddedXmlInfo]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_EmbeddedXmlInfo", "()", "", "Argument[this].SyntheticField[Mono.Linker.Steps.MarkStep._context].Property[Mono.Linker.LinkContext.EmbeddedXmlInfo]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_MarkingHelpers", "()", "", "Argument[this].Property[Mono.Linker.Steps.MarkStep.Context].Property[Mono.Linker.LinkContext.MarkingHelpers]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_MarkingHelpers", "()", "", "Argument[this].SyntheticField[Mono.Linker.Steps.MarkStep._context].Property[Mono.Linker.LinkContext.MarkingHelpers]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", False, "get_ScopeStack", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_Tracer", "()", "", "Argument[this].Property[Mono.Linker.Steps.MarkStep.Context].Property[Mono.Linker.LinkContext.Tracer]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStep", False, "get_Tracer", "()", "", "Argument[this].SyntheticField[Mono.Linker.Steps.MarkStep._context].Property[Mono.Linker.LinkContext.Tracer]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkAssembly", "(Mono.Cecil.AssemblyDefinition,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkEvent", "(Mono.Cecil.EventDefinition,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkInstruction", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodDefinition,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkInterfaceImplementation", "(Mono.Cecil.InterfaceImplementation,System.Nullable,System.Nullable)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkAssembly", "(Mono.Cecil.AssemblyDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkEvent", "(Mono.Cecil.EventDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkInstruction", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodDefinition,System.Boolean,Mono.Linker.MessageOrigin)", "", "Argument[3].Property[Mono.Linker.MessageOrigin.FileName]", "ReturnValue.Property[Mono.Linker.MessageOrigin.FileName]", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkInstruction", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodDefinition,System.Boolean,Mono.Linker.MessageOrigin)", "", "Argument[3].Property[Mono.Linker.MessageOrigin.Provider]", "ReturnValue.Property[Mono.Linker.MessageOrigin.Provider]", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkInstruction", "(Mono.Cecil.Cil.Instruction,Mono.Cecil.MethodDefinition,System.Boolean,Mono.Linker.MessageOrigin)", "", "Argument[3]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkInterfaceImplementation", "(Mono.Cecil.InterfaceImplementation,Mono.Linker.MessageOrigin,System.Nullable)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", True, "MarkMethod", "(Mono.Cecil.MethodReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", True, "MarkMethod", "(Mono.Cecil.MethodReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", True, "MarkRequirementsForInstantiatedTypes", "(Mono.Cecil.TypeDefinition)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkSecurityAttribute", "(Mono.Cecil.SecurityAttribute,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,System.Nullable)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,System.Nullable)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkTypeVisibleToReflection", "(Mono.Cecil.TypeReference,Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkTypeVisibleToReflection", "(Mono.Cecil.TypeReference,Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkTypeVisibleToReflection", "(Mono.Cecil.TypeReference,Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "MarkUserDependency", "(Mono.Cecil.IMemberDefinition,Mono.Cecil.CustomAttribute)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkSecurityAttribute", "(Mono.Cecil.SecurityAttribute,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkType", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkTypeVisibleToReflection", "(Mono.Cecil.TypeReference,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "MarkUserDependency", "(Mono.Cecil.IMemberDefinition,Mono.Cecil.CustomAttribute,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", True, "Process", "(Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this].SyntheticField[Mono.Linker.Steps.MarkStep._context]", "value", "dfc-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "ProcessLinkerSpecialAttribute", "(Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider,Mono.Linker.DependencyInfo)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", True, "ProcessMethod", "(Mono.Cecil.MethodDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "ProcessLinkerSpecialAttribute", "(Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", True, "ProcessMethod", "(Mono.Cecil.MethodDefinition,Mono.Linker.DependencyInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "MarkStepContext", True, "RegisterMarkAssemblyAction", "(System.Action)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Steps.MarkStepContext.MarkAssemblyActions].Element", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStepContext", True, "RegisterMarkMethodAction", "(System.Action)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Steps.MarkStepContext.MarkMethodActions].Element", "value", "dfc-generated"] - ["Mono.Linker.Steps", "MarkStepContext", True, "RegisterMarkTypeAction", "(System.Action)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.Steps.MarkStepContext.MarkTypeActions].Element", "value", "dfc-generated"] @@ -85,8 +83,15 @@ extensions: - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "ProcessLinkerXmlBase", "(Mono.Linker.LinkContext,System.IO.Stream,Mono.Cecil.EmbeddedResource,Mono.Cecil.AssemblyDefinition,System.String)", "", "Argument[3]", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlBase._resource].Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "ProcessLinkerXmlBase", "(Mono.Linker.LinkContext,System.IO.Stream,System.String)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlBase._context]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "ProcessLinkerXmlBase", "(Mono.Linker.LinkContext,System.IO.Stream,System.String)", "", "Argument[2]", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlBase._xmlDocumentLocation]", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "ProcessTypeChildren", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "ToString", "()", "", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlBase._xmlDocumentLocation]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", False, "TryConvertValue", "(System.String,Mono.Cecil.TypeReference,System.Object)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessEvent", "(Mono.Cecil.TypeDefinition,Mono.Cecil.EventDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessEvent", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Events].Element", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessField", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Fields].Element", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessMethod", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Methods].Element", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessProperty", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Properties].Element", "Argument[this].Field[Mono.Linker.Steps.DescriptorMarker._preservedMembers].Element", "value", "dfc-generated"] + - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", True, "ProcessType", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlStepBase", False, "ProcessLinkerXmlStepBase", "(System.IO.Stream,System.String)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlStepBase._documentStream]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlStepBase", False, "ProcessLinkerXmlStepBase", "(System.IO.Stream,System.String)", "", "Argument[1]", "Argument[this].Field[Mono.Linker.Steps.ProcessLinkerXmlStepBase._xmlDocumentLocation]", "value", "dfc-generated"] - ["Mono.Linker.Steps", "RootAssemblyInput", False, "RootAssemblyInput", "(System.String,Mono.Linker.AssemblyRootMode)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -113,9 +118,6 @@ extensions: - ["Mono.Linker.Steps", "BodySubstitutionParser", "BodySubstitutionParser", "(Mono.Linker.LinkContext,System.IO.Stream,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessAssembly", "(Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator,System.Boolean)", "summary", "df-generated"] - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessExportedType", "(Mono.Cecil.ExportedType,Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessField", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessMethod", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessType", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "BodySubstitutionParser", "ProcessTypePattern", "(System.String,Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "CheckSuppressionsDispatcher", "Process", "(Mono.Linker.LinkContext)", "summary", "df-generated"] - ["Mono.Linker.Steps", "CheckSuppressionsStep", "IsActiveFor", "(Mono.Cecil.AssemblyDefinition)", "summary", "df-generated"] @@ -132,14 +134,10 @@ extensions: - ["Mono.Linker.Steps", "DescriptorMarker", "DescriptorMarker", "(Mono.Linker.LinkContext,System.IO.Stream,Mono.Cecil.EmbeddedResource,Mono.Cecil.AssemblyDefinition,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "DescriptorMarker", "(Mono.Linker.LinkContext,System.IO.Stream,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "GetTypePreserve", "(System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "DescriptorMarker", "LogDuplicatePreserve", "(System.String,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "Mark", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessAssembly", "(Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessEvent", "(Mono.Cecil.TypeDefinition,Mono.Cecil.EventDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessExportedType", "(Mono.Cecil.ExportedType,Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessField", "(Mono.Cecil.TypeDefinition,Mono.Cecil.FieldDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessMethod", "(Mono.Cecil.TypeDefinition,Mono.Cecil.MethodDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "DescriptorMarker", "ProcessType", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "DescriptorMarker", "get_AllowedAssemblySelector", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "IStep", "Process", "(Mono.Linker.LinkContext)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ISubStep", "Initialize", "(Mono.Linker.LinkContext)", "summary", "df-generated"] @@ -154,11 +152,9 @@ extensions: - ["Mono.Linker.Steps", "LinkAttributesParser", "LinkAttributesParser", "(Mono.Linker.LinkContext,System.IO.Stream,Mono.Cecil.EmbeddedResource,Mono.Cecil.AssemblyDefinition,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "LinkAttributesParser", "(Mono.Linker.LinkContext,System.IO.Stream,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessAssembly", "(Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessEvent", "(Mono.Cecil.TypeDefinition,Mono.Cecil.EventDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessField", "(Mono.Cecil.TypeDefinition,Mono.Cecil.FieldDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessMethod", "(Mono.Cecil.TypeDefinition,Mono.Cecil.MethodDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "LinkAttributesParser", "ProcessType", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesParser", "get_AllowedAssemblySelector", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesStep", "LinkAttributesStep", "(System.IO.Stream,System.String)", "summary", "df-generated"] - ["Mono.Linker.Steps", "LinkAttributesStep", "Process", "()", "summary", "df-generated"] @@ -166,9 +162,6 @@ extensions: - ["Mono.Linker.Steps", "MarkContext", "RegisterMarkMethodAction", "(System.Action)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkContext", "RegisterMarkTypeAction", "(System.Action)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkExportedTypesTarget", "ProcessAssembly", "(Mono.Cecil.AssemblyDefinition,Mono.Linker.LinkContext)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", "AssertIsEmpty", "()", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", "UpdateCurrentScopeInstructionOffset", "(System.Int32)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkScopeStack", "get_CurrentScope", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "AlwaysMarkTypeAsInstantiated", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "CheckProcessed", "(Mono.Cecil.IMetadataTokenProvider)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "Complete", "()", "summary", "df-generated"] @@ -179,28 +172,28 @@ extensions: - ["Mono.Linker.Steps", "MarkStep", "DoAdditionalProcessing", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "DoAdditionalPropertyProcessing", "(Mono.Cecil.PropertyDefinition)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "DoAdditionalTypeProcessing", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "EnqueueMethod", "(Mono.Cecil.MethodDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "EnqueueMethod", "(Mono.Cecil.MethodDefinition,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "IgnoreScope", "(Mono.Cecil.IMetadataScope)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "Initialize", "()", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "IsFullyPreserved", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "IsUserDependencyMarker", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkAndCacheConvertToThrowExceptionCtor", "(Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttribute", "(Mono.Cecil.CustomAttribute,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttributeProperties", "(Mono.Cecil.ICustomAttribute,Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttributeProperty", "(Mono.Cecil.CustomAttributeNamedArgument,Mono.Cecil.TypeDefinition,Mono.Cecil.ICustomAttribute,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkDefaultConstructor", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkMethodBody", "(Mono.Cecil.Cil.MethodBody)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkMethods", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkMulticastDelegate", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkNamedMethod", "(Mono.Cecil.TypeDefinition,System.String,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkReflectionLikeDependencies", "(Mono.Linker.MethodIL,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkSecurityDeclaration", "(Mono.Cecil.SecurityDeclaration,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkSecurityDeclarations", "(Mono.Cecil.ISecurityDeclarationProvider,Mono.Linker.DependencyInfo)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "MarkSerializable", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkAndCacheConvertToThrowExceptionCtor", "(Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttribute", "(Mono.Cecil.CustomAttribute,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttributeProperties", "(Mono.Cecil.ICustomAttribute,Mono.Cecil.TypeDefinition,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkCustomAttributeProperty", "(Mono.Cecil.CustomAttributeNamedArgument,Mono.Cecil.TypeDefinition,Mono.Cecil.ICustomAttribute,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkDefaultConstructor", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkMethodBody", "(Mono.Cecil.Cil.MethodBody,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkMethods", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkMulticastDelegate", "(Mono.Cecil.TypeDefinition,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkNamedMethod", "(Mono.Cecil.TypeDefinition,System.String,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkReflectionLikeDependencies", "(Mono.Linker.MethodIL,System.Boolean,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkSecurityDeclaration", "(Mono.Cecil.SecurityDeclaration,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkSecurityDeclarations", "(Mono.Cecil.ISecurityDeclarationProvider,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "MarkSerializable", "(Mono.Cecil.TypeDefinition,Mono.Linker.MessageOrigin)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "MarkStaticConstructor", "(Mono.Cecil.TypeDefinition,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "ProcessReflectionDependency", "(Mono.Cecil.Cil.MethodBody,Mono.Cecil.Cil.Instruction)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "ShouldMarkCustomAttribute", "(Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "MarkStep", "ShouldMarkInterfaceImplementation", "(Mono.Cecil.TypeDefinition,Mono.Cecil.InterfaceImplementation)", "summary", "df-generated"] + - ["Mono.Linker.Steps", "MarkStep", "ShouldMarkInterfaceImplementationList", "(Mono.Cecil.TypeDefinition,System.Collections.Generic.List,Mono.Cecil.TypeReference)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "ShouldMarkTopLevelCustomAttribute", "(Mono.Linker.Steps.MarkStep+AttributeProviderPair,Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "ShouldMarkTypeStaticConstructor", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker.Steps", "MarkStep", "ShouldParseMethodBody", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] @@ -224,17 +217,10 @@ extensions: - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "LogWarning", "(System.Xml.XPath.XPathNavigator,ILLink.Shared.DiagnosticId,System.String[])", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessAssemblies", "(System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessAssembly", "(Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessEvent", "(Mono.Cecil.TypeDefinition,Mono.Cecil.EventDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessEvent", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessExportedType", "(Mono.Cecil.ExportedType,Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessField", "(Mono.Cecil.TypeDefinition,Mono.Cecil.FieldDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessField", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessMethod", "(Mono.Cecil.TypeDefinition,Mono.Cecil.MethodDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessMethod", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessProperty", "(Mono.Cecil.TypeDefinition,Mono.Cecil.PropertyDefinition,System.Xml.XPath.XPathNavigator,System.Object,System.Boolean)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessProperty", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessType", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessTypeChildren", "(Mono.Cecil.TypeDefinition,System.Xml.XPath.XPathNavigator,System.Object)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessTypePattern", "(System.String,Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessTypes", "(Mono.Cecil.AssemblyDefinition,System.Xml.XPath.XPathNavigator,System.Boolean)", "summary", "df-generated"] - ["Mono.Linker.Steps", "ProcessLinkerXmlBase", "ProcessXml", "(System.Boolean,System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/Mono.Linker.model.yml b/csharp/ql/lib/ext/generated/Mono.Linker.model.yml index 639886d3b89..6519e273f0c 100644 --- a/csharp/ql/lib/ext/generated/Mono.Linker.model.yml +++ b/csharp/ql/lib/ext/generated/Mono.Linker.model.yml @@ -20,6 +20,7 @@ extensions: - ["Mono.Linker", "AnnotationStore", False, "SetPreservedStaticCtor", "(Mono.Cecil.TypeDefinition)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "AnnotationStore", False, "SetProcessed", "(Mono.Cecil.IMetadataTokenProvider)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.AnnotationStore.processed].Element", "value", "dfc-generated"] - ["Mono.Linker", "AnnotationStore", False, "SetPublic", "(Mono.Cecil.IMetadataTokenProvider)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.AnnotationStore.public_api].Element", "value", "dfc-generated"] + - ["Mono.Linker", "AnnotationStore", False, "SetRootAssembly", "(Mono.Cecil.AssemblyDefinition)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "AnnotationStore", False, "SetSubstitutedInit", "(Mono.Cecil.TypeDefinition)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.AnnotationStore.fieldType_init].Element", "value", "dfc-generated"] - ["Mono.Linker", "AnnotationStore", False, "get_Tracer", "()", "", "Argument[this].Field[Mono.Linker.AnnotationStore.context].Property[Mono.Linker.LinkContext.Tracer]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "AssemblyDefinitionExtensions", False, "FindEmbeddedResource", "(Mono.Cecil.AssemblyDefinition,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -45,20 +46,19 @@ extensions: - ["Mono.Linker", "CustomAttributeSource", False, "GetAssemblyFromCustomAttributeProvider", "(Mono.Cecil.ICustomAttributeProvider)", "", "Argument[0].Property[Mono.Cecil.ModuleDefinition.Assembly]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "CustomAttributeSource", False, "GetAssemblyFromCustomAttributeProvider", "(Mono.Cecil.ICustomAttributeProvider)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "CustomAttributeSource", False, "GetCustomAttributes", "(Mono.Cecil.ICustomAttributeProvider)", "", "Argument[0].Property[Mono.Cecil.ICustomAttributeProvider.CustomAttributes].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["Mono.Linker", "CustomAttributeSource", False, "GetCustomAttributes", "(Mono.Cecil.ICustomAttributeProvider,System.String,System.String)", "", "Argument[0].Property[Mono.Cecil.ICustomAttributeProvider.CustomAttributes].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["Mono.Linker", "DependencyInfo", False, "DependencyInfo", "(Mono.Linker.DependencyKind,System.Object)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.DependencyInfo.Source]", "value", "dfc-generated"] - - ["Mono.Linker", "DependencyRecorderHelper", False, "TokenString", "(Mono.Linker.LinkContext,System.Object)", "", "Argument[1].Property[Mono.Cecil.TypeReference.Module]", "ReturnValue", "taint", "dfc-generated"] - - ["Mono.Linker", "DependencyRecorderHelper", False, "TokenString", "(Mono.Linker.LinkContext,System.Object)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] + - ["Mono.Linker", "DependencyRecorderHelper", False, "TokenString", "(Mono.Linker.LinkContext,System.Object)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker", "DgmlDependencyRecorder", False, "DgmlDependencyRecorder", "(Mono.Linker.LinkContext,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "DgmlDependencyRecorder", False, "DgmlDependencyRecorder", "(Mono.Linker.LinkContext,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureGenerator", False, "VisitMember", "(Mono.Cecil.IMemberDefinition,System.Text.StringBuilder,Mono.Linker.ITryResolveMetadata)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", False, "GetMatchingMembers", "(System.String,System.Int32,Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition,System.String,System.Int32,Mono.Linker.DocumentationSignatureParser+MemberType,System.Collections.Generic.List,Mono.Linker.ITryResolveMetadata,System.Boolean)", "", "Argument[3]", "Argument[7].Element", "taint", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", False, "GetMembersByDocumentationSignature", "(Mono.Cecil.TypeDefinition,System.String,Mono.Linker.ITryResolveMetadata,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", False, "ParseTypeOrNamespaceName", "(System.String,System.Int32,System.Text.StringBuilder)", "", "Argument[0]", "Argument[2]", "taint", "dfc-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", False, "ParseTypeOrNamespaceName", "(System.String,System.Int32,System.Text.StringBuilder)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "taint", "dfc-generated"] - ["Mono.Linker", "Driver", False, "Driver", "(System.Collections.Generic.Queue)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "FeatureSettings", False, "GetAttribute", "(System.Xml.XPath.XPathNavigator,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "ITryResolveMetadata", True, "TryResolve", "(Mono.Cecil.MethodReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "ITryResolveMetadata", True, "TryResolve", "(Mono.Cecil.TypeReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "Create", "(Mono.Cecil.TypeDefinition,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Interfaces].Element", "ReturnValue.Property[Mono.Linker.InterfaceImplementor.InterfaceImplementation]", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "Create", "(Mono.Cecil.TypeDefinition,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[0]", "ReturnValue.Property[Mono.Linker.InterfaceImplementor.Implementor]", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "Create", "(Mono.Cecil.TypeDefinition,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[1]", "ReturnValue.Property[Mono.Linker.InterfaceImplementor.InterfaceType]", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "InterfaceImplementor", "(Mono.Cecil.TypeDefinition,Mono.Cecil.InterfaceImplementation,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.InterfaceImplementor.Implementor]", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "InterfaceImplementor", "(Mono.Cecil.TypeDefinition,Mono.Cecil.InterfaceImplementation,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.InterfaceImplementor.InterfaceImplementation]", "value", "dfc-generated"] + - ["Mono.Linker", "InterfaceImplementor", False, "InterfaceImplementor", "(Mono.Cecil.TypeDefinition,Mono.Cecil.InterfaceImplementation,Mono.Cecil.TypeDefinition,Mono.Cecil.IMetadataResolver)", "", "Argument[2]", "Argument[this].Property[Mono.Linker.InterfaceImplementor.InterfaceType]", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "GetMethodIL", "(Mono.Cecil.Cil.MethodBody)", "", "Argument[0].Property[Mono.Cecil.Cil.MethodBody.Method].Property[Mono.Cecil.MethodDefinition.Body]", "ReturnValue.Field[Mono.Linker.MethodIL.Body]", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "GetMethodIL", "(Mono.Cecil.MethodDefinition)", "", "Argument[0].Property[Mono.Cecil.MethodDefinition.Body]", "ReturnValue.Field[Mono.Linker.MethodIL.Body]", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "LinkContext", "(Mono.Linker.Pipeline,Mono.Linker.ILogger,System.String,Mono.Linker.UnintializedContextFactory)", "", "Argument[0]", "Argument[this].SyntheticField[Mono.Linker.LinkContext._pipeline]", "value", "dfc-generated"] @@ -68,6 +68,8 @@ extensions: - ["Mono.Linker", "LinkContext", False, "Resolve", "(Mono.Cecil.MethodReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "Resolve", "(Mono.Cecil.TypeReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "TryResolve", "(Mono.Cecil.FieldReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker", "LinkContext", False, "TryResolve", "(Mono.Cecil.MethodReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker", "LinkContext", False, "TryResolve", "(Mono.Cecil.TypeReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "LinkContext", False, "get_Actions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker", "LinkContext", False, "get_Annotations", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker", "LinkContext", False, "get_CompilerGeneratedState", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -82,7 +84,7 @@ extensions: - ["Mono.Linker", "LinkerFatalErrorException", False, "LinkerFatalErrorException", "(Mono.Linker.MessageContainer,System.Exception)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.LinkerFatalErrorException.MessageContainer]", "value", "dfc-generated"] - ["Mono.Linker", "MarkingHelpers", False, "MarkingHelpers", "(Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this].Field[Mono.Linker.MarkingHelpers._context]", "value", "dfc-generated"] - ["Mono.Linker", "MemberActionStore", False, "MemberActionStore", "(Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["Mono.Linker", "MemberReferenceExtensions", False, "GetDisplayName", "(Mono.Cecil.MemberReference)", "", "Argument[0].Property[Mono.Cecil.IMemberDefinition.Name]", "ReturnValue", "taint", "dfc-generated"] + - ["Mono.Linker", "MemberReferenceExtensions", False, "GetDisplayName", "(Mono.Cecil.MemberReference)", "", "Argument[0].Property[Mono.Cecil.MemberReference.Name]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker", "MemberReferenceExtensions", False, "GetNamespaceDisplayName", "(Mono.Cecil.MemberReference)", "", "Argument[0].Property[Mono.Cecil.MemberReference.DeclaringType].Property[Mono.Cecil.TypeReference.Namespace]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "MemberReferenceExtensions", False, "GetNamespaceDisplayName", "(Mono.Cecil.MemberReference)", "", "Argument[0].Property[Mono.Cecil.TypeReference.DeclaringType].Property[Mono.Cecil.TypeReference.Namespace]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "MemberReferenceExtensions", False, "GetNamespaceDisplayName", "(Mono.Cecil.MemberReference)", "", "Argument[0].Property[Mono.Cecil.TypeReference.Namespace]", "ReturnValue", "value", "dfc-generated"] @@ -102,9 +104,7 @@ extensions: - ["Mono.Linker", "MessageContainer", False, "ToString", "()", "", "Argument[this].Property[Mono.Linker.MessageContainer.SubCategory]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker", "MessageContainer", False, "ToString", "()", "", "Argument[this].Property[Mono.Linker.MessageContainer.Text]", "ReturnValue", "taint", "dfc-generated"] - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Cecil.ICustomAttributeProvider,System.Nullable)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.MessageOrigin.Provider]", "value", "dfc-generated"] - - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Cecil.ICustomAttributeProvider,System.Nullable)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.MessageOrigin.ILOffset]", "value", "dfc-generated"] - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Linker.MessageOrigin)", "", "Argument[0].Property[Mono.Linker.MessageOrigin.FileName]", "Argument[this].Property[Mono.Linker.MessageOrigin.FileName]", "value", "dfc-generated"] - - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Linker.MessageOrigin)", "", "Argument[0].Property[Mono.Linker.MessageOrigin.ILOffset]", "Argument[this].Property[Mono.Linker.MessageOrigin.ILOffset]", "value", "dfc-generated"] - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Linker.MessageOrigin)", "", "Argument[0].Property[Mono.Linker.MessageOrigin.Provider]", "Argument[this].Property[Mono.Linker.MessageOrigin.Provider]", "value", "dfc-generated"] - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Linker.MessageOrigin,System.Int32)", "", "Argument[0].Property[Mono.Linker.MessageOrigin.FileName]", "Argument[this].Property[Mono.Linker.MessageOrigin.FileName]", "value", "dfc-generated"] - ["Mono.Linker", "MessageOrigin", False, "MessageOrigin", "(Mono.Linker.MessageOrigin,System.Int32)", "", "Argument[0].Property[Mono.Linker.MessageOrigin.Provider]", "Argument[this].Property[Mono.Linker.MessageOrigin.Provider]", "value", "dfc-generated"] @@ -120,17 +120,11 @@ extensions: - ["Mono.Linker", "MethodIL", False, "get_Instructions", "()", "", "Argument[this].Field[Mono.Linker.MethodIL.Body].Property[Mono.Cecil.Cil.MethodBody.Instructions]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "MethodIL", False, "get_Method", "()", "", "Argument[this].Field[Mono.Linker.MethodIL.Body].Property[Mono.Cecil.Cil.MethodBody.Method]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "MethodIL", False, "get_Variables", "()", "", "Argument[this].Field[Mono.Linker.MethodIL.Body].Property[Mono.Cecil.Cil.MethodBody.Variables]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "MethodReferenceExtensions", False, "GetInflatedParameterType", "(Mono.Cecil.MethodReference,System.Int32,Mono.Linker.LinkContext)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "MethodReferenceExtensions", False, "GetReturnType", "(Mono.Cecil.MethodReference,Mono.Linker.LinkContext)", "", "Argument[0].Property[Mono.Cecil.MethodReference.ReturnType].Property[Mono.Cecil.FunctionPointerType.ReturnType]", "ReturnValue.Property[Mono.Cecil.FunctionPointerType.ReturnType]", "value", "dfc-generated"] - - ["Mono.Linker", "MethodReferenceExtensions", False, "GetReturnType", "(Mono.Cecil.MethodReference,Mono.Linker.LinkContext)", "", "Argument[0].Property[Mono.Cecil.MethodReference.ReturnType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "ModuleDefinitionExtensions", False, "GetMatchingExportedType", "(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition,Mono.Linker.LinkContext,Mono.Cecil.ExportedType)", "", "Argument[0].Property[Mono.Cecil.ModuleDefinition.ExportedTypes].Element", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "OverrideInformation", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition,Mono.Linker.ITryResolveMetadata,Mono.Cecil.InterfaceImplementation)", "", "Argument[3]", "Argument[this].SyntheticField[Mono.Linker.OverrideInformation._matchingInterfaceImplementation]", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_Base", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_InterfaceType", "()", "", "Argument[this].Property[Mono.Linker.OverrideInformation.Base].Property[Mono.Cecil.MethodDefinition.DeclaringType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_InterfaceType", "()", "", "Argument[this].Property[Mono.Linker.OverrideInformation.MatchingInterfaceImplementation].Property[Mono.Cecil.InterfaceImplementation.InterfaceType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_InterfaceType", "()", "", "Argument[this].SyntheticField[Mono.Linker.OverrideInformation._matchingInterfaceImplementation].Property[Mono.Cecil.InterfaceImplementation.InterfaceType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_MatchingInterfaceImplementation", "()", "", "Argument[this].SyntheticField[Mono.Linker.OverrideInformation._matchingInterfaceImplementation]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "OverrideInformation", False, "get_Override", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Mono.Linker", "MethodReferenceExtensions", False, "GetInflatedParameterType", "(Mono.Cecil.MethodReference,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["Mono.Linker", "MethodReferenceExtensions", False, "GetReturnType", "(Mono.Cecil.MethodReference)", "", "Argument[0].Property[Mono.Cecil.MethodReference.ReturnType].Property[Mono.Cecil.FunctionPointerType.ReturnType]", "ReturnValue.Property[Mono.Cecil.FunctionPointerType.ReturnType]", "value", "dfc-generated"] + - ["Mono.Linker", "MethodReferenceExtensions", False, "GetReturnType", "(Mono.Cecil.MethodReference)", "", "Argument[0].Property[Mono.Cecil.MethodReference.ReturnType]", "ReturnValue", "value", "dfc-generated"] + - ["Mono.Linker", "OverrideInformation", False, "get_InterfaceType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["Mono.Linker", "OverrideInformation", False, "get_MatchingInterfaceImplementation", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["Mono.Linker", "PInvokeInfo", False, "PInvokeInfo", "(System.String,System.String,System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "PInvokeInfo", False, "PInvokeInfo", "(System.String,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "PInvokeInfo", False, "PInvokeInfo", "(System.String,System.String,System.String,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] @@ -159,19 +153,6 @@ extensions: - ["Mono.Linker", "TypeMapInfo", False, "GetOverrides", "(Mono.Cecil.MethodDefinition)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "TypeMapInfo", False, "TypeMapInfo", "(Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["Mono.Linker", "TypeMapInfo", False, "get_MethodsWithOverrideInformation", "()", "", "Argument[this].Field[Mono.Linker.TypeMapInfo.override_methods].Property[System.Collections.Generic.Dictionary`2.Keys]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "GetDefaultInstanceConstructor", "(Mono.Cecil.TypeDefinition,Mono.Linker.LinkContext)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Methods].Element", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "GetInflatedDeclaringType", "(Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "GetInflatedInterfaces", "(Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[0].Property[Mono.Cecil.GenericInstanceType.GenericArguments].Element", "ReturnValue.Element.Field[System.ValueTuple`2.Item1]", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "GetInflatedInterfaces", "(Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Interfaces].Element", "ReturnValue.Element.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "GetMethods", "(Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[0].Property[Mono.Cecil.TypeDefinition.Methods].Element", "ReturnValue.Element", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "HasDefaultConstructor", "(Mono.Cecil.TypeDefinition,Mono.Linker.LinkContext)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "InflateGenericType", "(Mono.Cecil.GenericInstanceType,Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "InflateGenericType", "(Mono.Cecil.GenericInstanceType,Mono.Cecil.TypeReference,Mono.Linker.ITryResolveMetadata)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "ResolveToTypeDefinition", "(Mono.Cecil.TypeReference,Mono.Linker.LinkContext)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "ToCecilName", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "WithoutModifiers", "(Mono.Cecil.TypeReference)", "", "Argument[0].Property[Mono.Cecil.IModifierType.ElementType].Property[Mono.Cecil.IModifierType.ElementType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "WithoutModifiers", "(Mono.Cecil.TypeReference)", "", "Argument[0].Property[Mono.Cecil.IModifierType.ElementType]", "ReturnValue", "value", "dfc-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", False, "WithoutModifiers", "(Mono.Cecil.TypeReference)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", False, "Suppression", "(Mono.Linker.SuppressMessageInfo,Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "", "Argument[0]", "Argument[this].Property[Mono.Linker.UnconditionalSuppressMessageAttributeState+Suppression.SuppressMessageInfo]", "value", "dfc-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", False, "Suppression", "(Mono.Linker.SuppressMessageInfo,Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "", "Argument[1]", "Argument[this].Property[Mono.Linker.UnconditionalSuppressMessageAttributeState+Suppression.OriginAttribute]", "value", "dfc-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", False, "Suppression", "(Mono.Linker.SuppressMessageInfo,Mono.Cecil.CustomAttribute,Mono.Cecil.ICustomAttributeProvider)", "", "Argument[2]", "Argument[this].Property[Mono.Linker.UnconditionalSuppressMessageAttributeState+Suppression.Provider]", "value", "dfc-generated"] @@ -209,7 +190,6 @@ extensions: - ["Mono.Linker", "AnnotationStore", "GetPreservedMethods", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "GetResourcesToRemove", "(Mono.Cecil.AssemblyDefinition)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "HasAction", "(Mono.Cecil.AssemblyDefinition)", "summary", "df-generated"] - - ["Mono.Linker", "AnnotationStore", "HasAppliedPreserve", "(Mono.Cecil.TypeDefinition,Mono.Linker.TypePreserve)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "HasLinkerAttribute", "(Mono.Cecil.IMemberDefinition)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "HasMarkedAnyIndirectlyCalledMethods", "()", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "HasPreservedStaticCtor", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] @@ -223,6 +203,7 @@ extensions: - ["Mono.Linker", "AnnotationStore", "IsPublic", "(Mono.Cecil.IMetadataTokenProvider)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "IsReflectionUsed", "(Mono.Cecil.IMemberDefinition)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "IsRelevantToVariantCasting", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] + - ["Mono.Linker", "AnnotationStore", "IsRootAssembly", "(Mono.Cecil.AssemblyDefinition)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "Mark", "(Mono.Cecil.IMetadataTokenProvider)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "Mark", "(Mono.Cecil.IMetadataTokenProvider,Mono.Linker.DependencyInfo,Mono.Linker.MessageOrigin)", "summary", "df-generated"] - ["Mono.Linker", "AnnotationStore", "PrepareDependenciesDump", "()", "summary", "df-generated"] @@ -254,10 +235,8 @@ extensions: - ["Mono.Linker", "AttributeInfo", "get_CustomAttributes", "()", "summary", "df-generated"] - ["Mono.Linker", "AttributeInfo", "get_CustomAttributesOrigins", "()", "summary", "df-generated"] - ["Mono.Linker", "BCL+EventTracingForWindows", "IsEventSourceType", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker", "BCL+EventTracingForWindows", "IsNonEventAtribute", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - ["Mono.Linker", "BCL+EventTracingForWindows", "IsProviderName", "(System.String)", "summary", "df-generated"] - ["Mono.Linker", "BCL", "FindPredefinedType", "(ILLink.Shared.TypeSystemProxy.WellKnownType,Mono.Linker.LinkContext)", "summary", "df-generated"] - - ["Mono.Linker", "BCL", "IsIDisposableImplementation", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["Mono.Linker", "BannedApiExtensions", "GetLinkerILProcessor", "(Mono.Cecil.Cil.MethodBody)", "summary", "df-generated"] - ["Mono.Linker", "BannedApiExtensions", "TryResolve", "(Mono.Cecil.ExportedType,Mono.Linker.LinkContext)", "summary", "df-generated"] - ["Mono.Linker", "CodeOptimizationsSettings", "CodeOptimizationsSettings", "(Mono.Linker.CodeOptimizations)", "summary", "df-generated"] @@ -284,9 +263,6 @@ extensions: - ["Mono.Linker", "DgmlDependencyRecorder", "RecordDependency", "(System.Object,Mono.Linker.DependencyInfo,System.Boolean)", "summary", "df-generated"] - ["Mono.Linker", "DgmlDependencyRecorder", "RecordDependency", "(System.Object,System.Object,System.Boolean)", "summary", "df-generated"] - ["Mono.Linker", "DgmlDependencyRecorder", "RecordDependency", "(System.Object,System.Object,System.Object)", "summary", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", "GetMembersForDocumentationSignature", "(System.String,Mono.Cecil.ModuleDefinition,Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", "GetTypeByDocumentationSignature", "(Mono.Cecil.AssemblyDefinition,System.String,Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - - ["Mono.Linker", "DocumentationSignatureParser", "ParseSignaturePart", "(System.String,System.Int32,Mono.Cecil.ModuleDefinition,Mono.Linker.DocumentationSignatureParser+MemberType,System.Collections.Generic.List,Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - ["Mono.Linker", "Driver", "AddBodySubstituterStep", "(Mono.Linker.Pipeline,System.String)", "summary", "df-generated"] - ["Mono.Linker", "Driver", "AddCustomStep", "(Mono.Linker.Pipeline,System.String)", "summary", "df-generated"] - ["Mono.Linker", "Driver", "AddDgmlDependencyRecorder", "(Mono.Linker.LinkContext,System.String)", "summary", "df-generated"] @@ -324,6 +300,9 @@ extensions: - ["Mono.Linker", "IXApiVisitor", "OnInterface", "(System.Xml.XPath.XPathNavigator,Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker", "IXApiVisitor", "OnMethod", "(System.Xml.XPath.XPathNavigator,Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["Mono.Linker", "IXApiVisitor", "OnProperty", "(System.Xml.XPath.XPathNavigator,Mono.Cecil.PropertyDefinition)", "summary", "df-generated"] + - ["Mono.Linker", "InterfaceImplementor", "get_Implementor", "()", "summary", "df-generated"] + - ["Mono.Linker", "InterfaceImplementor", "get_InterfaceImplementation", "()", "summary", "df-generated"] + - ["Mono.Linker", "InterfaceImplementor", "get_InterfaceType", "()", "summary", "df-generated"] - ["Mono.Linker", "InternalErrorException", "InternalErrorException", "(System.String)", "summary", "df-generated"] - ["Mono.Linker", "InternalErrorException", "InternalErrorException", "(System.String,System.Exception)", "summary", "df-generated"] - ["Mono.Linker", "KnownMembers", "IsNotSupportedExceptionCtorString", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] @@ -354,11 +333,9 @@ extensions: - ["Mono.Linker", "LinkContext", "LogError", "(System.String,System.Int32,System.String,System.Nullable)", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogMessage", "(Mono.Linker.MessageContainer)", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogMessage", "(System.String)", "summary", "df-generated"] - - ["Mono.Linker", "LinkContext", "LogWarning", "(Mono.Cecil.IMemberDefinition,ILLink.Shared.DiagnosticId,System.Nullable,System.String[])", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogWarning", "(Mono.Cecil.IMemberDefinition,ILLink.Shared.DiagnosticId,System.String[])", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogWarning", "(Mono.Linker.MessageOrigin,ILLink.Shared.DiagnosticId,System.String[])", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogWarning", "(System.String,ILLink.Shared.DiagnosticId,System.String[])", "summary", "df-generated"] - - ["Mono.Linker", "LinkContext", "LogWarning", "(System.String,System.Int32,Mono.Cecil.IMemberDefinition,System.Nullable,System.String)", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogWarning", "(System.String,System.Int32,Mono.Linker.MessageOrigin,System.String)", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "LogWarning", "(System.String,System.Int32,System.String,System.String)", "summary", "df-generated"] - ["Mono.Linker", "LinkContext", "RegisterAssembly", "(Mono.Cecil.AssemblyDefinition)", "summary", "df-generated"] @@ -398,7 +375,6 @@ extensions: - ["Mono.Linker", "MemberActionStore", "HasSubstitutedInit", "(Mono.Cecil.FieldDefinition)", "summary", "df-generated"] - ["Mono.Linker", "MemberActionStore", "TryGetFieldUserValue", "(Mono.Cecil.FieldDefinition,System.Object)", "summary", "df-generated"] - ["Mono.Linker", "MemberActionStore", "TryGetMethodStubValue", "(Mono.Cecil.MethodDefinition,System.Object)", "summary", "df-generated"] - - ["Mono.Linker", "MemberActionStore", "TryGetSubstitutionInfo", "(Mono.Cecil.MemberReference,Mono.Linker.SubstitutionInfo)", "summary", "df-generated"] - ["Mono.Linker", "MemberActionStore", "get_PrimarySubstitutionInfo", "()", "summary", "df-generated"] - ["Mono.Linker", "MessageContainer", "CompareTo", "(Mono.Linker.MessageContainer)", "summary", "df-generated"] - ["Mono.Linker", "MessageContainer", "Equals", "(Mono.Linker.MessageContainer)", "summary", "df-generated"] @@ -419,7 +395,6 @@ extensions: - ["Mono.Linker", "MessageOrigin", "MessageOrigin", "(Mono.Cecil.IMemberDefinition,System.Nullable)", "summary", "df-generated"] - ["Mono.Linker", "MessageOrigin", "MessageOrigin", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] - ["Mono.Linker", "MessageOrigin", "get_FileName", "()", "summary", "df-generated"] - - ["Mono.Linker", "MessageOrigin", "get_ILOffset", "()", "summary", "df-generated"] - ["Mono.Linker", "MessageOrigin", "get_Provider", "()", "summary", "df-generated"] - ["Mono.Linker", "MessageOrigin", "get_SourceColumn", "()", "summary", "df-generated"] - ["Mono.Linker", "MessageOrigin", "get_SourceLine", "()", "summary", "df-generated"] @@ -444,15 +419,9 @@ extensions: - ["Mono.Linker", "MethodReferenceExtensions", "HasMetadataParameters", "(Mono.Cecil.MethodReference)", "summary", "df-generated"] - ["Mono.Linker", "MethodReferenceExtensions", "IsDeclaredOnType", "(Mono.Cecil.MethodReference,System.String)", "summary", "df-generated"] - ["Mono.Linker", "MethodReferenceExtensions", "ReturnsVoid", "(Mono.Cecil.IMethodSignature)", "summary", "df-generated"] - - ["Mono.Linker", "ModuleDefinitionExtensions", "IsCrossgened", "(Mono.Cecil.ModuleDefinition)", "summary", "df-generated"] - - ["Mono.Linker", "ModuleDefinitionExtensions", "ResolveType", "(Mono.Cecil.ModuleDefinition,System.String,Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation+OverridePair", "GetMatchingInterfaceImplementation", "(Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation+OverridePair", "IsStaticInterfaceMethodPair", "()", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation+OverridePair", "OverridePair", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation+OverridePair", "op_Equality", "(Mono.Linker.OverrideInformation+OverridePair,Mono.Linker.OverrideInformation+OverridePair)", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation+OverridePair", "op_Inequality", "(Mono.Linker.OverrideInformation+OverridePair,Mono.Linker.OverrideInformation+OverridePair)", "summary", "df-generated"] + - ["Mono.Linker", "OverrideInformation", "get_Base", "()", "summary", "df-generated"] - ["Mono.Linker", "OverrideInformation", "get_IsOverrideOfInterfaceMember", "()", "summary", "df-generated"] - - ["Mono.Linker", "OverrideInformation", "get_IsStaticInterfaceMethodPair", "()", "summary", "df-generated"] + - ["Mono.Linker", "OverrideInformation", "get_Override", "()", "summary", "df-generated"] - ["Mono.Linker", "PInvokeInfo", "CompareTo", "(Mono.Linker.PInvokeInfo)", "summary", "df-generated"] - ["Mono.Linker", "ParameterHelpers", "GetParameterIndex", "(Mono.Cecil.MethodDefinition,Mono.Cecil.Cil.Instruction)", "summary", "df-generated"] - ["Mono.Linker", "Pipeline", "ContainsStep", "(System.Type)", "summary", "df-generated"] @@ -475,20 +444,11 @@ extensions: - ["Mono.Linker", "Tracer", "Finish", "()", "summary", "df-generated"] - ["Mono.Linker", "TypeDefinitionExtensions", "IsMulticastDelegate", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - ["Mono.Linker", "TypeDefinitionExtensions", "IsSerializable", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker", "TypeMapInfo", "AddBaseMethod", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.InterfaceImplementation)", "summary", "df-generated"] - - ["Mono.Linker", "TypeMapInfo", "AddDefaultInterfaceImplementation", "(Mono.Cecil.MethodDefinition,Mono.Cecil.TypeDefinition,Mono.Cecil.InterfaceImplementation)", "summary", "df-generated"] - - ["Mono.Linker", "TypeMapInfo", "AddOverride", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.InterfaceImplementation)", "summary", "df-generated"] + - ["Mono.Linker", "TypeMapInfo", "AddBaseMethod", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition,Mono.Linker.InterfaceImplementor)", "summary", "df-generated"] + - ["Mono.Linker", "TypeMapInfo", "AddDefaultInterfaceImplementation", "(Mono.Cecil.MethodDefinition,Mono.Linker.InterfaceImplementor,Mono.Cecil.MethodDefinition)", "summary", "df-generated"] + - ["Mono.Linker", "TypeMapInfo", "AddOverride", "(Mono.Cecil.MethodDefinition,Mono.Cecil.MethodDefinition,Mono.Linker.InterfaceImplementor)", "summary", "df-generated"] - ["Mono.Linker", "TypeMapInfo", "GetDefaultInterfaceImplementations", "(Mono.Cecil.MethodDefinition)", "summary", "df-generated"] - ["Mono.Linker", "TypeMapInfo", "MapType", "(Mono.Cecil.TypeDefinition)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "GetDisplayName", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "GetDisplayNameWithoutNamespace", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsByRefOrPointer", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsSubclassOf", "(Mono.Cecil.TypeReference,System.String,System.String,Mono.Linker.ITryResolveMetadata)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsTypeOf", "(Mono.Cecil.TypeReference,ILLink.Shared.TypeSystemProxy.WellKnownType)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsTypeOf", "(Mono.Cecil.TypeReference,System.String)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsTypeOf", "(Mono.Cecil.TypeReference,System.String,System.String)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "IsTypeOf", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - - ["Mono.Linker", "TypeReferenceExtensions", "TryGetWellKnownType", "(Mono.Cecil.TypeReference)", "summary", "df-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", "get_OriginAttribute", "()", "summary", "df-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", "get_Provider", "()", "summary", "df-generated"] - ["Mono.Linker", "UnconditionalSuppressMessageAttributeState+Suppression", "get_SuppressMessageInfo", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/MonoTargetsTasks.model.yml b/csharp/ql/lib/ext/generated/MonoTargetsTasks.model.yml deleted file mode 100644 index a0b00fd3522..00000000000 --- a/csharp/ql/lib/ext/generated/MonoTargetsTasks.model.yml +++ /dev/null @@ -1,7 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["MonoTargetsTasks", "MarshalingPInvokeScanner", "Execute", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml b/csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml index da08cc3b56e..5b54e78f7f3 100644 --- a/csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml +++ b/csharp/ql/lib/ext/generated/System.Buffers.Text.model.yml @@ -14,6 +14,31 @@ extensions: - ["System.Buffers.Text", "Base64", "IsValid", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] - ["System.Buffers.Text", "Base64", "IsValid", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Buffers.Text", "Base64", "IsValid", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromChars", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromChars", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromChars", "(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromUtf8", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromUtf8", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromUtf8", "(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "DecodeFromUtf8InPlace", "(System.Span)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToChars", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToChars", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToChars", "(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToString", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToUtf8", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToUtf8", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "EncodeToUtf8", "(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "GetEncodedLength", "(System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "GetMaxDecodedLength", "(System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "IsValid", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "IsValid", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "IsValid", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "IsValid", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "TryDecodeFromChars", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "TryDecodeFromUtf8", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "TryEncodeToChars", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "TryEncodeToUtf8", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Buffers.Text", "Base64Url", "TryEncodeToUtf8InPlace", "(System.Span,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Buffers.Text", "Utf8Formatter", "TryFormat", "(System.Boolean,System.Span,System.Int32,System.Buffers.StandardFormat)", "summary", "df-generated"] - ["System.Buffers.Text", "Utf8Formatter", "TryFormat", "(System.Byte,System.Span,System.Int32,System.Buffers.StandardFormat)", "summary", "df-generated"] - ["System.Buffers.Text", "Utf8Formatter", "TryFormat", "(System.DateTime,System.Span,System.Int32,System.Buffers.StandardFormat)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Buffers.model.yml b/csharp/ql/lib/ext/generated/System.Buffers.model.yml index 560ee94f838..0f351ff18d1 100644 --- a/csharp/ql/lib/ext/generated/System.Buffers.model.yml +++ b/csharp/ql/lib/ext/generated/System.Buffers.model.yml @@ -10,6 +10,14 @@ extensions: - ["System.Buffers", "MemoryManager", False, "CreateMemory", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Buffers", "MemoryManager", False, "CreateMemory", "(System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Buffers", "MemoryManager", True, "get_Memory", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Buffers", "NIndex", False, "FromStart", "(System.IntPtr)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Buffers.NIndex._value]", "value", "dfc-generated"] + - ["System.Buffers", "NIndex", False, "GetOffset", "(System.IntPtr)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Buffers", "NIndex", False, "GetOffset", "(System.IntPtr)", "", "Argument[this].SyntheticField[System.Buffers.NIndex._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Buffers", "NIndex", False, "NIndex", "(System.IntPtr,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Buffers.NIndex._value]", "value", "dfc-generated"] + - ["System.Buffers", "NIndex", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Buffers.NIndex._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Buffers", "NRange", False, "GetOffsetAndLength", "(System.IntPtr)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "taint", "dfc-generated"] + - ["System.Buffers", "NRange", False, "NRange", "(System.Buffers.NIndex,System.Buffers.NIndex)", "", "Argument[0]", "Argument[this].Property[System.Buffers.NRange.Start]", "value", "dfc-generated"] + - ["System.Buffers", "NRange", False, "NRange", "(System.Buffers.NIndex,System.Buffers.NIndex)", "", "Argument[1]", "Argument[this].Property[System.Buffers.NRange.End]", "value", "dfc-generated"] - ["System.Buffers", "ReadOnlySequence+Enumerator", False, "Enumerator", "(System.Buffers.ReadOnlySequence)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Buffers", "ReadOnlySequence+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Buffers", "ReadOnlySequence", False, "ReadOnlySequence", "(System.Buffers.ReadOnlySequenceSegment,System.Int32,System.Buffers.ReadOnlySequenceSegment,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -29,7 +37,7 @@ extensions: - ["System.Buffers", "ReadOnlySequence", False, "get_FirstSpan", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Buffers", "SearchValues", False, "Create", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Buffers", "SearchValues", False, "Create", "(System.ReadOnlySpan,System.StringComparison)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Buffers", "SequenceReader", False, "SequenceReader", "(System.Buffers.ReadOnlySequence)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Buffers", "SequenceReader", False, "SequenceReader", "(System.Buffers.ReadOnlySequence)", "", "Argument[0]", "Argument[this].Property[System.Buffers.SequenceReader`1.Sequence]", "value", "dfc-generated"] - ["System.Buffers", "SequenceReader", False, "TryCopyTo", "(System.Span)", "", "Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.Buffers", "SequenceReader", False, "TryCopyTo", "(System.Span)", "", "Argument[this].Property[System.Buffers.SequenceReader`1.UnreadSpan].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.Buffers", "SequenceReader", False, "TryPeek", "(System.Int64,T)", "", "Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element", "ReturnValue", "value", "dfc-generated"] @@ -97,6 +105,29 @@ extensions: - ["System.Buffers", "MemoryPool", "Rent", "(System.Int32)", "summary", "df-generated"] - ["System.Buffers", "MemoryPool", "get_MaxBufferSize", "()", "summary", "df-generated"] - ["System.Buffers", "MemoryPool", "get_Shared", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "Equals", "(System.Buffers.NIndex)", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "FromEnd", "(System.IntPtr)", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "NIndex", "(System.Index)", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "ToIndex", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "ToIndexUnchecked", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "ToString", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "get_End", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "get_IsFromEnd", "()", "summary", "df-generated"] + - ["System.Buffers", "NIndex", "get_Start", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "EndAt", "(System.Buffers.NIndex)", "summary", "df-generated"] + - ["System.Buffers", "NRange", "Equals", "(System.Buffers.NRange)", "summary", "df-generated"] + - ["System.Buffers", "NRange", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Buffers", "NRange", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "NRange", "(System.Range)", "summary", "df-generated"] + - ["System.Buffers", "NRange", "StartAt", "(System.Buffers.NIndex)", "summary", "df-generated"] + - ["System.Buffers", "NRange", "ToRange", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "ToRangeUnchecked", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "ToString", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "get_All", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "get_End", "()", "summary", "df-generated"] + - ["System.Buffers", "NRange", "get_Start", "()", "summary", "df-generated"] - ["System.Buffers", "ReadOnlySequence+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Buffers", "ReadOnlySequence", "GetEnumerator", "()", "summary", "df-generated"] - ["System.Buffers", "ReadOnlySequence", "GetOffset", "(System.SequencePosition)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml b/csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml index ed946467225..91d655f6d3b 100644 --- a/csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml +++ b/csharp/ql/lib/ext/generated/System.CodeDom.Compiler.model.yml @@ -107,6 +107,9 @@ extensions: - ["System.CodeDom.Compiler", "CodeGenerator", True, "OutputTypeNamePair", "(System.CodeDom.CodeTypeReference,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CodeGenerator", True, "QuoteSnippetString", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CodeGeneratorOptions", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.CodeDom.Compiler", "CompilerError", False, "CompilerError", "(System.String,System.Int32,System.Int32,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.Compiler.CompilerError.FileName]", "value", "dfc-generated"] + - ["System.CodeDom.Compiler", "CompilerError", False, "CompilerError", "(System.String,System.Int32,System.Int32,System.String,System.String)", "", "Argument[3]", "Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorNumber]", "value", "dfc-generated"] + - ["System.CodeDom.Compiler", "CompilerError", False, "CompilerError", "(System.String,System.Int32,System.Int32,System.String,System.String)", "", "Argument[4]", "Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorText]", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "CompilerError", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", False, "Add", "(System.CodeDom.Compiler.CompilerError)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", False, "AddRange", "(System.CodeDom.Compiler.CompilerErrorCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -117,9 +120,12 @@ extensions: - ["System.CodeDom.Compiler", "CompilerErrorCollection", False, "Insert", "(System.Int32,System.CodeDom.Compiler.CompilerError)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", False, "set_Item", "(System.Int32,System.CodeDom.Compiler.CompilerError)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.CodeDom.Compiler", "CompilerInfo", False, "CreateDefaultCompilerParameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CompilerInfo", False, "GetExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CompilerInfo", False, "GetLanguages", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom.Compiler", "CompilerParameters", False, "CompilerParameters", "(System.String[],System.String,System.Boolean)", "", "Argument[0].Element", "Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies].Element", "value", "dfc-generated"] + - ["System.CodeDom.Compiler", "CompilerParameters", False, "CompilerParameters", "(System.String[],System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.OutputAssembly]", "value", "dfc-generated"] + - ["System.CodeDom.Compiler", "CompilerResults", False, "CompilerResults", "(System.CodeDom.Compiler.TempFileCollection)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.Compiler.CompilerResults.TempFiles]", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "Executor", False, "ExecWaitWithCapture", "(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String)", "", "Argument[3]", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "Executor", False, "ExecWaitWithCapture", "(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String)", "", "Argument[4]", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom.Compiler", "Executor", False, "ExecWaitWithCapture", "(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String)", "", "Argument[4]", "ReturnValue", "value", "dfc-generated"] @@ -165,6 +171,8 @@ extensions: - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "Write", "(System.String,System.Object,System.Object)", "", "Argument[2]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "Write", "(System.String,System.Object[])", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "Write", "(System.String,System.Object[])", "", "Argument[1].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] + - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "Write", "(System.String,System.ReadOnlySpan)", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] + - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "Write", "(System.String,System.ReadOnlySpan)", "", "Argument[1].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.Char[])", "", "Argument[0].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.Char[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] @@ -175,6 +183,8 @@ extensions: - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String,System.Object,System.Object)", "", "Argument[2]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String,System.Object[])", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String,System.Object[])", "", "Argument[1].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] + - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String,System.ReadOnlySpan)", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] + - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLine", "(System.String,System.ReadOnlySpan)", "", "Argument[1].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLineAsync", "(System.Char[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLineAsync", "(System.Char[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] - ["System.CodeDom.Compiler", "IndentedTextWriter", True, "WriteLineAsync", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer]", "taint", "dfc-generated"] @@ -268,13 +278,11 @@ extensions: - ["System.CodeDom.Compiler", "CodeGenerator", "get_NullToken", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CodeGeneratorOptions", "set_Item", "(System.String,System.Object)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CodeParser", "Parse", "(System.IO.TextReader)", "summary", "df-generated"] - - ["System.CodeDom.Compiler", "CompilerError", "CompilerError", "(System.String,System.Int32,System.Int32,System.String,System.String)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", "Contains", "(System.CodeDom.Compiler.CompilerError)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", "IndexOf", "(System.CodeDom.Compiler.CompilerError)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", "Remove", "(System.CodeDom.Compiler.CompilerError)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", "get_HasErrors", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerErrorCollection", "get_HasWarnings", "()", "summary", "df-generated"] - - ["System.CodeDom.Compiler", "CompilerInfo", "CreateDefaultCompilerParameters", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerInfo", "CreateProvider", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerInfo", "CreateProvider", "(System.Collections.Generic.IDictionary)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerInfo", "Equals", "(System.Object)", "summary", "df-generated"] @@ -286,7 +294,6 @@ extensions: - ["System.CodeDom.Compiler", "CompilerParameters", "get_EmbeddedResources", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerParameters", "get_LinkedResources", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerParameters", "get_ReferencedAssemblies", "()", "summary", "df-generated"] - - ["System.CodeDom.Compiler", "CompilerResults", "CompilerResults", "(System.CodeDom.Compiler.TempFileCollection)", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerResults", "get_Errors", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "CompilerResults", "get_Output", "()", "summary", "df-generated"] - ["System.CodeDom.Compiler", "Executor", "ExecWait", "(System.String,System.CodeDom.Compiler.TempFileCollection)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.CodeDom.model.yml b/csharp/ql/lib/ext/generated/System.CodeDom.model.yml index 53acccecc0f..81ce430bde2 100644 --- a/csharp/ql/lib/ext/generated/System.CodeDom.model.yml +++ b/csharp/ql/lib/ext/generated/System.CodeDom.model.yml @@ -5,12 +5,18 @@ extensions: extensible: summaryModel data: - ["System.CodeDom", "CodeArgumentReferenceExpression", False, "CodeArgumentReferenceExpression", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.CodeDom.CodeTypeReference,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeArrayCreateExpression", False, "CodeArrayCreateExpression", "(System.Type,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", False, "get_Initializers", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.CodeDom", "CodeAttachEventStatement", False, "CodeAttachEventStatement", "(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeAttributeArgument", False, "CodeAttributeArgument", "(System.String,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeArrayIndexerExpression", False, "CodeArrayIndexerExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeArrayIndexerExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeAssignStatement", False, "CodeAssignStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeAssignStatement.Left]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeAssignStatement", False, "CodeAssignStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeAssignStatement.Right]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeAttachEventStatement", False, "CodeAttachEventStatement", "(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeAttachEventStatement.Listener]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeAttributeArgument", False, "CodeAttributeArgument", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeAttributeArgument", False, "CodeAttributeArgument", "(System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value]", "value", "dfc-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", False, "Add", "(System.CodeDom.CodeAttributeArgument)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", False, "AddRange", "(System.CodeDom.CodeAttributeArgumentCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", False, "AddRange", "(System.CodeDom.CodeAttributeArgument[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -34,7 +40,11 @@ extensions: - ["System.CodeDom", "CodeAttributeDeclarationCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeAttributeDeclaration)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeAttributeDeclarationCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeAttributeDeclarationCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeAttributeDeclaration)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - - ["System.CodeDom", "CodeCastExpression", False, "CodeCastExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeBinaryOperatorExpression", False, "CodeBinaryOperatorExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Left]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeBinaryOperatorExpression", False, "CodeBinaryOperatorExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Right]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeCastExpression", False, "CodeCastExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeCastExpression.Expression]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeCastExpression", False, "CodeCastExpression", "(System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeCastExpression.Expression]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeCastExpression", False, "CodeCastExpression", "(System.Type,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeCastExpression.Expression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeCatchClause", False, "CodeCatchClause", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeCatchClause", False, "CodeCatchClause", "(System.String,System.CodeDom.CodeTypeReference)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeCatchClause", False, "CodeCatchClause", "(System.String,System.CodeDom.CodeTypeReference)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -49,9 +59,11 @@ extensions: - ["System.CodeDom", "CodeCatchClauseCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeCatchClause)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeCatchClauseCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeCatchClauseCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeCatchClause)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - - ["System.CodeDom", "CodeChecksumPragma", False, "CodeChecksumPragma", "(System.String,System.Guid,System.Byte[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeChecksumPragma", False, "CodeChecksumPragma", "(System.String,System.Guid,System.Byte[])", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeChecksumPragma", False, "CodeChecksumPragma", "(System.String,System.Guid,System.Byte[])", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumData]", "value", "dfc-generated"] - ["System.CodeDom", "CodeComment", False, "CodeComment", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeComment", False, "CodeComment", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeCommentStatement", False, "CodeCommentStatement", "(System.CodeDom.CodeComment)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeCommentStatement.Comment]", "value", "dfc-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", False, "Add", "(System.CodeDom.CodeCommentStatement)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", False, "AddRange", "(System.CodeDom.CodeCommentStatementCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", False, "AddRange", "(System.CodeDom.CodeCommentStatement[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -61,9 +73,13 @@ extensions: - ["System.CodeDom", "CodeCommentStatementCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeCommentStatement)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeCommentStatement)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.CodeDom", "CodeConditionStatement", False, "CodeConditionStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeConditionStatement", False, "CodeConditionStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition]", "value", "dfc-generated"] - ["System.CodeDom", "CodeDefaultValueExpression", False, "CodeDefaultValueExpression", "(System.CodeDom.CodeTypeReference)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeDelegateCreateExpression", False, "CodeDelegateCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeDelegateCreateExpression", False, "CodeDelegateCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeDelegateCreateExpression", False, "CodeDelegateCreateExpression", "(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeDelegateCreateExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeDelegateInvokeExpression", False, "CodeDelegateInvokeExpression", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeDelegateInvokeExpression", False, "CodeDelegateInvokeExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeDirectionExpression", False, "CodeDirectionExpression", "(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeDirectionExpression.Expression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeDirectiveCollection", False, "Add", "(System.CodeDom.CodeDirective)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeDirectiveCollection", False, "AddRange", "(System.CodeDom.CodeDirectiveCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeDirectiveCollection", False, "AddRange", "(System.CodeDom.CodeDirective[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -73,7 +89,7 @@ extensions: - ["System.CodeDom", "CodeDirectiveCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeDirective)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeDirectiveCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeDirectiveCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeDirective)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - - ["System.CodeDom", "CodeEventReferenceExpression", False, "CodeEventReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeEventReferenceExpression", False, "CodeEventReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeEventReferenceExpression.TargetObject]", "value", "dfc-generated"] - ["System.CodeDom", "CodeExpressionCollection", False, "Add", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeExpressionCollection", False, "AddRange", "(System.CodeDom.CodeExpressionCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeExpressionCollection", False, "AddRange", "(System.CodeDom.CodeExpression[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -83,10 +99,15 @@ extensions: - ["System.CodeDom", "CodeExpressionCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeExpressionCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeExpressionCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - - ["System.CodeDom", "CodeFieldReferenceExpression", False, "CodeFieldReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeExpressionStatement", False, "CodeExpressionStatement", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeExpressionStatement.Expression]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeFieldReferenceExpression", False, "CodeFieldReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeFieldReferenceExpression.TargetObject]", "value", "dfc-generated"] - ["System.CodeDom", "CodeGotoStatement", False, "CodeGotoStatement", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeIndexerExpression", False, "CodeIndexerExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeIndexerExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeIterationStatement", False, "CodeIterationStatement", "(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeIterationStatement.InitStatement]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeIterationStatement", False, "CodeIterationStatement", "(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeIterationStatement.TestExpression]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeIterationStatement", False, "CodeIterationStatement", "(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeIterationStatement.IncrementStatement]", "value", "dfc-generated"] - ["System.CodeDom", "CodeLabeledStatement", False, "CodeLabeledStatement", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeLabeledStatement", False, "CodeLabeledStatement", "(System.String,System.CodeDom.CodeStatement)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeLabeledStatement", False, "CodeLabeledStatement", "(System.String,System.CodeDom.CodeStatement)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeLabeledStatement.Statement]", "value", "dfc-generated"] - ["System.CodeDom", "CodeLinePragma", False, "CodeLinePragma", "(System.String,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeMemberField", False, "CodeMemberField", "(System.CodeDom.CodeTypeReference,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeMemberField", False, "CodeMemberField", "(System.CodeDom.CodeTypeReference,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -96,8 +117,9 @@ extensions: - ["System.CodeDom", "CodeMemberMethod", False, "get_Parameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom", "CodeMemberMethod", False, "get_Statements", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom", "CodeMethodInvokeExpression", False, "CodeMethodInvokeExpression", "(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeMethodReferenceExpression", False, "CodeMethodReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeMethodReferenceExpression", False, "CodeMethodReferenceExpression", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeMethodReferenceExpression", False, "CodeMethodReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeMethodReferenceExpression", False, "CodeMethodReferenceExpression", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[])", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeMethodReturnStatement", False, "CodeMethodReturnStatement", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeMethodReturnStatement.Expression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeNamespace", False, "CodeNamespace", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeNamespace", False, "get_Comments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom", "CodeNamespace", False, "get_Imports", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -131,9 +153,11 @@ extensions: - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeParameterDeclarationExpression)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - - ["System.CodeDom", "CodePropertyReferenceExpression", False, "CodePropertyReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodePrimitiveExpression", False, "CodePrimitiveExpression", "(System.Object)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodePrimitiveExpression.Value]", "value", "dfc-generated"] + - ["System.CodeDom", "CodePropertyReferenceExpression", False, "CodePropertyReferenceExpression", "(System.CodeDom.CodeExpression,System.String)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodePropertyReferenceExpression.TargetObject]", "value", "dfc-generated"] - ["System.CodeDom", "CodeRegionDirective", False, "CodeRegionDirective", "(System.CodeDom.CodeRegionMode,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeRemoveEventStatement", False, "CodeRemoveEventStatement", "(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeRemoveEventStatement", False, "CodeRemoveEventStatement", "(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener]", "value", "dfc-generated"] + - ["System.CodeDom", "CodeRemoveEventStatement", False, "CodeRemoveEventStatement", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener]", "value", "dfc-generated"] - ["System.CodeDom", "CodeSnippetCompileUnit", False, "CodeSnippetCompileUnit", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeSnippetExpression", False, "CodeSnippetExpression", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeSnippetStatement", False, "CodeSnippetStatement", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -147,6 +171,7 @@ extensions: - ["System.CodeDom", "CodeStatementCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeStatement)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeStatementCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeStatementCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeStatement)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.CodeDom", "CodeThrowExceptionStatement", False, "CodeThrowExceptionStatement", "(System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeThrowExceptionStatement.ToThrow]", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeDeclaration", False, "CodeTypeDeclaration", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeTypeDeclaration", False, "get_BaseTypes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.CodeDom", "CodeTypeDeclaration", False, "get_Members", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -180,8 +205,10 @@ extensions: - ["System.CodeDom", "CodeTypeParameterCollection", False, "Insert", "(System.Int32,System.CodeDom.CodeTypeParameter)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeParameterCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeParameterCollection", False, "set_Item", "(System.Int32,System.CodeDom.CodeTypeParameter)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.CodeDom", "CodeTypeReference", False, "CodeTypeReference", "(System.CodeDom.CodeTypeReference,System.Int32)", "", "Argument[0]", "Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType]", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeReference", False, "CodeTypeReference", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeTypeReference", False, "CodeTypeReference", "(System.String,System.CodeDom.CodeTypeReferenceOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeTypeReference", False, "CodeTypeReference", "(System.String,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeTypeReference", False, "get_TypeArguments", "()", "", "Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType].Property[System.CodeDom.CodeTypeReference.TypeArguments]", "ReturnValue", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeReferenceCollection", False, "Add", "(System.CodeDom.CodeTypeReference)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.CodeDom", "CodeTypeReferenceCollection", False, "AddRange", "(System.CodeDom.CodeTypeReferenceCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -195,28 +222,22 @@ extensions: - ["System.CodeDom", "CodeTypeReferenceExpression", False, "CodeTypeReferenceExpression", "(System.CodeDom.CodeTypeReference)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.CodeDom.CodeTypeReference,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.CodeDom.CodeTypeReference,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression)", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.String,System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.String,System.String,System.CodeDom.CodeExpression)", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.Type,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.Type,System.String,System.CodeDom.CodeExpression)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.CodeDom", "CodeVariableDeclarationStatement", False, "CodeVariableDeclarationStatement", "(System.Type,System.String,System.CodeDom.CodeExpression)", "", "Argument[2]", "Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression]", "value", "dfc-generated"] - ["System.CodeDom", "CodeVariableReferenceExpression", False, "CodeVariableReferenceExpression", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.String,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.String,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.String,System.Int32)", "summary", "df-generated"] - - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.Type,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.Type,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeArrayCreateExpression", "CodeArrayCreateExpression", "(System.Type,System.Int32)", "summary", "df-generated"] - - ["System.CodeDom", "CodeArrayIndexerExpression", "CodeArrayIndexerExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeArrayIndexerExpression", "get_Indices", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeAssignStatement", "CodeAssignStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttachEventStatement", "CodeAttachEventStatement", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeAttributeArgument", "CodeAttributeArgument", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", "Contains", "(System.CodeDom.CodeAttributeArgument)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", "IndexOf", "(System.CodeDom.CodeAttributeArgument)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttributeArgumentCollection", "Remove", "(System.CodeDom.CodeAttributeArgument)", "summary", "df-generated"] @@ -224,14 +245,10 @@ extensions: - ["System.CodeDom", "CodeAttributeDeclarationCollection", "Contains", "(System.CodeDom.CodeAttributeDeclaration)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttributeDeclarationCollection", "IndexOf", "(System.CodeDom.CodeAttributeDeclaration)", "summary", "df-generated"] - ["System.CodeDom", "CodeAttributeDeclarationCollection", "Remove", "(System.CodeDom.CodeAttributeDeclaration)", "summary", "df-generated"] - - ["System.CodeDom", "CodeBinaryOperatorExpression", "CodeBinaryOperatorExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeCastExpression", "CodeCastExpression", "(System.String,System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeCastExpression", "CodeCastExpression", "(System.Type,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeCatchClause", "get_Statements", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeCatchClauseCollection", "Contains", "(System.CodeDom.CodeCatchClause)", "summary", "df-generated"] - ["System.CodeDom", "CodeCatchClauseCollection", "IndexOf", "(System.CodeDom.CodeCatchClause)", "summary", "df-generated"] - ["System.CodeDom", "CodeCatchClauseCollection", "Remove", "(System.CodeDom.CodeCatchClause)", "summary", "df-generated"] - - ["System.CodeDom", "CodeCommentStatement", "CodeCommentStatement", "(System.CodeDom.CodeComment)", "summary", "df-generated"] - ["System.CodeDom", "CodeCommentStatement", "CodeCommentStatement", "(System.String)", "summary", "df-generated"] - ["System.CodeDom", "CodeCommentStatement", "CodeCommentStatement", "(System.String,System.Boolean)", "summary", "df-generated"] - ["System.CodeDom", "CodeCommentStatementCollection", "Contains", "(System.CodeDom.CodeCommentStatement)", "summary", "df-generated"] @@ -242,26 +259,18 @@ extensions: - ["System.CodeDom", "CodeCompileUnit", "get_Namespaces", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeCompileUnit", "get_ReferencedAssemblies", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeCompileUnit", "get_StartDirectives", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeConditionStatement", "CodeConditionStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[])", "summary", "df-generated"] - - ["System.CodeDom", "CodeConditionStatement", "CodeConditionStatement", "(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[])", "summary", "df-generated"] - ["System.CodeDom", "CodeConditionStatement", "get_FalseStatements", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeConditionStatement", "get_TrueStatements", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeConstructor", "get_BaseConstructorArgs", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeConstructor", "get_ChainedConstructorArgs", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeDelegateInvokeExpression", "CodeDelegateInvokeExpression", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeDelegateInvokeExpression", "CodeDelegateInvokeExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeDelegateInvokeExpression", "get_Parameters", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeDirectionExpression", "CodeDirectionExpression", "(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeDirectiveCollection", "Contains", "(System.CodeDom.CodeDirective)", "summary", "df-generated"] - ["System.CodeDom", "CodeDirectiveCollection", "IndexOf", "(System.CodeDom.CodeDirective)", "summary", "df-generated"] - ["System.CodeDom", "CodeDirectiveCollection", "Remove", "(System.CodeDom.CodeDirective)", "summary", "df-generated"] - ["System.CodeDom", "CodeExpressionCollection", "Contains", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeExpressionCollection", "IndexOf", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeExpressionCollection", "Remove", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeExpressionStatement", "CodeExpressionStatement", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodeIndexerExpression", "CodeIndexerExpression", "(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeIndexerExpression", "get_Indices", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeIterationStatement", "CodeIterationStatement", "(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[])", "summary", "df-generated"] - ["System.CodeDom", "CodeIterationStatement", "get_Statements", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeMemberEvent", "get_ImplementationTypes", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeMemberMethod", "add_PopulateImplementationTypes", "(System.EventHandler)", "summary", "df-generated"] @@ -279,7 +288,6 @@ extensions: - ["System.CodeDom", "CodeMethodInvokeExpression", "CodeMethodInvokeExpression", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[])", "summary", "df-generated"] - ["System.CodeDom", "CodeMethodInvokeExpression", "get_Parameters", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeMethodReferenceExpression", "get_TypeArguments", "()", "summary", "df-generated"] - - ["System.CodeDom", "CodeMethodReturnStatement", "CodeMethodReturnStatement", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeNamespace", "add_PopulateComments", "(System.EventHandler)", "summary", "df-generated"] - ["System.CodeDom", "CodeNamespace", "add_PopulateImports", "(System.EventHandler)", "summary", "df-generated"] - ["System.CodeDom", "CodeNamespace", "add_PopulateTypes", "(System.EventHandler)", "summary", "df-generated"] @@ -304,15 +312,12 @@ extensions: - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", "Contains", "(System.CodeDom.CodeParameterDeclarationExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", "IndexOf", "(System.CodeDom.CodeParameterDeclarationExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeParameterDeclarationExpressionCollection", "Remove", "(System.CodeDom.CodeParameterDeclarationExpression)", "summary", "df-generated"] - - ["System.CodeDom", "CodePrimitiveExpression", "CodePrimitiveExpression", "(System.Object)", "summary", "df-generated"] - - ["System.CodeDom", "CodeRemoveEventStatement", "CodeRemoveEventStatement", "(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeStatement", "get_EndDirectives", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeStatement", "get_StartDirectives", "()", "summary", "df-generated"] - ["System.CodeDom", "CodeStatementCollection", "Add", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeStatementCollection", "Contains", "(System.CodeDom.CodeStatement)", "summary", "df-generated"] - ["System.CodeDom", "CodeStatementCollection", "IndexOf", "(System.CodeDom.CodeStatement)", "summary", "df-generated"] - ["System.CodeDom", "CodeStatementCollection", "Remove", "(System.CodeDom.CodeStatement)", "summary", "df-generated"] - - ["System.CodeDom", "CodeThrowExceptionStatement", "CodeThrowExceptionStatement", "(System.CodeDom.CodeExpression)", "summary", "df-generated"] - ["System.CodeDom", "CodeTryCatchFinallyStatement", "CodeTryCatchFinallyStatement", "(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[])", "summary", "df-generated"] - ["System.CodeDom", "CodeTryCatchFinallyStatement", "CodeTryCatchFinallyStatement", "(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[])", "summary", "df-generated"] - ["System.CodeDom", "CodeTryCatchFinallyStatement", "get_CatchClauses", "()", "summary", "df-generated"] @@ -342,9 +347,7 @@ extensions: - ["System.CodeDom", "CodeTypeParameterCollection", "IndexOf", "(System.CodeDom.CodeTypeParameter)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeParameterCollection", "Remove", "(System.CodeDom.CodeTypeParameter)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.CodeDom.CodeTypeParameter)", "summary", "df-generated"] - - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.CodeDom.CodeTypeReference,System.Int32)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.String,System.CodeDom.CodeTypeReference[])", "summary", "df-generated"] - - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.String,System.Int32)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.Type)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeReference", "CodeTypeReference", "(System.Type,System.CodeDom.CodeTypeReferenceOptions)", "summary", "df-generated"] - ["System.CodeDom", "CodeTypeReferenceCollection", "Add", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml b/csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml index 7b3be3d8da6..9834bace34d 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.Concurrent.model.yml @@ -28,12 +28,14 @@ extensions: - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "AddOrUpdate", "(TKey,System.Func,System.Func,TArg)", "", "Argument[2].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "AddOrUpdate", "(TKey,System.Func,System.Func,TArg)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "AddOrUpdate", "(TKey,System.Func,System.Func,TArg)", "", "Argument[3]", "Argument[2].Parameter[2]", "value", "dfc-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetAlternateLookup", "()", "", "Argument[this]", "ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,System.Func)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "TryGetAlternateLookup", "(System.Collections.Concurrent.ConcurrentDictionary+AlternateLookup)", "", "Argument[this]", "ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", False, "get_Comparer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentStack", False, "ConcurrentStack", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.Collections.Concurrent.ConcurrentStack`1._head].SyntheticField[System.Collections.Concurrent.ConcurrentStack`1+Node._value]", "value", "dfc-generated"] - ["System.Collections.Concurrent", "ConcurrentStack", False, "TryPeek", "(T)", "", "Argument[this].SyntheticField[System.Collections.Concurrent.ConcurrentStack`1._head].SyntheticField[System.Collections.Concurrent.ConcurrentStack`1+Node._value]", "ReturnValue", "value", "dfc-generated"] @@ -84,6 +86,15 @@ extensions: - ["System.Collections.Concurrent", "ConcurrentBag", "get_Count", "()", "summary", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentBag", "get_IsEmpty", "()", "summary", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentBag", "get_IsSynchronized", "()", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "ContainsKey", "(TAlternateKey)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "TryAdd", "(TAlternateKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "TryGetValue", "(TAlternateKey,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "TryGetValue", "(TAlternateKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "TryRemove", "(TAlternateKey,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "TryRemove", "(TAlternateKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "get_Dictionary", "()", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "get_Item", "(TAlternateKey)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "ConcurrentDictionary+AlternateLookup", "set_Item", "(TAlternateKey,TValue)", "summary", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", "ConcurrentDictionary", "(System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", "ConcurrentDictionary", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Collections.Concurrent", "ConcurrentDictionary", "ConcurrentDictionary", "(System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] @@ -129,6 +140,9 @@ extensions: - ["System.Collections.Concurrent", "OrderablePartitioner", "GetOrderablePartitions", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Concurrent", "OrderablePartitioner", "GetPartitions", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Concurrent", "OrderablePartitioner", "OrderablePartitioner", "(System.Boolean,System.Boolean,System.Boolean)", "summary", "df-generated"] + - ["System.Collections.Concurrent", "OrderablePartitioner", "get_KeysNormalized", "()", "summary", "df-generated"] + - ["System.Collections.Concurrent", "OrderablePartitioner", "get_KeysOrderedAcrossPartitions", "()", "summary", "df-generated"] + - ["System.Collections.Concurrent", "OrderablePartitioner", "get_KeysOrderedInEachPartition", "()", "summary", "df-generated"] - ["System.Collections.Concurrent", "Partitioner", "Create", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Collections.Concurrent", "Partitioner", "Create", "(System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Collections.Concurrent", "Partitioner", "Create", "(System.Int64,System.Int64)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml b/csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml index 03b5409fa09..daea37e28ca 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.Frozen.model.yml @@ -5,14 +5,26 @@ extensions: extensible: summaryModel data: - ["System.Collections.Frozen", "FrozenDictionary", False, "ToFrozenDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenDictionary+AlternateLookup", False, "ContainsKey", "(TAlternateKey)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenDictionary+AlternateLookup", False, "TryGetValue", "(TAlternateKey,TValue)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenDictionary+AlternateLookup", False, "get_Item", "(TAlternateKey)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Frozen.FrozenDictionary`2+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Frozen", "FrozenDictionary+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenDictionary", False, "GetAlternateLookup", "()", "", "Argument[this]", "ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary]", "value", "dfc-generated"] + - ["System.Collections.Frozen", "FrozenDictionary", False, "TryGetAlternateLookup", "(System.Collections.Frozen.FrozenDictionary+AlternateLookup)", "", "Argument[this]", "ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary]", "value", "dfc-generated"] - ["System.Collections.Frozen", "FrozenDictionary", False, "get_Keys", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary", False, "get_Values", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet", False, "Create", "(System.Collections.Generic.IEqualityComparer,System.ReadOnlySpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet", False, "Create", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Frozen", "FrozenSet", False, "ToFrozenSet", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet+AlternateLookup", False, "Contains", "(TAlternate)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet+AlternateLookup", False, "TryGetValue", "(TAlternate,T)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet+AlternateLookup", False, "TryGetValue", "(TAlternate,T)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Frozen", "FrozenSet+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Frozen.FrozenSet`1+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Frozen", "FrozenSet+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Frozen", "FrozenSet", False, "CopyTo", "(System.Span)", "", "Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element", "Argument[0].Element", "value", "dfc-generated"] + - ["System.Collections.Frozen", "FrozenSet", False, "GetAlternateLookup", "()", "", "Argument[this]", "ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set]", "value", "dfc-generated"] + - ["System.Collections.Frozen", "FrozenSet", False, "TryGetAlternateLookup", "(System.Collections.Frozen.FrozenSet+AlternateLookup)", "", "Argument[this]", "ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set]", "value", "dfc-generated"] - ["System.Collections.Frozen", "FrozenSet", False, "TryGetValue", "(T,T)", "", "Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Frozen", "FrozenSet", False, "get_Items", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: @@ -21,6 +33,7 @@ extensions: data: - ["System.Collections.Frozen", "FrozenDictionary", "ToFrozenDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary", "ToFrozenDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Collections.Frozen", "FrozenDictionary+AlternateLookup", "get_Dictionary", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -41,6 +54,7 @@ extensions: - ["System.Collections.Frozen", "FrozenDictionary", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary", "get_IsSynchronized", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenDictionary", "get_Item", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Frozen", "FrozenSet+AlternateLookup", "get_Set", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenSet+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenSet+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Frozen", "FrozenSet+Enumerator", "Reset", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml b/csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml index c81dffa0510..ad2383f1d6b 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.Generic.model.yml @@ -5,6 +5,7 @@ extensions: extensible: summaryModel data: - ["System.Collections.Generic", "CollectionExtensions", False, "AsReadOnly", "(System.Collections.Generic.IList)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "CollectionExtensions", False, "AsReadOnly", "(System.Collections.Generic.ISet)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Generic", "CollectionExtensions", False, "AsReadOnly", "(System.Collections.Generic.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] - ["System.Collections.Generic", "CollectionExtensions", False, "AsReadOnly", "(System.Collections.Generic.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] - ["System.Collections.Generic", "CollectionExtensions", False, "CopyTo", "(System.Collections.Generic.List,System.Span)", "", "Argument[0].Element", "Argument[1]", "taint", "df-generated"] @@ -77,6 +78,25 @@ extensions: - ["System.Collections.Generic", "List", False, "List", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Collections.Generic", "List", False, "Slice", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Collections.Generic", "NonRandomizedStringEqualityComparer", True, "GetUnderlyingEqualityComparer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", False, "get_Key", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", False, "get_Value", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+KeyCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+ValueCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "OrderedDictionary", "(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "OrderedDictionary", "(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "OrderedDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "OrderedDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "OrderedDictionary", "(System.Int32,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer]", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "Remove", "(TKey,TValue)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "TryGetValue", "(TKey,TValue)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "TryGetValue", "(TKey,TValue,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "get_Comparer", "()", "", "Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "get_Keys", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Keys]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Generic", "OrderedDictionary", False, "get_Values", "()", "", "Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Values]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Generic", "PriorityQueue+UnorderedItemsCollection+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Generic", "PriorityQueue+UnorderedItemsCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Generic", "PriorityQueue", False, "Dequeue", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -158,6 +178,15 @@ extensions: - ["System.Collections.Generic", "Comparer", "Compare", "(T,T)", "summary", "df-generated"] - ["System.Collections.Generic", "Comparer", "Create", "(System.Comparison)", "summary", "df-generated"] - ["System.Collections.Generic", "Comparer", "get_Default", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "ContainsKey", "(TAlternateKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "Remove", "(TAlternateKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "Remove", "(TAlternateKey,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "TryAdd", "(TAlternateKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "TryGetValue", "(TAlternateKey,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "TryGetValue", "(TAlternateKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "get_Dictionary", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "get_Item", "(TAlternateKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary+AlternateLookup", "set_Item", "(TAlternateKey,TValue)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -185,6 +214,7 @@ extensions: - ["System.Collections.Generic", "Dictionary", "Dictionary", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "Dictionary", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "EnsureCapacity", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary", "GetAlternateLookup", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "OnDeserialization", "(System.Object)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "Remove", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "Remove", "(System.Object)", "summary", "df-generated"] @@ -193,6 +223,7 @@ extensions: - ["System.Collections.Generic", "Dictionary", "TrimExcess", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "TrimExcess", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "TryAdd", "(TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "Dictionary", "TryGetAlternateLookup", "(System.Collections.Generic.Dictionary+AlternateLookup)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "TryGetValue", "(TKey,TValue)", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "get_Capacity", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Dictionary", "get_Count", "()", "summary", "df-generated"] @@ -204,6 +235,7 @@ extensions: - ["System.Collections.Generic", "EnumEqualityComparer", "GetHashCode", "()", "summary", "df-generated"] - ["System.Collections.Generic", "EnumEqualityComparer", "GetHashCode", "(T)", "summary", "df-generated"] - ["System.Collections.Generic", "EqualityComparer", "Create", "(System.Func,System.Func)", "summary", "df-generated"] + - ["System.Collections.Generic", "EqualityComparer", "Equals", "(System.Object,System.Object)", "summary", "df-generated"] - ["System.Collections.Generic", "EqualityComparer", "Equals", "(T,T)", "summary", "df-generated"] - ["System.Collections.Generic", "EqualityComparer", "GetHashCode", "(T)", "summary", "df-generated"] - ["System.Collections.Generic", "EqualityComparer", "get_Default", "()", "summary", "df-generated"] @@ -214,6 +246,11 @@ extensions: - ["System.Collections.Generic", "GenericEqualityComparer", "Equals", "(T,T)", "summary", "df-generated"] - ["System.Collections.Generic", "GenericEqualityComparer", "GetHashCode", "()", "summary", "df-generated"] - ["System.Collections.Generic", "GenericEqualityComparer", "GetHashCode", "(T)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet+AlternateLookup", "Add", "(TAlternate)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet+AlternateLookup", "Contains", "(TAlternate)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet+AlternateLookup", "Remove", "(TAlternate)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet+AlternateLookup", "TryGetValue", "(TAlternate,T)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet+AlternateLookup", "get_Set", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -223,6 +260,7 @@ extensions: - ["System.Collections.Generic", "HashSet", "CreateSetComparer", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "EnsureCapacity", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "ExceptWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet", "GetAlternateLookup", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "HashSet", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "HashSet", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "HashSet", "(System.Int32,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] @@ -240,10 +278,14 @@ extensions: - ["System.Collections.Generic", "HashSet", "SymmetricExceptWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "TrimExcess", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "TrimExcess", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "HashSet", "TryGetAlternateLookup", "(System.Collections.Generic.HashSet+AlternateLookup)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "UnionWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "get_Capacity", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "get_Count", "()", "summary", "df-generated"] - ["System.Collections.Generic", "HashSet", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "IAlternateEqualityComparer", "Create", "(TAlternate)", "summary", "df-generated"] + - ["System.Collections.Generic", "IAlternateEqualityComparer", "Equals", "(TAlternate,T)", "summary", "df-generated"] + - ["System.Collections.Generic", "IAlternateEqualityComparer", "GetHashCode", "(TAlternate)", "summary", "df-generated"] - ["System.Collections.Generic", "IAsyncEnumerable", "GetAsyncEnumerator", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Collections.Generic", "IAsyncEnumerator", "MoveNextAsync", "()", "summary", "df-generated"] - ["System.Collections.Generic", "IAsyncEnumerator", "get_Current", "()", "summary", "df-generated"] @@ -363,6 +405,70 @@ extensions: - ["System.Collections.Generic", "ObjectEqualityComparer", "Equals", "(T,T)", "summary", "df-generated"] - ["System.Collections.Generic", "ObjectEqualityComparer", "GetHashCode", "()", "summary", "df-generated"] - ["System.Collections.Generic", "ObjectEqualityComparer", "GetHashCode", "(T)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", "Dispose", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+Enumerator", "Reset", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection+Enumerator", "Dispose", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection+Enumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection+Enumerator", "Reset", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection+Enumerator", "get_Current", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "Contains", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "Contains", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "IndexOf", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "IndexOf", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "Remove", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "Remove", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "get_Count", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "get_IsFixedSize", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+KeyCollection", "get_IsSynchronized", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection+Enumerator", "Dispose", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection+Enumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection+Enumerator", "Reset", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection+Enumerator", "get_Current", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "Contains", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "Contains", "(TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "IndexOf", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "IndexOf", "(TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "Remove", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "Remove", "(TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "get_Count", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "get_IsFixedSize", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary+ValueCollection", "get_IsSynchronized", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Contains", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "ContainsKey", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "ContainsValue", "(TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "EnsureCapacity", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "GetAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "IndexOf", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "IndexOf", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "IndexOf", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Insert", "(System.Int32,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "OrderedDictionary", "(System.Collections.Generic.IDictionary)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "OrderedDictionary", "(System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "OrderedDictionary", "(System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "OrderedDictionary", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Remove", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Remove", "(System.Object)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "Remove", "(TKey)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "SetAt", "(System.Int32,TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "SetAt", "(System.Int32,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "TrimExcess", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "TrimExcess", "(System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "TryAdd", "(TKey,TValue)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "TryAdd", "(TKey,TValue,System.Int32)", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_Capacity", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_Count", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_IsFixedSize", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_IsSynchronized", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_Keys", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "OrderedDictionary", "get_Values", "()", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue+UnorderedItemsCollection+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue+UnorderedItemsCollection+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue+UnorderedItemsCollection+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -376,6 +482,7 @@ extensions: - ["System.Collections.Generic", "PriorityQueue", "PriorityQueue", "(System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue", "PriorityQueue", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue", "TrimExcess", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "PriorityQueue", "get_Capacity", "()", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue", "get_Count", "()", "summary", "df-generated"] - ["System.Collections.Generic", "PriorityQueue", "get_UnorderedItems", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Queue+Enumerator", "Dispose", "()", "summary", "df-generated"] @@ -390,6 +497,7 @@ extensions: - ["System.Collections.Generic", "Queue", "get_Capacity", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Queue", "get_Count", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Queue", "get_IsSynchronized", "()", "summary", "df-generated"] + - ["System.Collections.Generic", "ReferenceEqualityComparer", "Equals", "(System.Object,System.Object)", "summary", "df-generated"] - ["System.Collections.Generic", "ReferenceEqualityComparer", "get_Instance", "()", "summary", "df-generated"] - ["System.Collections.Generic", "SortedDictionary+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Generic", "SortedDictionary+Enumerator", "MoveNext", "()", "summary", "df-generated"] @@ -494,4 +602,3 @@ extensions: - ["System.Collections.Generic", "Stack", "get_Count", "()", "summary", "df-generated"] - ["System.Collections.Generic", "Stack", "get_IsSynchronized", "()", "summary", "df-generated"] - ["System.Collections.Generic", "TreeSet", "TreeSet", "(System.Collections.Generic.IComparer)", "summary", "df-generated"] - - ["System.Collections.Generic", "TreeSet", "TreeSet", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml b/csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml index 5acd310b865..66a9ffc7958 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.Immutable.model.yml @@ -125,6 +125,22 @@ extensions: - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable>)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", False, "GetValueOrDefault", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", False, "TryGetKey", "(TKey,TKey)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", False, "TryGetValue", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] @@ -133,10 +149,7 @@ extensions: - ["System.Collections.Immutable", "ImmutableDictionary", False, "Clear", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "Remove", "(TKey)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "RemoveRange", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", False, "SetItem", "(TKey,TValue)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", False, "SetItem", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "SetItem", "(TKey,TValue)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", False, "SetItems", "(System.Collections.Generic.IEnumerable>)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "SetItems", "(System.Collections.Generic.IEnumerable>)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "ToBuilder", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", False, "TryGetKey", "(TKey,TKey)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -231,7 +244,6 @@ extensions: - ["System.Collections.Immutable", "ImmutableList+Builder", False, "Replace", "(T,T)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Builder", False, "Replace", "(T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Builder", False, "Replace", "(T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Collections.Immutable", "ImmutableList+Builder", False, "set_Item", "(System.Int32,T)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Collections.Immutable.ImmutableList`1+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableList+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableList", False, "BinarySearch", "(System.Int32,System.Int32,T,System.Collections.Generic.IComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] @@ -293,6 +305,18 @@ extensions: - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] + - ["System.Collections.Immutable", "ImmutableSortedDictionary", False, "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "", "Argument[2].ReturnValue", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", False, "GetValueOrDefault", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", False, "TryGetKey", "(TKey,TKey)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", False, "TryGetValue", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] @@ -491,11 +515,6 @@ extensions: - ["System.Collections.Immutable", "ImmutableDictionary", "CreateBuilder", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", "GetValueOrDefault", "(System.Collections.Immutable.IImmutableDictionary,TKey)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Immutable.ImmutableDictionary+Builder)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableDictionary", "ToImmutableDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", "Contains", "(System.Object)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableDictionary+Builder", "ContainsKey", "(TKey)", "summary", "df-generated"] @@ -612,7 +631,6 @@ extensions: - ["System.Collections.Immutable", "ImmutableList+Builder", "get_IsFixedSize", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Builder", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Builder", "get_IsSynchronized", "()", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableList+Builder", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableList+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -651,9 +669,6 @@ extensions: - ["System.Collections.Immutable", "ImmutableSortedDictionary", "Create", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary", "CreateBuilder", "()", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary", "ToImmutableSortedDictionary", "(System.Collections.Immutable.ImmutableSortedDictionary+Builder)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableSortedDictionary", "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableSortedDictionary", "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer)", "summary", "df-generated"] - - ["System.Collections.Immutable", "ImmutableSortedDictionary", "ToImmutableSortedDictionary", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", "Contains", "(System.Object)", "summary", "df-generated"] - ["System.Collections.Immutable", "ImmutableSortedDictionary+Builder", "ContainsKey", "(TKey)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml b/csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml index c062f8b806d..f201af698cf 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.ObjectModel.model.yml @@ -15,11 +15,16 @@ extensions: - ["System.Collections.ObjectModel", "KeyedCollection", False, "TryGetValue", "(TKey,TItem)", "", "Argument[this].Property[System.Collections.ObjectModel.Collection`1.Items].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "KeyedCollection", False, "get_Comparer", "()", "", "Argument[this].SyntheticField[System.Collections.ObjectModel.KeyedCollection`2.comparer]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "KeyedCollection", False, "get_Dictionary", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlyCollection", False, "CreateCollection", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlyCollection", False, "CreateSet", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Collections.ObjectModel", "ReadOnlyCollection", False, "ReadOnlyCollection", "(System.Collections.Generic.IList)", "", "Argument[0]", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlyCollection`1.list]", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "ReadOnlyCollection", False, "get_Items", "()", "", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlyCollection`1.list]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "ReadOnlyCollection", False, "get_SyncRoot", "()", "", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlyCollection`1.list].Property[System.Collections.ICollection.SyncRoot]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "ReadOnlyDictionary", False, "TryGetValue", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Collections.ObjectModel", "ReadOnlyDictionary", False, "get_Dictionary", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", False, "ReadOnlySet", "(System.Collections.Generic.ISet)", "", "Argument[0]", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set]", "value", "dfc-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", False, "get_Set", "()", "", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set]", "ReturnValue", "value", "dfc-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", False, "get_SyncRoot", "()", "", "Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set].Property[System.Collections.ICollection.SyncRoot]", "ReturnValue", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -103,3 +108,19 @@ extensions: - ["System.Collections.ObjectModel", "ReadOnlyObservableCollection", "get_Empty", "()", "summary", "df-generated"] - ["System.Collections.ObjectModel", "ReadOnlyObservableCollection", "remove_CollectionChanged", "(System.Collections.Specialized.NotifyCollectionChangedEventHandler)", "summary", "df-generated"] - ["System.Collections.ObjectModel", "ReadOnlyObservableCollection", "remove_PropertyChanged", "(System.ComponentModel.PropertyChangedEventHandler)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "Contains", "(T)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "ExceptWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "IntersectWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "IsProperSubsetOf", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "IsProperSupersetOf", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "IsSubsetOf", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "IsSupersetOf", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "Overlaps", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "Remove", "(T)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "SetEquals", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "SymmetricExceptWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "UnionWith", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "get_Count", "()", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "get_Empty", "()", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Collections.ObjectModel", "ReadOnlySet", "get_IsSynchronized", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Collections.model.yml b/csharp/ql/lib/ext/generated/System.Collections.model.yml index 72ced0a5f67..1d91a7122d1 100644 --- a/csharp/ql/lib/ext/generated/System.Collections.model.yml +++ b/csharp/ql/lib/ext/generated/System.Collections.model.yml @@ -48,8 +48,6 @@ extensions: - ["System.Collections", "IDictionaryEnumerator", True, "get_Key", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections", "IDictionaryEnumerator", True, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Collections", "IEnumerator", True, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Collections", "IEqualityComparer", True, "Equals", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Collections", "IEqualityComparer", True, "Equals", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Collections", "IEqualityComparer", True, "GetHashCode", "(System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Collections", "Queue", False, "Queue", "(System.Collections.ICollection)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.Collections.Queue._array].Element", "value", "dfc-generated"] - ["System.Collections", "Queue", False, "Synchronized", "(System.Collections.Queue)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] @@ -172,6 +170,7 @@ extensions: - ["System.Collections", "IDictionary", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Collections", "IEnumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Collections", "IEnumerator", "Reset", "()", "summary", "df-generated"] + - ["System.Collections", "IEqualityComparer", "Equals", "(System.Object,System.Object)", "summary", "df-generated"] - ["System.Collections", "IHashCodeProvider", "GetHashCode", "(System.Object)", "summary", "df-generated"] - ["System.Collections", "IList", "Contains", "(System.Object)", "summary", "df-generated"] - ["System.Collections", "IList", "IndexOf", "(System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml index 2ce7efbd276..696919b57fc 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.Hosting.model.yml @@ -36,6 +36,7 @@ extensions: - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "ComposablePartCatalogChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs._addedDefinitions]", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "ComposablePartCatalogChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[1].Element", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs._removedDefinitions].Element", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "ComposablePartCatalogChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs._removedDefinitions]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "ComposablePartCatalogChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs.AtomicComposition]", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "get_AddedDefinitions", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs._addedDefinitions]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", False, "get_RemovedDefinitions", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ComposablePartCatalogChangeEventArgs._removedDefinitions]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartExportProvider", False, "Compose", "(System.ComponentModel.Composition.Hosting.CompositionBatch)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -94,6 +95,7 @@ extensions: - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "ExportsChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs._addedExports]", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "ExportsChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[1].Element", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs._removedExports].Element", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "ExportsChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs._removedExports]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "ExportsChangeEventArgs", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.ComponentModel.Composition.Hosting.AtomicComposition)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs.AtomicComposition]", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "get_AddedExports", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs._addedExports]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", False, "get_RemovedExports", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.Hosting.ExportsChangeEventArgs._removedExports]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Composition.Hosting", "FilteredCatalog", False, "get_Complement", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -130,6 +132,7 @@ extensions: - ["System.ComponentModel.Composition.Hosting", "CatalogExportProvider", "CatalogExportProvider", "(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "CatalogExportProvider", "Dispose", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "CatalogExportProvider", "Dispose", "(System.Boolean)", "summary", "df-generated"] + - ["System.ComponentModel.Composition.Hosting", "ComposablePartCatalogChangeEventArgs", "get_AtomicComposition", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartExportProvider", "ComposablePartExportProvider", "(System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartExportProvider", "ComposablePartExportProvider", "(System.ComponentModel.Composition.Hosting.CompositionOptions)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ComposablePartExportProvider", "Dispose", "()", "summary", "df-generated"] @@ -189,6 +192,7 @@ extensions: - ["System.ComponentModel.Composition.Hosting", "ExportProvider", "add_ExportsChanging", "(System.EventHandler)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportProvider", "remove_ExportsChanged", "(System.EventHandler)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportProvider", "remove_ExportsChanging", "(System.EventHandler)", "summary", "df-generated"] + - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", "get_AtomicComposition", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "ExportsChangeEventArgs", "get_ChangedContractNames", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "FilteredCatalog", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Composition.Hosting", "FilteredCatalog", "FilteredCatalog", "(System.ComponentModel.Composition.Primitives.ComposablePartCatalog,System.Func)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml index 40544f41714..ea5081ce54b 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.Composition.model.yml @@ -23,10 +23,17 @@ extensions: - ["System.ComponentModel.Composition", "CompositionException", False, "get_Errors", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.Composition", "CompositionException", False, "get_RootCauses", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.Composition", "CompositionException", True, "get_Message", "()", "", "Argument[this].Property[System.Exception.Message]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "ExportAttribute", False, "ExportAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Composition.ExportAttribute.ContractName]", "value", "dfc-generated"] - ["System.ComponentModel.Composition", "ExportFactory", False, "ExportFactory", "(System.Func>,TMetadata)", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.Composition.ExportFactory`2._metadata]", "value", "dfc-generated"] - ["System.ComponentModel.Composition", "ExportFactory", False, "get_Metadata", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.ExportFactory`2._metadata]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Composition", "ExportLifetimeContext", False, "ExportLifetimeContext", "(T,System.Action)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.Composition.ExportLifetimeContext`1._value]", "value", "dfc-generated"] - ["System.ComponentModel.Composition", "ExportLifetimeContext", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Composition.ExportLifetimeContext`1._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "ExportMetadataAttribute", False, "ExportMetadataAttribute", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Composition.ExportMetadataAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "ExportMetadataAttribute", False, "ExportMetadataAttribute", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Composition.ExportMetadataAttribute.Value]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "ImportAttribute", False, "ImportAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Composition.ImportAttribute.ContractName]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "ImportManyAttribute", False, "ImportManyAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Composition.ImportManyAttribute.ContractName]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "PartMetadataAttribute", False, "PartMetadataAttribute", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Composition.PartMetadataAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.Composition", "PartMetadataAttribute", False, "PartMetadataAttribute", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Composition.PartMetadataAttribute.Value]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -61,26 +68,29 @@ extensions: - ["System.ComponentModel.Composition", "CompositionException", "CompositionException", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "CompositionException", "CompositionException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ExportAttribute", "ExportAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.Composition", "ExportAttribute", "ExportAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ExportAttribute", "ExportAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ExportAttribute", "get_ContractName", "()", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ExportAttribute", "get_ContractType", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ExportFactory", "CreateExport", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ExportFactory", "ExportFactory", "(System.Func>)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ExportLifetimeContext", "Dispose", "()", "summary", "df-generated"] - - ["System.ComponentModel.Composition", "ExportMetadataAttribute", "ExportMetadataAttribute", "(System.String,System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ICompositionService", "SatisfyImportsOnce", "(System.ComponentModel.Composition.Primitives.ComposablePart)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "IPartImportsSatisfiedNotification", "OnImportsSatisfied", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportAttribute", "ImportAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.Composition", "ImportAttribute", "ImportAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportAttribute", "ImportAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ImportAttribute", "get_ContractName", "()", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ImportAttribute", "get_ContractType", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportCardinalityMismatchException", "ImportCardinalityMismatchException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportCardinalityMismatchException", "ImportCardinalityMismatchException", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportCardinalityMismatchException", "ImportCardinalityMismatchException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportManyAttribute", "ImportManyAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.Composition", "ImportManyAttribute", "ImportManyAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "ImportManyAttribute", "ImportManyAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ImportManyAttribute", "get_ContractName", "()", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "ImportManyAttribute", "get_ContractType", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "InheritedExportAttribute", "InheritedExportAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "InheritedExportAttribute", "InheritedExportAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "InheritedExportAttribute", "InheritedExportAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Composition", "MetadataViewImplementationAttribute", "MetadataViewImplementationAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "MetadataViewImplementationAttribute", "get_ImplementationType", "()", "summary", "df-generated"] - ["System.ComponentModel.Composition", "PartCreationPolicyAttribute", "PartCreationPolicyAttribute", "(System.ComponentModel.Composition.CreationPolicy)", "summary", "df-generated"] - - ["System.ComponentModel.Composition", "PartMetadataAttribute", "PartMetadataAttribute", "(System.String,System.Object)", "summary", "df-generated"] + - ["System.ComponentModel.Composition", "PartCreationPolicyAttribute", "get_CreationPolicy", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml index c211f305085..10e928acdb5 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.Schema.model.yml @@ -1,16 +1,20 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.ComponentModel.DataAnnotations.Schema", "ColumnAttribute", False, "ColumnAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations.Schema", "ForeignKeyAttribute", False, "ForeignKeyAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ForeignKeyAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations.Schema", "InversePropertyAttribute", False, "InversePropertyAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.InversePropertyAttribute.Property]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations.Schema", "TableAttribute", False, "TableAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.TableAttribute.Name]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.ComponentModel.DataAnnotations.Schema", "ColumnAttribute", "ColumnAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "ColumnAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "DatabaseGeneratedAttribute", "DatabaseGeneratedAttribute", "(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "DatabaseGeneratedAttribute", "get_DatabaseGeneratedOption", "()", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations.Schema", "ForeignKeyAttribute", "ForeignKeyAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "ForeignKeyAttribute", "get_Name", "()", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations.Schema", "InversePropertyAttribute", "InversePropertyAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "InversePropertyAttribute", "get_Property", "()", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations.Schema", "TableAttribute", "TableAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations.Schema", "TableAttribute", "get_Name", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml index 64d3aad5217..0f0a170673b 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.DataAnnotations.model.yml @@ -4,10 +4,19 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.ComponentModel.DataAnnotations", "AllowedValuesAttribute", False, "AllowedValuesAttribute", "(System.Object[])", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.AllowedValuesAttribute.Values]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", False, "AssociationAttribute", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", False, "AssociationAttribute", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", False, "AssociationAttribute", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", False, "get_OtherKeyMembers", "()", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey]", "ReturnValue.Element", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", False, "get_ThisKeyMembers", "()", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey]", "ReturnValue.Element", "taint", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "CompareAttribute", False, "CompareAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "CompareAttribute", True, "IsValid", "(System.Object,System.ComponentModel.DataAnnotations.ValidationContext)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty]", "Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherPropertyDisplayName]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", False, "CustomValidationAttribute", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.CustomValidationAttribute.Method]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", False, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", False, "DataTypeAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", True, "GetDataTypeName", "()", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "DeniedValuesAttribute", False, "DeniedValuesAttribute", "(System.Object[])", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.DeniedValuesAttribute.Values]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetAutoGenerateField", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetAutoGenerateFilter", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetDescription", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -16,6 +25,8 @@ extensions: - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetOrder", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetPrompt", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayAttribute", False, "GetShortName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", False, "DisplayColumnAttribute", "(System.String,System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.DisplayColumn]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", False, "DisplayColumnAttribute", "(System.String,System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.SortColumn]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayFormatAttribute", False, "GetNullDisplayText", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "FilterUIHintAttribute", False, "FilterUIHintAttribute", "(System.String,System.String,System.Object[])", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.UIHint]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "FilterUIHintAttribute", False, "FilterUIHintAttribute", "(System.String,System.String,System.Object[])", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.PresentationLayer]", "value", "dfc-generated"] @@ -25,6 +36,9 @@ extensions: - ["System.ComponentModel.DataAnnotations", "LengthAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "MaxLengthAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "MinLengthAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "RangeAttribute", False, "RangeAttribute", "(System.Type,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Minimum]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "RangeAttribute", False, "RangeAttribute", "(System.Type,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Maximum]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", False, "RegularExpressionAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "StringLengthAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] @@ -38,44 +52,43 @@ extensions: - ["System.ComponentModel.DataAnnotations", "ValidationAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationAttribute", True, "FormatErrorMessage", "(System.String)", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", False, "InitializeServiceProvider", "(System.Func)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.ValidationContext._serviceProvider]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationContext", False, "ValidationContext", "(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationContext.ObjectInstance]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", False, "get_Items", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", False, "ValidationException", "(System.ComponentModel.DataAnnotations.ValidationResult,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationException", False, "ValidationException", "(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.ValidationAttribute]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationException", False, "ValidationException", "(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.Value]", "value", "dfc-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationResult", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationResult", False, "ValidationResult", "(System.ComponentModel.DataAnnotations.ValidationResult)", "", "Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationResult", False, "ValidationResult", "(System.ComponentModel.DataAnnotations.ValidationResult)", "", "Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationResult", False, "ValidationResult", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage]", "value", "dfc-generated"] + - ["System.ComponentModel.DataAnnotations", "ValidationResult", False, "ValidationResult", "(System.String,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.ComponentModel.DataAnnotations", "AllowedValuesAttribute", "AllowedValuesAttribute", "(System.Object[])", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AllowedValuesAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AllowedValuesAttribute", "get_Values", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AssociatedMetadataTypeTypeDescriptionProvider", "AssociatedMetadataTypeTypeDescriptionProvider", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AssociatedMetadataTypeTypeDescriptionProvider", "AssociatedMetadataTypeTypeDescriptionProvider", "(System.Type,System.Type)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", "AssociationAttribute", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", "get_OtherKey", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "AssociationAttribute", "get_ThisKey", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "Base64StringAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "CompareAttribute", "CompareAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "CompareAttribute", "IsValid", "(System.Object,System.ComponentModel.DataAnnotations.ValidationContext)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CompareAttribute", "get_OtherProperty", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CompareAttribute", "get_RequiresValidationContext", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CreditCardAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", "CustomValidationAttribute", "(System.Type,System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", "IsValid", "(System.Object,System.ComponentModel.DataAnnotations.ValidationContext)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", "get_Method", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", "get_RequiresValidationContext", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "CustomValidationAttribute", "get_ValidatorType", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", "DataTypeAttribute", "(System.ComponentModel.DataAnnotations.DataType)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", "DataTypeAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", "get_CustomDataType", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DataTypeAttribute", "get_DataType", "()", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "DeniedValuesAttribute", "DeniedValuesAttribute", "(System.Object[])", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DeniedValuesAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DeniedValuesAttribute", "get_Values", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "DisplayColumnAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "DisplayColumnAttribute", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "DisplayColumnAttribute", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "get_DisplayColumn", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "get_SortColumn", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "DisplayColumnAttribute", "get_SortDescending", "()", "summary", "df-generated"] @@ -107,10 +120,8 @@ extensions: - ["System.ComponentModel.DataAnnotations", "RangeAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RangeAttribute", "RangeAttribute", "(System.Double,System.Double)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RangeAttribute", "RangeAttribute", "(System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "RangeAttribute", "RangeAttribute", "(System.Type,System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RangeAttribute", "get_OperandType", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", "RegularExpressionAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", "get_MatchTimeout", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RegularExpressionAttribute", "get_Pattern", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "RequiredAttribute", "IsValid", "(System.Object)", "summary", "df-generated"] @@ -133,19 +144,15 @@ extensions: - ["System.ComponentModel.DataAnnotations", "ValidationAttribute", "get_RequiresValidationContext", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", "ValidationContext", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", "ValidationContext", "(System.Object,System.Collections.Generic.IDictionary)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "ValidationContext", "ValidationContext", "(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", "get_ObjectInstance", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationContext", "get_ObjectType", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "ValidationException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "ValidationException", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "ValidationException", "ValidationException", "(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "ValidationException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "get_ValidationAttribute", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "get_ValidationResult", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationException", "get_Value", "()", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "ValidationResult", "ValidationResult", "(System.ComponentModel.DataAnnotations.ValidationResult)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationResult", "ValidationResult", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel.DataAnnotations", "ValidationResult", "ValidationResult", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "ValidationResult", "get_MemberNames", "()", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "Validator", "TryValidateObject", "(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection)", "summary", "df-generated"] - ["System.ComponentModel.DataAnnotations", "Validator", "TryValidateObject", "(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection,System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml index d17d977c261..4eab8be0f98 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.Design.Serialization.model.yml @@ -10,9 +10,20 @@ extensions: - ["System.ComponentModel.Design.Serialization", "ContextStack", False, "get_Current", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Design.Serialization", "ContextStack", False, "get_Item", "(System.Int32)", "", "Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Design.Serialization", "ContextStack", False, "get_Item", "(System.Type)", "", "Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "DefaultSerializationProviderAttribute", False, "DefaultSerializationProviderAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute.ProviderTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "DesignerSerializerAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "DesignerSerializerAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "DesignerSerializerAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName]", "value", "dfc-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName]", "Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId]", "taint", "dfc-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", False, "get_TypeId", "()", "", "Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", False, "InstanceDescriptor", "(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.InstanceDescriptor.MemberInfo]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "MemberRelationship", False, "MemberRelationship", "(System.Object,System.ComponentModel.MemberDescriptor)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Owner]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "MemberRelationship", False, "MemberRelationship", "(System.Object,System.ComponentModel.MemberDescriptor)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Member]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "ResolveNameEventArgs", False, "ResolveNameEventArgs", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.ResolveNameEventArgs.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", False, "RootDesignerSerializerAttribute", "(System.String,System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", False, "RootDesignerSerializerAttribute", "(System.String,System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerBaseTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", False, "RootDesignerSerializerAttribute", "(System.String,System.Type,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -28,15 +39,12 @@ extensions: - ["System.ComponentModel.Design.Serialization", "ComponentSerializationService", "SerializeAbsolute", "(System.ComponentModel.Design.Serialization.SerializationStore,System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "ComponentSerializationService", "SerializeMember", "(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "ComponentSerializationService", "SerializeMemberAbsolute", "(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor)", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "DefaultSerializationProviderAttribute", "DefaultSerializationProviderAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DefaultSerializationProviderAttribute", "DefaultSerializationProviderAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DefaultSerializationProviderAttribute", "get_ProviderTypeName", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerLoader", "BeginLoad", "(System.ComponentModel.Design.Serialization.IDesignerLoaderHost)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerLoader", "Dispose", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerLoader", "Flush", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerLoader", "get_Loading", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", "DesignerSerializerAttribute", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", "DesignerSerializerAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", "DesignerSerializerAttribute", "(System.Type,System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", "get_SerializerBaseTypeName", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "DesignerSerializerAttribute", "get_SerializerTypeName", "()", "summary", "df-generated"] @@ -67,7 +75,6 @@ extensions: - ["System.ComponentModel.Design.Serialization", "INameCreationService", "IsValidName", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "INameCreationService", "ValidateName", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", "InstanceDescriptor", "(System.Reflection.MemberInfo,System.Collections.ICollection)", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", "InstanceDescriptor", "(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", "Invoke", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", "get_Arguments", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "InstanceDescriptor", "get_IsComplete", "()", "summary", "df-generated"] @@ -75,7 +82,6 @@ extensions: - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "Equals", "(System.ComponentModel.Design.Serialization.MemberRelationship)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "MemberRelationship", "(System.Object,System.ComponentModel.MemberDescriptor)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "get_IsEmpty", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "get_Member", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationship", "get_Owner", "()", "summary", "df-generated"] @@ -88,10 +94,7 @@ extensions: - ["System.ComponentModel.Design.Serialization", "MemberRelationshipService", "get_Item", "(System.Object,System.ComponentModel.MemberDescriptor)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationshipService", "set_Item", "(System.ComponentModel.Design.Serialization.MemberRelationship,System.ComponentModel.Design.Serialization.MemberRelationship)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "MemberRelationshipService", "set_Item", "(System.Object,System.ComponentModel.MemberDescriptor,System.ComponentModel.Design.Serialization.MemberRelationship)", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "ResolveNameEventArgs", "ResolveNameEventArgs", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "ResolveNameEventArgs", "get_Name", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", "RootDesignerSerializerAttribute", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] - - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", "RootDesignerSerializerAttribute", "(System.String,System.Type,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", "RootDesignerSerializerAttribute", "(System.Type,System.Type,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", "get_Reloadable", "()", "summary", "df-generated"] - ["System.ComponentModel.Design.Serialization", "RootDesignerSerializerAttribute", "get_SerializerBaseTypeName", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml index 5e3e81843e1..249254e0446 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.Design.model.yml @@ -4,25 +4,36 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.ComponentModel.Design", "ActiveDesignerEventArgs", False, "ActiveDesignerEventArgs", "(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.OldDesigner]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ActiveDesignerEventArgs", False, "ActiveDesignerEventArgs", "(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.NewDesigner]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "CommandID", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.Design.CommandID.Guid]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangedEventArgs", False, "ComponentChangedEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Component]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangedEventArgs", False, "ComponentChangedEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Member]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangedEventArgs", False, "ComponentChangedEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.OldValue]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangedEventArgs", False, "ComponentChangedEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object)", "", "Argument[3]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.NewValue]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangingEventArgs", False, "ComponentChangingEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Component]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentChangingEventArgs", False, "ComponentChangingEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Member]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "ComponentRenameEventArgs", False, "ComponentRenameEventArgs", "(System.Object,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.ComponentRenameEventArgs.Component]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerCollection", False, "DesignerCollection", "(System.Collections.IList)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerCollection", True, "get_Item", "(System.Int32)", "", "Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "DesignerEventArgs", False, "DesignerEventArgs", "(System.ComponentModel.Design.IDesignerHost)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.DesignerEventArgs.Designer]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerOptionService+DesignerOptionCollection", False, "get_Properties", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.ComponentModel.Design", "DesignerOptionService", False, "CreateOptionCollection", "(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - - ["System.ComponentModel.Design", "DesignerOptionService", False, "CreateOptionCollection", "(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel.Design", "DesignerOptionService", False, "CreateOptionCollection", "(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object)", "", "Argument[0]", "ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Parent]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "DesignerOptionService", False, "CreateOptionCollection", "(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object)", "", "Argument[1]", "ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Name]", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "DesignerTransaction", False, "DesignerTransaction", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.DesignerTransaction.Description]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerb", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.Design.DesignerVerb.Text]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerb", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.Design.MenuCommand.CommandID].Property[System.ComponentModel.Design.CommandID.Guid]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerb", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.Design.MenuCommand.Properties].Element", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerb", False, "get_Text", "()", "", "Argument[this].Property[System.ComponentModel.Design.MenuCommand.Properties].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerbCollection", False, "DesignerVerbCollection", "(System.ComponentModel.Design.DesignerVerb[])", "", "Argument[0].Element", "Argument[this].Element", "value", "dfc-generated"] - ["System.ComponentModel.Design", "DesignerVerbCollection", False, "DesignerVerbCollection", "(System.ComponentModel.Design.DesignerVerb[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.ComponentModel.Design", "HelpKeywordAttribute", False, "HelpKeywordAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.Design.HelpKeywordAttribute.HelpKeyword]", "value", "dfc-generated"] - ["System.ComponentModel.Design", "MenuCommand", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.Design.MenuCommand.CommandID].Property[System.ComponentModel.Design.CommandID.Guid]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel.Design", "ServiceContainer", False, "ServiceContainer", "(System.IServiceProvider)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.ComponentModel.Design", "ActiveDesignerEventArgs", "ActiveDesignerEventArgs", "(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost)", "summary", "df-generated"] - ["System.ComponentModel.Design", "ActiveDesignerEventArgs", "get_NewDesigner", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ActiveDesignerEventArgs", "get_OldDesigner", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "CheckoutException", "CheckoutException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] @@ -34,24 +45,20 @@ extensions: - ["System.ComponentModel.Design", "CommandID", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "CommandID", "get_Guid", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "CommandID", "get_ID", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "ComponentChangedEventArgs", "ComponentChangedEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangedEventArgs", "get_Component", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangedEventArgs", "get_Member", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangedEventArgs", "get_NewValue", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangedEventArgs", "get_OldValue", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "ComponentChangingEventArgs", "ComponentChangingEventArgs", "(System.Object,System.ComponentModel.MemberDescriptor)", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangingEventArgs", "get_Component", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentChangingEventArgs", "get_Member", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentEventArgs", "ComponentEventArgs", "(System.ComponentModel.IComponent)", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentEventArgs", "get_Component", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "ComponentRenameEventArgs", "ComponentRenameEventArgs", "(System.Object,System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentRenameEventArgs", "get_Component", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentRenameEventArgs", "get_NewName", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "ComponentRenameEventArgs", "get_OldName", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerCollection", "DesignerCollection", "(System.ComponentModel.Design.IDesignerHost[])", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerCollection", "get_Count", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerCollection", "get_IsSynchronized", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "DesignerEventArgs", "DesignerEventArgs", "(System.ComponentModel.Design.IDesignerHost)", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerEventArgs", "get_Designer", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerOptionService+DesignerOptionCollection", "Contains", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerOptionService+DesignerOptionCollection", "IndexOf", "(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection)", "summary", "df-generated"] @@ -72,7 +79,6 @@ extensions: - ["System.ComponentModel.Design", "DesignerOptionService", "get_Options", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerTransaction", "Cancel", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerTransaction", "Commit", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "DesignerTransaction", "DesignerTransaction", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerTransaction", "Dispose", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerTransaction", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel.Design", "DesignerTransaction", "OnCancel", "()", "summary", "df-generated"] @@ -92,7 +98,6 @@ extensions: - ["System.ComponentModel.Design", "DesigntimeLicenseContextSerializer", "Serialize", "(System.IO.Stream,System.String,System.ComponentModel.Design.DesigntimeLicenseContext)", "summary", "df-generated"] - ["System.ComponentModel.Design", "HelpKeywordAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel.Design", "HelpKeywordAttribute", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel.Design", "HelpKeywordAttribute", "HelpKeywordAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel.Design", "HelpKeywordAttribute", "HelpKeywordAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel.Design", "HelpKeywordAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] - ["System.ComponentModel.Design", "HelpKeywordAttribute", "get_HelpKeyword", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ComponentModel.model.yml b/csharp/ql/lib/ext/generated/System.ComponentModel.model.yml index 1727ca01edf..59baa48911d 100644 --- a/csharp/ql/lib/ext/generated/System.ComponentModel.model.yml +++ b/csharp/ql/lib/ext/generated/System.ComponentModel.model.yml @@ -4,18 +4,32 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.ComponentModel", "AddingNewEventArgs", False, "AddingNewEventArgs", "(System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.AddingNewEventArgs.NewObject]", "value", "dfc-generated"] + - ["System.ComponentModel", "AmbientValueAttribute", False, "AmbientValueAttribute", "(System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value]", "value", "dfc-generated"] + - ["System.ComponentModel", "AmbientValueAttribute", False, "AmbientValueAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value]", "value", "dfc-generated"] + - ["System.ComponentModel", "AmbientValueAttribute", False, "AmbientValueAttribute", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value]", "value", "dfc-generated"] + - ["System.ComponentModel", "AmbientValueAttribute", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "AsyncCompletedEventArgs", False, "AsyncCompletedEventArgs", "(System.Exception,System.Boolean,System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.Error]", "value", "dfc-generated"] + - ["System.ComponentModel", "AsyncCompletedEventArgs", False, "AsyncCompletedEventArgs", "(System.Exception,System.Boolean,System.Object)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.UserState]", "value", "dfc-generated"] - ["System.ComponentModel", "AsyncOperation", False, "get_SynchronizationContext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "AsyncOperationManager", False, "CreateOperation", "(System.Object)", "", "Argument[0]", "ReturnValue.Property[System.ComponentModel.AsyncOperation.UserSuppliedState]", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", False, "AttributeCollection", "(System.Attribute[])", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes]", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", True, "get_Attributes", "()", "", "Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", True, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.ComponentModel.AttributeCollection.Attributes].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", True, "get_Item", "(System.Int32)", "", "Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", True, "get_Item", "(System.Type)", "", "Argument[this].Property[System.ComponentModel.AttributeCollection.Attributes].Element", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "AttributeCollection", True, "get_Item", "(System.Type)", "", "Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "AttributeProviderAttribute", False, "AttributeProviderAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "AttributeProviderAttribute", False, "AttributeProviderAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "AttributeProviderAttribute", False, "AttributeProviderAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.PropertyName]", "value", "dfc-generated"] - ["System.ComponentModel", "BindingList", False, "get_SortProperty", "()", "", "Argument[this].Property[System.ComponentModel.BindingList`1.SortPropertyCore]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "BindingList", True, "OnAddingNew", "(System.ComponentModel.AddingNewEventArgs)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ComponentModel", "BindingList", True, "OnListChanged", "(System.ComponentModel.ListChangedEventArgs)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ComponentModel", "CategoryAttribute", False, "CategoryAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.CategoryAttribute._categoryValue]", "value", "dfc-generated"] - ["System.ComponentModel", "CategoryAttribute", False, "get_Category", "()", "", "Argument[this].SyntheticField[System.ComponentModel.CategoryAttribute._categoryValue]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", False, "ComplexBindingPropertiesAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource]", "value", "dfc-generated"] + - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", False, "ComplexBindingPropertiesAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource]", "value", "dfc-generated"] + - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", False, "ComplexBindingPropertiesAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataMember]", "value", "dfc-generated"] - ["System.ComponentModel", "Component", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "Component", False, "get_Container", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ComponentCollection", False, "ComponentCollection", "(System.ComponentModel.IComponent[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element", "value", "dfc-generated"] @@ -25,7 +39,11 @@ extensions: - ["System.ComponentModel", "Container", True, "GetService", "(System.Type)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "ContainerFilterService", True, "FilterComponents", "(System.ComponentModel.ComponentCollection)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "CultureInfoConverter", True, "GetCultureName", "(System.Globalization.CultureInfo)", "", "Argument[0].Property[System.Globalization.CultureInfo.Name]", "ReturnValue", "value", "dfc-generated"] - - ["System.ComponentModel", "CustomTypeDescriptor", False, "CustomTypeDescriptor", "(System.ComponentModel.ICustomTypeDescriptor)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.ComponentModel", "CustomTypeDescriptor", False, "CustomTypeDescriptor", "(System.ComponentModel.ICustomTypeDescriptor)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent]", "value", "dfc-generated"] + - ["System.ComponentModel", "CustomTypeDescriptor", True, "get_RequireRegisteredTypes", "()", "", "Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent].Property[System.ComponentModel.ICustomTypeDescriptor.RequireRegisteredTypes]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "DefaultBindingPropertyAttribute", False, "DefaultBindingPropertyAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DefaultBindingPropertyAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel", "DefaultEventAttribute", False, "DefaultEventAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DefaultEventAttribute.Name]", "value", "dfc-generated"] + - ["System.ComponentModel", "DefaultPropertyAttribute", False, "DefaultPropertyAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DefaultPropertyAttribute.Name]", "value", "dfc-generated"] - ["System.ComponentModel", "DefaultValueAttribute", False, "DefaultValueAttribute", "(System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value]", "value", "dfc-generated"] - ["System.ComponentModel", "DefaultValueAttribute", False, "DefaultValueAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value]", "value", "dfc-generated"] - ["System.ComponentModel", "DefaultValueAttribute", False, "DefaultValueAttribute", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value]", "value", "dfc-generated"] @@ -33,11 +51,21 @@ extensions: - ["System.ComponentModel", "DefaultValueAttribute", True, "get_Value", "()", "", "Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "DescriptionAttribute", False, "DescriptionAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue]", "value", "dfc-generated"] - ["System.ComponentModel", "DescriptionAttribute", True, "get_Description", "()", "", "Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "DesignerAttribute", False, "DesignerAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "DesignerAttribute", False, "DesignerAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "DesignerAttribute", False, "DesignerAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "DesignerAttribute", False, "DesignerAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName]", "value", "dfc-generated"] - ["System.ComponentModel", "DesignerAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName]", "Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId]", "taint", "dfc-generated"] - ["System.ComponentModel", "DesignerAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel", "DesignerAttribute", False, "get_TypeId", "()", "", "Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "DesignerCategoryAttribute", False, "DesignerCategoryAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category]", "value", "dfc-generated"] - ["System.ComponentModel", "DesignerCategoryAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel", "DisplayNameAttribute", False, "DisplayNameAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue]", "value", "dfc-generated"] - ["System.ComponentModel", "DisplayNameAttribute", True, "get_DisplayName", "()", "", "Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "DoWorkEventArgs", False, "DoWorkEventArgs", "(System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.DoWorkEventArgs.Argument]", "value", "dfc-generated"] + - ["System.ComponentModel", "EditorAttribute", False, "EditorAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "EditorAttribute", False, "EditorAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "EditorAttribute", False, "EditorAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName]", "value", "dfc-generated"] - ["System.ComponentModel", "EditorAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName]", "Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId]", "taint", "dfc-generated"] - ["System.ComponentModel", "EditorAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel", "EditorAttribute", False, "get_TypeId", "()", "", "Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId]", "ReturnValue", "value", "dfc-generated"] @@ -63,6 +91,7 @@ extensions: - ["System.ComponentModel", "IContainer", True, "get_Components", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", True, "GetProperties", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", True, "GetProperties", "(System.Attribute[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "ICustomTypeDescriptor", True, "GetPropertiesFromRegisteredType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", True, "GetPropertyOwner", "(System.ComponentModel.PropertyDescriptor)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "IListSource", True, "GetList", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "INestedSite", True, "get_FullName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -70,6 +99,7 @@ extensions: - ["System.ComponentModel", "ITypedList", True, "GetItemProperties", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ITypedList", True, "GetListName", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "ITypedList", True, "GetListName", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "InitializationEventAttribute", False, "InitializationEventAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.InitializationEventAttribute.EventName]", "value", "dfc-generated"] - ["System.ComponentModel", "InstallerTypeAttribute", False, "InstallerTypeAttribute", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ComponentModel", "LicenseContext", True, "GetSavedLicenseKey", "(System.Type,System.Reflection.Assembly)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "LicenseContext", True, "SetSavedLicenseKey", "(System.Type,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -79,9 +109,18 @@ extensions: - ["System.ComponentModel", "LicenseProvider", True, "GetLicense", "(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "LicenseProviderAttribute", False, "LicenseProviderAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName]", "value", "dfc-generated"] - ["System.ComponentModel", "LicenseProviderAttribute", False, "get_TypeId", "()", "", "Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel", "ListChangedEventArgs", False, "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor]", "value", "dfc-generated"] + - ["System.ComponentModel", "ListChangedEventArgs", False, "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor]", "value", "dfc-generated"] + - ["System.ComponentModel", "ListSortDescription", False, "ListSortDescription", "(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ListSortDescription.PropertyDescriptor]", "value", "dfc-generated"] - ["System.ComponentModel", "ListSortDescriptionCollection", False, "ListSortDescriptionCollection", "(System.ComponentModel.ListSortDescription[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] + - ["System.ComponentModel", "LookupBindingPropertiesAttribute", False, "LookupBindingPropertiesAttribute", "(System.String,System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DataSource]", "value", "dfc-generated"] + - ["System.ComponentModel", "LookupBindingPropertiesAttribute", False, "LookupBindingPropertiesAttribute", "(System.String,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DisplayMember]", "value", "dfc-generated"] + - ["System.ComponentModel", "LookupBindingPropertiesAttribute", False, "LookupBindingPropertiesAttribute", "(System.String,System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.ValueMember]", "value", "dfc-generated"] + - ["System.ComponentModel", "LookupBindingPropertiesAttribute", False, "LookupBindingPropertiesAttribute", "(System.String,System.String,System.String,System.String)", "", "Argument[3]", "Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.LookupMember]", "value", "dfc-generated"] - ["System.ComponentModel", "MarshalByValueComponent", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "MarshalByValueComponent", True, "get_Container", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "MaskedTextProvider", False, "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.MaskedTextProvider.Mask]", "value", "dfc-generated"] + - ["System.ComponentModel", "MaskedTextProvider", False, "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.MaskedTextProvider.Culture]", "value", "dfc-generated"] - ["System.ComponentModel", "MaskedTextProvider", False, "ToDisplayString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", False, "ToString", "(System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -103,6 +142,7 @@ extensions: - ["System.ComponentModel", "MemberDescriptor", True, "get_Attributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "MemberDescriptor", True, "get_DisplayName", "()", "", "Argument[this].SyntheticField[System.ComponentModel.MemberDescriptor._displayName]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "MemberDescriptor", True, "get_Name", "()", "", "Argument[this].SyntheticField[System.ComponentModel.MemberDescriptor._name]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "NestedContainer", False, "NestedContainer", "(System.ComponentModel.IComponent)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.NestedContainer.Owner]", "value", "dfc-generated"] - ["System.ComponentModel", "NestedContainer", True, "CreateSite", "(System.ComponentModel.IComponent,System.String)", "", "Argument[1]", "ReturnValue.SyntheticField[System.ComponentModel.NestedContainer+Site._name]", "value", "dfc-generated"] - ["System.ComponentModel", "NestedContainer", True, "CreateSite", "(System.ComponentModel.IComponent,System.String)", "", "Argument[this]", "ReturnValue.SyntheticField[System.ComponentModel.NestedContainer+Site.Container]", "value", "dfc-generated"] - ["System.ComponentModel", "NullableConverter", True, "ConvertFrom", "(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)", "", "Argument[2].Property[System.Uri.OriginalString]", "ReturnValue", "taint", "dfc-generated"] @@ -116,6 +156,7 @@ extensions: - ["System.ComponentModel", "PropertyDescriptor", True, "SetValue", "(System.Object,System.Object)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptor", True, "SetValue", "(System.Object,System.Object)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptor", True, "get_Converter", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "PropertyDescriptor", True, "get_ConverterFromRegisteredType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptorCollection", True, "Sort", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptorCollection", True, "Sort", "(System.Collections.IComparer)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptorCollection", True, "Sort", "(System.Collections.IComparer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -125,17 +166,24 @@ extensions: - ["System.ComponentModel", "PropertyDescriptorCollection", True, "Sort", "(System.String[],System.Collections.IComparer)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "PropertyDescriptorCollection", True, "Sort", "(System.String[],System.Collections.IComparer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "PropertyTabAttribute", False, "InitializeArrays", "(System.String[],System.ComponentModel.PropertyTabScope[])", "", "Argument[0].Element", "Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element", "value", "dfc-generated"] + - ["System.ComponentModel", "PropertyTabAttribute", False, "InitializeArrays", "(System.String[],System.ComponentModel.PropertyTabScope[])", "", "Argument[1].Element", "Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element", "value", "dfc-generated"] - ["System.ComponentModel", "PropertyTabAttribute", False, "InitializeArrays", "(System.Type[],System.ComponentModel.PropertyTabScope[])", "", "Argument[0].Element", "Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses].Element", "value", "dfc-generated"] + - ["System.ComponentModel", "PropertyTabAttribute", False, "InitializeArrays", "(System.Type[],System.ComponentModel.PropertyTabScope[])", "", "Argument[1].Element", "Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element", "value", "dfc-generated"] - ["System.ComponentModel", "PropertyTabAttribute", False, "PropertyTabAttribute", "(System.String,System.ComponentModel.PropertyTabScope)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element", "value", "dfc-generated"] - ["System.ComponentModel", "PropertyTabAttribute", False, "get_TabClassNames", "()", "", "Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.ComponentModel", "PropertyTabAttribute", False, "get_TabClasses", "()", "", "Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "ProvidePropertyAttribute", False, "ProvidePropertyAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName]", "value", "dfc-generated"] + - ["System.ComponentModel", "ProvidePropertyAttribute", False, "ProvidePropertyAttribute", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.ReceiverTypeName]", "value", "dfc-generated"] + - ["System.ComponentModel", "ProvidePropertyAttribute", False, "ProvidePropertyAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName]", "value", "dfc-generated"] - ["System.ComponentModel", "ProvidePropertyAttribute", False, "get_TypeId", "()", "", "Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel", "RefreshEventArgs", False, "RefreshEventArgs", "(System.Object)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.RefreshEventArgs.ComponentChanged]", "value", "dfc-generated"] - ["System.ComponentModel", "RunWorkerCompletedEventArgs", False, "RunWorkerCompletedEventArgs", "(System.Object,System.Exception,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result]", "value", "dfc-generated"] - ["System.ComponentModel", "RunWorkerCompletedEventArgs", False, "get_Result", "()", "", "Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "RunWorkerCompletedEventArgs", False, "get_UserState", "()", "", "Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.UserState]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "ToolboxItemAttribute", False, "ToolboxItemAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName]", "value", "dfc-generated"] - ["System.ComponentModel", "ToolboxItemAttribute", False, "get_ToolboxItemTypeName", "()", "", "Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "ToolboxItemFilterAttribute", False, "ToString", "()", "", "Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString]", "ReturnValue", "taint", "dfc-generated"] + - ["System.ComponentModel", "ToolboxItemFilterAttribute", False, "ToolboxItemFilterAttribute", "(System.String,System.ComponentModel.ToolboxItemFilterType)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString]", "value", "dfc-generated"] - ["System.ComponentModel", "TypeConverter+StandardValuesCollection", False, "CopyTo", "(System.Array,System.Int32)", "", "Argument[this].SyntheticField[System.ComponentModel.TypeConverter+StandardValuesCollection._values].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.ComponentModel", "TypeConverter+StandardValuesCollection", False, "GetEnumerator", "()", "", "Argument[this].SyntheticField[System.ComponentModel.TypeConverter+StandardValuesCollection._values].Element", "ReturnValue.Property[System.Collections.IEnumerator.Current]", "value", "dfc-generated"] - ["System.ComponentModel", "TypeConverter+StandardValuesCollection", False, "StandardValuesCollection", "(System.Collections.ICollection)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.TypeConverter+StandardValuesCollection._values]", "value", "dfc-generated"] @@ -169,15 +217,20 @@ extensions: - ["System.ComponentModel", "TypeConverter", True, "ConvertTo", "(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)", "", "Argument[2]", "ReturnValue", "taint", "dfc-generated"] - ["System.ComponentModel", "TypeConverter", True, "GetProperties", "(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeConverter", True, "GetStandardValues", "(System.ComponentModel.ITypeDescriptorContext)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "TypeConverterAttribute", False, "TypeConverterAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.TypeConverterAttribute.ConverterTypeName]", "value", "dfc-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", False, "GetTypeDescriptor", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", False, "GetTypeDescriptor", "(System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", False, "GetTypeDescriptor", "(System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.ComponentModel", "TypeDescriptionProvider", False, "TypeDescriptionProvider", "(System.ComponentModel.TypeDescriptionProvider)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", False, "TypeDescriptionProvider", "(System.ComponentModel.TypeDescriptionProvider)", "", "Argument[0]", "Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent]", "value", "dfc-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetExtendedTypeDescriptor", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetExtendedTypeDescriptor", "(System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetExtendedTypeDescriptorFromRegisteredType", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetExtendedTypeDescriptorFromRegisteredType", "(System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetFullComponentName", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetTypeDescriptor", "(System.Type,System.Object)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", True, "GetTypeDescriptor", "(System.Type,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", True, "get_RequireRegisteredTypes", "()", "", "Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent].Property[System.ComponentModel.TypeDescriptionProvider.RequireRegisteredTypes]", "ReturnValue", "value", "dfc-generated"] + - ["System.ComponentModel", "TypeDescriptionProviderAttribute", False, "TypeDescriptionProviderAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.ComponentModel.TypeDescriptionProviderAttribute.TypeName]", "value", "dfc-generated"] - ["System.ComponentModel", "TypeDescriptor", False, "AddAttributes", "(System.Object,System.Attribute[])", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", False, "AddAttributes", "(System.Type,System.Attribute[])", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", False, "CreateEvent", "(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[])", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] @@ -186,11 +239,12 @@ extensions: - ["System.ComponentModel", "TypeDescriptor", False, "GetAssociation", "(System.Type,System.Object)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.ComponentModel", "TypeDescriptor", False, "GetFullComponentName", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ComponentModel", "TypeListConverter", False, "TypeListConverter", "(System.Type[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] + - ["System.ComponentModel", "WarningException", False, "WarningException", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ComponentModel.WarningException.HelpUrl]", "value", "dfc-generated"] + - ["System.ComponentModel", "WarningException", False, "WarningException", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ComponentModel.WarningException.HelpTopic]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.ComponentModel", "AddingNewEventArgs", "AddingNewEventArgs", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Byte)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Char)", "summary", "df-generated"] @@ -198,15 +252,10 @@ extensions: - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Int16)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Int32)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Int64)", "summary", "df-generated"] - - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Single)", "summary", "df-generated"] - - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "AmbientValueAttribute", "AmbientValueAttribute", "(System.Type,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AmbientValueAttribute", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel", "AmbientValueAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.ComponentModel", "ArrayConverter", "GetPropertiesSupported", "(System.ComponentModel.ITypeDescriptorContext)", "summary", "df-generated"] - - ["System.ComponentModel", "AsyncCompletedEventArgs", "AsyncCompletedEventArgs", "(System.Exception,System.Boolean,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AsyncCompletedEventArgs", "RaiseExceptionIfNecessary", "()", "summary", "df-generated"] - ["System.ComponentModel", "AsyncCompletedEventArgs", "get_Cancelled", "()", "summary", "df-generated"] - ["System.ComponentModel", "AsyncCompletedEventArgs", "get_Error", "()", "summary", "df-generated"] @@ -215,7 +264,6 @@ extensions: - ["System.ComponentModel", "AsyncOperation", "Post", "(System.Threading.SendOrPostCallback,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AsyncOperation", "PostOperationCompleted", "(System.Threading.SendOrPostCallback,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AsyncOperation", "get_UserSuppliedState", "()", "summary", "df-generated"] - - ["System.ComponentModel", "AsyncOperationManager", "CreateOperation", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "AttributeCollection", "Contains", "(System.Attribute)", "summary", "df-generated"] - ["System.ComponentModel", "AttributeCollection", "Contains", "(System.Attribute[])", "summary", "df-generated"] - ["System.ComponentModel", "AttributeCollection", "FromExisting", "(System.ComponentModel.AttributeCollection,System.Attribute[])", "summary", "df-generated"] @@ -224,8 +272,6 @@ extensions: - ["System.ComponentModel", "AttributeCollection", "Matches", "(System.Attribute[])", "summary", "df-generated"] - ["System.ComponentModel", "AttributeCollection", "get_Count", "()", "summary", "df-generated"] - ["System.ComponentModel", "AttributeCollection", "get_IsSynchronized", "()", "summary", "df-generated"] - - ["System.ComponentModel", "AttributeProviderAttribute", "AttributeProviderAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "AttributeProviderAttribute", "AttributeProviderAttribute", "(System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "AttributeProviderAttribute", "AttributeProviderAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "AttributeProviderAttribute", "get_PropertyName", "()", "summary", "df-generated"] - ["System.ComponentModel", "AttributeProviderAttribute", "get_TypeName", "()", "summary", "df-generated"] @@ -324,8 +370,6 @@ extensions: - ["System.ComponentModel", "CollectionChangeEventArgs", "CollectionChangeEventArgs", "(System.ComponentModel.CollectionChangeAction,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "CollectionChangeEventArgs", "get_Action", "()", "summary", "df-generated"] - ["System.ComponentModel", "CollectionChangeEventArgs", "get_Element", "()", "summary", "df-generated"] - - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", "ComplexBindingPropertiesAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", "ComplexBindingPropertiesAttribute", "(System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "ComplexBindingPropertiesAttribute", "get_DataMember", "()", "summary", "df-generated"] @@ -344,6 +388,7 @@ extensions: - ["System.ComponentModel", "ComponentEditor", "EditComponent", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ComponentResourceManager", "ApplyResources", "(System.Object,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "ComponentResourceManager", "ApplyResources", "(System.Object,System.String,System.Globalization.CultureInfo)", "summary", "df-generated"] + - ["System.ComponentModel", "ComponentResourceManager", "ApplyResourcesToRegisteredType", "(System.Object,System.String,System.Globalization.CultureInfo)", "summary", "df-generated"] - ["System.ComponentModel", "ComponentResourceManager", "ComponentResourceManager", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "Container", "Dispose", "()", "summary", "df-generated"] - ["System.ComponentModel", "Container", "Dispose", "(System.Boolean)", "summary", "df-generated"] @@ -358,11 +403,13 @@ extensions: - ["System.ComponentModel", "CustomTypeDescriptor", "GetClassName", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetComponentName", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetConverter", "()", "summary", "df-generated"] + - ["System.ComponentModel", "CustomTypeDescriptor", "GetConverterFromRegisteredType", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetDefaultEvent", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetDefaultProperty", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetEditor", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetEvents", "()", "summary", "df-generated"] - ["System.ComponentModel", "CustomTypeDescriptor", "GetEvents", "(System.Attribute[])", "summary", "df-generated"] + - ["System.ComponentModel", "CustomTypeDescriptor", "GetEventsFromRegisteredType", "()", "summary", "df-generated"] - ["System.ComponentModel", "DataErrorsChangedEventArgs", "DataErrorsChangedEventArgs", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DataErrorsChangedEventArgs", "get_PropertyName", "()", "summary", "df-generated"] - ["System.ComponentModel", "DataObjectAttribute", "DataObjectAttribute", "(System.Boolean)", "summary", "df-generated"] @@ -394,15 +441,12 @@ extensions: - ["System.ComponentModel", "DateTimeOffsetConverter", "CanConvertFrom", "(System.ComponentModel.ITypeDescriptorContext,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "DateTimeOffsetConverter", "CanConvertTo", "(System.ComponentModel.ITypeDescriptorContext,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "DecimalConverter", "CanConvertTo", "(System.ComponentModel.ITypeDescriptorContext,System.Type)", "summary", "df-generated"] - - ["System.ComponentModel", "DefaultBindingPropertyAttribute", "DefaultBindingPropertyAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultBindingPropertyAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultBindingPropertyAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DefaultBindingPropertyAttribute", "get_Name", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DefaultEventAttribute", "DefaultEventAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultEventAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultEventAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DefaultEventAttribute", "get_Name", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DefaultPropertyAttribute", "DefaultPropertyAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultPropertyAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DefaultPropertyAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DefaultPropertyAttribute", "get_Name", "()", "summary", "df-generated"] @@ -433,16 +477,12 @@ extensions: - ["System.ComponentModel", "DesignTimeVisibleAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignTimeVisibleAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignTimeVisibleAttribute", "get_Visible", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DesignerAttribute", "DesignerAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "DesignerAttribute", "DesignerAttribute", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "DesignerAttribute", "DesignerAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "DesignerAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "DesignerAttribute", "(System.Type,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "get_DesignerBaseTypeName", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignerAttribute", "get_DesignerTypeName", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DesignerCategoryAttribute", "DesignerCategoryAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerCategoryAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DesignerCategoryAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignerCategoryAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] @@ -452,14 +492,10 @@ extensions: - ["System.ComponentModel", "DesignerSerializationVisibilityAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignerSerializationVisibilityAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] - ["System.ComponentModel", "DesignerSerializationVisibilityAttribute", "get_Visibility", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DisplayNameAttribute", "DisplayNameAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "DisplayNameAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DisplayNameAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "DisplayNameAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] - - ["System.ComponentModel", "DoWorkEventArgs", "DoWorkEventArgs", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "DoWorkEventArgs", "get_Argument", "()", "summary", "df-generated"] - - ["System.ComponentModel", "EditorAttribute", "EditorAttribute", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "EditorAttribute", "EditorAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "EditorAttribute", "EditorAttribute", "(System.Type,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "EditorAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "EditorAttribute", "GetHashCode", "()", "summary", "df-generated"] @@ -550,11 +586,14 @@ extensions: - ["System.ComponentModel", "ICustomTypeDescriptor", "GetClassName", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetComponentName", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetConverter", "()", "summary", "df-generated"] + - ["System.ComponentModel", "ICustomTypeDescriptor", "GetConverterFromRegisteredType", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetDefaultEvent", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetDefaultProperty", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetEditor", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetEvents", "()", "summary", "df-generated"] - ["System.ComponentModel", "ICustomTypeDescriptor", "GetEvents", "(System.Attribute[])", "summary", "df-generated"] + - ["System.ComponentModel", "ICustomTypeDescriptor", "GetEventsFromRegisteredType", "()", "summary", "df-generated"] + - ["System.ComponentModel", "ICustomTypeDescriptor", "get_RequireRegisteredTypes", "()", "summary", "df-generated"] - ["System.ComponentModel", "IDataErrorInfo", "get_Error", "()", "summary", "df-generated"] - ["System.ComponentModel", "IDataErrorInfo", "get_Item", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "IEditableObject", "BeginEdit", "()", "summary", "df-generated"] @@ -603,7 +642,6 @@ extensions: - ["System.ComponentModel", "InheritanceAttribute", "IsDefaultAttribute", "()", "summary", "df-generated"] - ["System.ComponentModel", "InheritanceAttribute", "ToString", "()", "summary", "df-generated"] - ["System.ComponentModel", "InheritanceAttribute", "get_InheritanceLevel", "()", "summary", "df-generated"] - - ["System.ComponentModel", "InitializationEventAttribute", "InitializationEventAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "InitializationEventAttribute", "get_EventName", "()", "summary", "df-generated"] - ["System.ComponentModel", "InstallerTypeAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "InstallerTypeAttribute", "GetHashCode", "()", "summary", "df-generated"] @@ -647,15 +685,12 @@ extensions: - ["System.ComponentModel", "ListBindableAttribute", "ListBindableAttribute", "(System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "ListBindableAttribute", "ListBindableAttribute", "(System.ComponentModel.BindableSupport)", "summary", "df-generated"] - ["System.ComponentModel", "ListBindableAttribute", "get_ListBindable", "()", "summary", "df-generated"] - - ["System.ComponentModel", "ListChangedEventArgs", "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor)", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.Int32)", "summary", "df-generated"] - - ["System.ComponentModel", "ListChangedEventArgs", "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor)", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "ListChangedEventArgs", "(System.ComponentModel.ListChangedType,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "get_ListChangedType", "()", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "get_NewIndex", "()", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "get_OldIndex", "()", "summary", "df-generated"] - ["System.ComponentModel", "ListChangedEventArgs", "get_PropertyDescriptor", "()", "summary", "df-generated"] - - ["System.ComponentModel", "ListSortDescription", "ListSortDescription", "(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)", "summary", "df-generated"] - ["System.ComponentModel", "ListSortDescriptionCollection", "Contains", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ListSortDescriptionCollection", "IndexOf", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ListSortDescriptionCollection", "Remove", "(System.Object)", "summary", "df-generated"] @@ -671,7 +706,6 @@ extensions: - ["System.ComponentModel", "LocalizableAttribute", "get_IsLocalizable", "()", "summary", "df-generated"] - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "LookupBindingPropertiesAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "get_DataSource", "()", "summary", "df-generated"] - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "get_DisplayMember", "()", "summary", "df-generated"] - ["System.ComponentModel", "LookupBindingPropertiesAttribute", "get_LookupMember", "()", "summary", "df-generated"] @@ -711,7 +745,6 @@ extensions: - ["System.ComponentModel", "MaskedTextProvider", "MaskedTextProvider", "(System.String,System.Char,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo)", "summary", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo,System.Boolean)", "summary", "df-generated"] - - ["System.ComponentModel", "MaskedTextProvider", "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", "MaskedTextProvider", "(System.String,System.Globalization.CultureInfo,System.Char,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", "Remove", "()", "summary", "df-generated"] - ["System.ComponentModel", "MaskedTextProvider", "Remove", "(System.Int32,System.ComponentModel.MaskedTextResultHint)", "summary", "df-generated"] @@ -762,7 +795,6 @@ extensions: - ["System.ComponentModel", "MergablePropertyAttribute", "get_AllowMerge", "()", "summary", "df-generated"] - ["System.ComponentModel", "MultilineStringConverter", "GetPropertiesSupported", "(System.ComponentModel.ITypeDescriptorContext)", "summary", "df-generated"] - ["System.ComponentModel", "NestedContainer", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["System.ComponentModel", "NestedContainer", "NestedContainer", "(System.ComponentModel.IComponent)", "summary", "df-generated"] - ["System.ComponentModel", "NestedContainer", "get_Owner", "()", "summary", "df-generated"] - ["System.ComponentModel", "NestedContainer", "get_OwnerName", "()", "summary", "df-generated"] - ["System.ComponentModel", "NotifyParentPropertyAttribute", "Equals", "(System.Object)", "summary", "df-generated"] @@ -841,8 +873,6 @@ extensions: - ["System.ComponentModel", "PropertyTabAttribute", "PropertyTabAttribute", "(System.Type,System.ComponentModel.PropertyTabScope)", "summary", "df-generated"] - ["System.ComponentModel", "ProvidePropertyAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ProvidePropertyAttribute", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel", "ProvidePropertyAttribute", "ProvidePropertyAttribute", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "ProvidePropertyAttribute", "ProvidePropertyAttribute", "(System.String,System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "ProvidePropertyAttribute", "get_PropertyName", "()", "summary", "df-generated"] - ["System.ComponentModel", "ProvidePropertyAttribute", "get_ReceiverTypeName", "()", "summary", "df-generated"] - ["System.ComponentModel", "ReadOnlyAttribute", "Equals", "(System.Object)", "summary", "df-generated"] @@ -860,7 +890,6 @@ extensions: - ["System.ComponentModel", "ReferenceConverter", "GetStandardValuesSupported", "(System.ComponentModel.ITypeDescriptorContext)", "summary", "df-generated"] - ["System.ComponentModel", "ReferenceConverter", "IsValueAllowed", "(System.ComponentModel.ITypeDescriptorContext,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ReferenceConverter", "ReferenceConverter", "(System.Type)", "summary", "df-generated"] - - ["System.ComponentModel", "RefreshEventArgs", "RefreshEventArgs", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "RefreshEventArgs", "RefreshEventArgs", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "RefreshEventArgs", "get_ComponentChanged", "()", "summary", "df-generated"] - ["System.ComponentModel", "RefreshEventArgs", "get_TypeChanged", "()", "summary", "df-generated"] @@ -896,7 +925,6 @@ extensions: - ["System.ComponentModel", "ToolboxItemFilterAttribute", "GetHashCode", "()", "summary", "df-generated"] - ["System.ComponentModel", "ToolboxItemFilterAttribute", "Match", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "ToolboxItemFilterAttribute", "ToolboxItemFilterAttribute", "(System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "ToolboxItemFilterAttribute", "ToolboxItemFilterAttribute", "(System.String,System.ComponentModel.ToolboxItemFilterType)", "summary", "df-generated"] - ["System.ComponentModel", "ToolboxItemFilterAttribute", "get_FilterString", "()", "summary", "df-generated"] - ["System.ComponentModel", "ToolboxItemFilterAttribute", "get_FilterType", "()", "summary", "df-generated"] - ["System.ComponentModel", "TypeConverter+SimplePropertyDescriptor", "CanResetValue", "(System.Object)", "summary", "df-generated"] @@ -928,7 +956,6 @@ extensions: - ["System.ComponentModel", "TypeConverter", "IsValid", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeConverterAttribute", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeConverterAttribute", "GetHashCode", "()", "summary", "df-generated"] - - ["System.ComponentModel", "TypeConverterAttribute", "TypeConverterAttribute", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "TypeConverterAttribute", "TypeConverterAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeConverterAttribute", "get_ConverterTypeName", "()", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", "CreateInstance", "(System.IServiceProvider,System.Type,System.Type[],System.Object[])", "summary", "df-generated"] @@ -938,8 +965,12 @@ extensions: - ["System.ComponentModel", "TypeDescriptionProvider", "GetReflectionType", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", "GetReflectionType", "(System.Type,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", "GetRuntimeType", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", "GetTypeDescriptorFromRegisteredType", "(System.Object)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", "GetTypeDescriptorFromRegisteredType", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", "GetTypeDescriptorFromRegisteredType", "(System.Type,System.Object)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", "IsRegisteredType", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProvider", "IsSupportedType", "(System.Type)", "summary", "df-generated"] - - ["System.ComponentModel", "TypeDescriptionProviderAttribute", "TypeDescriptionProviderAttribute", "(System.String)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptionProvider", "RegisterType", "()", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProviderAttribute", "TypeDescriptionProviderAttribute", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptionProviderAttribute", "get_TypeName", "()", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "AddEditorTable", "(System.Type,System.Collections.Hashtable)", "summary", "df-generated"] @@ -963,6 +994,8 @@ extensions: - ["System.ComponentModel", "TypeDescriptor", "GetConverter", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetConverter", "(System.Object,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetConverter", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "GetConverterFromRegisteredType", "(System.Object)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "GetConverterFromRegisteredType", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetDefaultEvent", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetDefaultEvent", "(System.Object,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetDefaultEvent", "(System.Type)", "summary", "df-generated"] @@ -978,12 +1011,15 @@ extensions: - ["System.ComponentModel", "TypeDescriptor", "GetEvents", "(System.Object,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetEvents", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetEvents", "(System.Type,System.Attribute[])", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "GetEventsFromRegisteredType", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Object,System.Attribute[])", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Object,System.Attribute[],System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Object,System.Boolean)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProperties", "(System.Type,System.Attribute[])", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "GetPropertiesFromRegisteredType", "(System.Object)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "GetPropertiesFromRegisteredType", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProvider", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetProvider", "(System.Type)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "GetReflectionType", "(System.Object)", "summary", "df-generated"] @@ -992,6 +1028,7 @@ extensions: - ["System.ComponentModel", "TypeDescriptor", "Refresh", "(System.Reflection.Assembly)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "Refresh", "(System.Reflection.Module)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "Refresh", "(System.Type)", "summary", "df-generated"] + - ["System.ComponentModel", "TypeDescriptor", "RegisterType", "()", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "RemoveAssociation", "(System.Object,System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "RemoveAssociations", "(System.Object)", "summary", "df-generated"] - ["System.ComponentModel", "TypeDescriptor", "RemoveProvider", "(System.ComponentModel.TypeDescriptionProvider,System.Object)", "summary", "df-generated"] @@ -1014,7 +1051,6 @@ extensions: - ["System.ComponentModel", "WarningException", "WarningException", "(System.String)", "summary", "df-generated"] - ["System.ComponentModel", "WarningException", "WarningException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.ComponentModel", "WarningException", "WarningException", "(System.String,System.String)", "summary", "df-generated"] - - ["System.ComponentModel", "WarningException", "WarningException", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ComponentModel", "WarningException", "get_HelpTopic", "()", "summary", "df-generated"] - ["System.ComponentModel", "WarningException", "get_HelpUrl", "()", "summary", "df-generated"] - ["System.ComponentModel", "Win32Exception", "Win32Exception", "(System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml b/csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml index 1f9acd8139b..31743004723 100644 --- a/csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml +++ b/csharp/ql/lib/ext/generated/System.Composition.Hosting.Core.model.yml @@ -8,7 +8,7 @@ extensions: - ["System.Composition.Hosting.Core", "CompositionContract", False, "ChangeType", "(System.Type)", "", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._metadataConstraints]", "ReturnValue.SyntheticField[System.Composition.Hosting.Core.CompositionContract._metadataConstraints]", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "CompositionContract", False, "CompositionContract", "(System.Type,System.String,System.Collections.Generic.IDictionary)", "", "Argument[1]", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._contractName]", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "CompositionContract", False, "CompositionContract", "(System.Type,System.String,System.Collections.Generic.IDictionary)", "", "Argument[2]", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._metadataConstraints]", "value", "dfc-generated"] - - ["System.Composition.Hosting.Core", "CompositionContract", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._contractName]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Composition.Hosting.Core", "CompositionContract", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition.Hosting.Core", "CompositionContract", False, "TryUnwrapMetadataConstraint", "(System.String,T,System.Composition.Hosting.Core.CompositionContract)", "", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._contractName]", "ReturnValue.SyntheticField[System.Composition.Hosting.Core.CompositionContract._contractName]", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "CompositionContract", False, "get_ContractName", "()", "", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._contractName]", "ReturnValue", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "CompositionContract", False, "get_MetadataConstraints", "()", "", "Argument[this].SyntheticField[System.Composition.Hosting.Core.CompositionContract._metadataConstraints]", "ReturnValue", "value", "dfc-generated"] @@ -52,8 +52,6 @@ extensions: - ["System.Composition.Hosting.Core", "LifetimeContext", False, "GetOrCreate", "(System.Int32,System.Composition.Hosting.Core.CompositionOperation,System.Composition.Hosting.Core.CompositeActivator)", "", "Argument[2].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "LifetimeContext", False, "GetOrCreate", "(System.Int32,System.Composition.Hosting.Core.CompositionOperation,System.Composition.Hosting.Core.CompositeActivator)", "", "Argument[this]", "Argument[2].Parameter[0]", "value", "dfc-generated"] - ["System.Composition.Hosting.Core", "LifetimeContext", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Composition.Hosting.Core", "LifetimeContext", False, "TryGetExport", "(System.Composition.Hosting.Core.CompositionContract,System.Object)", "", "Argument[this]", "ReturnValue.Property[System.Lazy`1.Value].Property[System.Lazy`1.Value]", "value", "dfc-generated"] - - ["System.Composition.Hosting.Core", "LifetimeContext", False, "TryGetExport", "(System.Composition.Hosting.Core.CompositionContract,System.Object)", "", "Argument[this]", "ReturnValue.Property[System.Lazy`1.Value]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel diff --git a/csharp/ql/lib/ext/generated/System.Composition.model.yml b/csharp/ql/lib/ext/generated/System.Composition.model.yml index 2c6d61b647a..06147b3a3cd 100644 --- a/csharp/ql/lib/ext/generated/System.Composition.model.yml +++ b/csharp/ql/lib/ext/generated/System.Composition.model.yml @@ -9,11 +9,15 @@ extensions: - ["System.Composition", "CompositionContext", False, "GetExport", "(System.Type,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "GetExport", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "GetExport", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Composition", "CompositionContext", False, "GetExports", "(System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Composition", "CompositionContext", False, "GetExports", "(System.Type,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Composition", "CompositionContext", False, "GetExports", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Composition", "CompositionContext", False, "GetExports", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "TryGetExport", "(System.Type,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "TryGetExport", "(System.Type,System.String,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "TryGetExport", "(System.String,TExport)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "CompositionContext", False, "TryGetExport", "(TExport)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Composition", "CompositionContext", True, "TryGetExport", "(System.Composition.Hosting.Core.CompositionContract,System.Object)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Composition", "CompositionContext", True, "TryGetExport", "(System.Composition.Hosting.Core.CompositionContract,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Composition", "Export", False, "Export", "(T,System.Action)", "", "Argument[0]", "Argument[this].Property[System.Composition.Export`1.Value]", "value", "dfc-generated"] - ["System.Composition", "ExportAttribute", False, "ExportAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.Composition.ExportAttribute.ContractName]", "value", "dfc-generated"] - ["System.Composition", "ExportFactory", False, "ExportFactory", "(System.Func>,TMetadata)", "", "Argument[1]", "Argument[this].Property[System.Composition.ExportFactory`2.Metadata]", "value", "dfc-generated"] @@ -32,19 +36,23 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Composition", "CompositionContext", "GetExports", "(System.Type)", "summary", "df-generated"] - - ["System.Composition", "CompositionContext", "GetExports", "(System.Type,System.String)", "summary", "df-generated"] - - ["System.Composition", "CompositionContext", "GetExports", "()", "summary", "df-generated"] - - ["System.Composition", "CompositionContext", "GetExports", "(System.String)", "summary", "df-generated"] - ["System.Composition", "CompositionContextExtensions", "SatisfyImports", "(System.Composition.CompositionContext,System.Object)", "summary", "df-generated"] - ["System.Composition", "CompositionContextExtensions", "SatisfyImports", "(System.Composition.CompositionContext,System.Object,System.Composition.Convention.AttributedModelProvider)", "summary", "df-generated"] - ["System.Composition", "Export", "Dispose", "()", "summary", "df-generated"] - ["System.Composition", "Export", "get_Value", "()", "summary", "df-generated"] - ["System.Composition", "ExportAttribute", "ExportAttribute", "(System.String)", "summary", "df-generated"] - ["System.Composition", "ExportAttribute", "ExportAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.Composition", "ExportAttribute", "get_ContractName", "()", "summary", "df-generated"] + - ["System.Composition", "ExportAttribute", "get_ContractType", "()", "summary", "df-generated"] - ["System.Composition", "ExportFactory", "get_Metadata", "()", "summary", "df-generated"] - ["System.Composition", "ExportFactory", "CreateExport", "()", "summary", "df-generated"] - ["System.Composition", "ExportFactory", "ExportFactory", "(System.Func>)", "summary", "df-generated"] + - ["System.Composition", "ExportMetadataAttribute", "get_Name", "()", "summary", "df-generated"] + - ["System.Composition", "ExportMetadataAttribute", "get_Value", "()", "summary", "df-generated"] + - ["System.Composition", "ImportAttribute", "get_ContractName", "()", "summary", "df-generated"] + - ["System.Composition", "ImportManyAttribute", "get_ContractName", "()", "summary", "df-generated"] - ["System.Composition", "ImportMetadataConstraintAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.Composition", "ImportMetadataConstraintAttribute", "get_Value", "()", "summary", "df-generated"] + - ["System.Composition", "PartMetadataAttribute", "get_Name", "()", "summary", "df-generated"] + - ["System.Composition", "PartMetadataAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Composition", "SharedAttribute", "SharedAttribute", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml b/csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml index 5fbf0e0eae6..6804ecaa514 100644 --- a/csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml +++ b/csharp/ql/lib/ext/generated/System.Configuration.Internal.model.yml @@ -10,6 +10,7 @@ extensions: - ["System.Configuration.Internal", "IConfigSystem", True, "get_Root", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigConfigurationFactory", True, "Create", "(System.Type,System.Object[])", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigConfigurationFactory", True, "NormalizeLocationSubPath", "(System.String,System.Configuration.Internal.IConfigErrorInfo)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Configuration.Internal", "IInternalConfigHost", True, "CreateConfigurationContext", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", True, "GetStreamName", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", True, "GetStreamNameForConfigSource", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", True, "GetStreamNameForConfigSource", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] @@ -26,19 +27,17 @@ extensions: - ["System.Configuration.Internal", "IInternalConfigRecord", True, "get_StreamName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetConfigRecord", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetConfigRecord", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetSection", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetSection", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetUniqueConfigPath", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetUniqueConfigPath", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetUniqueConfigPath", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetUniqueConfigRecord", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "GetUniqueConfigRecord", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigRoot", True, "Init", "(System.Configuration.Internal.IInternalConfigHost,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigSystem", True, "GetSection", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Configuration.Internal", "InternalConfigEventArgs", False, "InternalConfigEventArgs", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Configuration.Internal.InternalConfigEventArgs.ConfigPath]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Configuration.Internal", "DelegatingConfigHost", "CreateConfigurationContext", "(System.String,System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "DelegatingConfigHost", "CreateDeprecatedConfigContext", "(System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "DelegatingConfigHost", "DecryptSection", "(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", "summary", "df-generated"] - ["System.Configuration.Internal", "DelegatingConfigHost", "DeleteStream", "(System.String)", "summary", "df-generated"] @@ -94,7 +93,6 @@ extensions: - ["System.Configuration.Internal", "IInternalConfigClientHost", "IsExeConfig", "(System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigClientHost", "IsLocalUserConfig", "(System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigClientHost", "IsRoamingUserConfig", "(System.String)", "summary", "df-generated"] - - ["System.Configuration.Internal", "IInternalConfigHost", "CreateConfigurationContext", "(System.String,System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", "CreateDeprecatedConfigContext", "(System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", "DecryptSection", "(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigHost", "DeleteStream", "(System.String)", "summary", "df-generated"] @@ -141,4 +139,3 @@ extensions: - ["System.Configuration.Internal", "IInternalConfigSettingsFactory", "SetConfigurationSystem", "(System.Configuration.Internal.IInternalConfigSystem,System.Boolean)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigSystem", "RefreshConfig", "(System.String)", "summary", "df-generated"] - ["System.Configuration.Internal", "IInternalConfigSystem", "get_SupportsUserConfig", "()", "summary", "df-generated"] - - ["System.Configuration.Internal", "InternalConfigEventArgs", "InternalConfigEventArgs", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Configuration.model.yml b/csharp/ql/lib/ext/generated/System.Configuration.model.yml index 0aebabce66d..268b9357bb3 100644 --- a/csharp/ql/lib/ext/generated/System.Configuration.model.yml +++ b/csharp/ql/lib/ext/generated/System.Configuration.model.yml @@ -64,6 +64,7 @@ extensions: - ["System.Configuration", "ConfigurationElementCollection", True, "BaseAdd", "(System.Configuration.ConfigurationElement)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Configuration", "ConfigurationElementCollection", True, "BaseAdd", "(System.Int32,System.Configuration.ConfigurationElement)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - ["System.Configuration", "ConfigurationElementCollection", True, "GetElementKey", "(System.Configuration.ConfigurationElement)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Configuration", "ConfigurationElementProperty", False, "ConfigurationElementProperty", "(System.Configuration.ConfigurationValidatorBase)", "", "Argument[0]", "Argument[this].Property[System.Configuration.ConfigurationElementProperty.Validator]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationErrorsException", False, "ConfigurationErrorsException", "(System.String,System.Exception,System.String,System.Int32)", "", "Argument[2]", "Argument[this].SyntheticField[System.Configuration.ConfigurationErrorsException._firstFilename]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationErrorsException", False, "GetFilename", "(System.Xml.XmlNode)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationErrorsException", False, "GetFilename", "(System.Xml.XmlReader)", "", "Argument[0].Property[System.Configuration.Internal.IConfigErrorInfo.Filename]", "ReturnValue", "value", "dfc-generated"] @@ -89,9 +90,14 @@ extensions: - ["System.Configuration", "ConfigurationManager", False, "OpenMappedExeConfiguration", "(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationManager", False, "OpenMappedExeConfiguration", "(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationManager", False, "OpenMappedMachineConfiguration", "(System.Configuration.ConfigurationFileMap)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type)", "", "Argument[0]", "Argument[this].Property[System.Configuration.ConfigurationProperty.Name]", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", "", "Argument[0]", "Argument[this].Property[System.Configuration.ConfigurationProperty.Name]", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", "", "Argument[2]", "Argument[this].Property[System.Configuration.ConfigurationProperty.DefaultValue]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", "", "Argument[3]", "Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter]", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", "", "Argument[4]", "Argument[this].Property[System.Configuration.ConfigurationProperty.Validator]", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationProperty", False, "ConfigurationProperty", "(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String)", "", "Argument[6]", "Argument[this].Property[System.Configuration.ConfigurationProperty.Description]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationProperty", False, "get_Converter", "()", "", "Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter]", "ReturnValue", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationPropertyAttribute", False, "ConfigurationPropertyAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Configuration.ConfigurationPropertyAttribute.Name]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationPropertyCollection", False, "Add", "(System.Configuration.ConfigurationProperty)", "", "Argument[0]", "Argument[this].SyntheticField[System.Configuration.ConfigurationPropertyCollection._items].Element", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationPropertyCollection", False, "CopyTo", "(System.Configuration.ConfigurationProperty[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationPropertyCollection", False, "CopyTo", "(System.Configuration.ConfigurationProperty[],System.Int32)", "", "Argument[this].SyntheticField[System.Configuration.ConfigurationPropertyCollection._items].Element", "Argument[0].Element", "value", "dfc-generated"] @@ -100,15 +106,15 @@ extensions: - ["System.Configuration", "ConfigurationSection", True, "DeserializeSection", "(System.Xml.XmlReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSection", True, "GetRuntimeObject", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationSection", True, "SerializeSection", "(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration", "ConfigurationSectionCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSection)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] - - ["System.Configuration", "ConfigurationSectionCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSection)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] + - ["System.Configuration", "ConfigurationSectionCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSection)", "", "Argument[0]", "Argument[1].Property[System.Configuration.ConfigurationSection.SectionInformation].Property[System.Configuration.SectionInformation.Name]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationSectionCollection", False, "Get", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionCollection", False, "Get", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionCollection", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionGroup", False, "get_SectionGroups", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionGroup", False, "get_Sections", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSectionGroup)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] + - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSectionGroup)", "", "Argument[0]", "Argument[1].Property[System.Configuration.ConfigurationSectionGroup.Name]", "value", "dfc-generated"] + - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "Add", "(System.String,System.Configuration.ConfigurationSectionGroup)", "", "Argument[0]", "Argument[1].Property[System.Configuration.ConfigurationSectionGroup.SectionGroupName]", "value", "dfc-generated"] - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "CopyTo", "(System.Configuration.ConfigurationSectionGroup[],System.Int32)", "", "Argument[this]", "Argument[0].Element", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "Get", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ConfigurationSectionGroupCollection", False, "Get", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -127,6 +133,9 @@ extensions: - ["System.Configuration", "ContextInformation", False, "get_HostingContext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "DefaultSettingValueAttribute", False, "DefaultSettingValueAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Configuration.DefaultSettingValueAttribute._value]", "value", "dfc-generated"] - ["System.Configuration", "DefaultSettingValueAttribute", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Configuration.DefaultSettingValueAttribute._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Configuration", "ExeConfigurationFileMap", False, "Clone", "()", "", "Argument[this].Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename]", "ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename]", "value", "dfc-generated"] + - ["System.Configuration", "ExeConfigurationFileMap", False, "Clone", "()", "", "Argument[this].Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename]", "ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename]", "value", "dfc-generated"] + - ["System.Configuration", "ExeConfigurationFileMap", False, "Clone", "()", "", "Argument[this].Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename]", "ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename]", "value", "dfc-generated"] - ["System.Configuration", "IApplicationSettingsProvider", True, "GetPreviousVersion", "(System.Configuration.SettingsContext,System.Configuration.SettingsProperty)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "IConfigurationSectionHandler", True, "Create", "(System.Object,System.Object,System.Xml.XmlNode)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Configuration", "KeyValueConfigurationCollection", False, "Add", "(System.Configuration.KeyValueConfigurationElement)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] @@ -157,6 +166,7 @@ extensions: - ["System.Configuration", "ProviderSettingsCollection", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "ProviderSettingsCollection", False, "set_Item", "(System.Int32,System.Configuration.ProviderSettings)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - ["System.Configuration", "RegexStringValidator", False, "RegexStringValidator", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Configuration", "RegexStringValidatorAttribute", False, "RegexStringValidatorAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Configuration.RegexStringValidatorAttribute.Regex]", "value", "dfc-generated"] - ["System.Configuration", "SchemeSettingElement", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Configuration", "SchemeSettingElementCollection", False, "GetElementKey", "(System.Configuration.ConfigurationElement)", "", "Argument[0].Property[System.Configuration.SchemeSettingElement.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.Configuration", "SchemeSettingElementCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -196,6 +206,7 @@ extensions: - ["System.Configuration", "SettingsLoadedEventArgs", False, "SettingsLoadedEventArgs", "(System.Configuration.SettingsProvider)", "", "Argument[0]", "Argument[this].SyntheticField[System.Configuration.SettingsLoadedEventArgs._provider]", "value", "dfc-generated"] - ["System.Configuration", "SettingsLoadedEventArgs", False, "get_Provider", "()", "", "Argument[this].SyntheticField[System.Configuration.SettingsLoadedEventArgs._provider]", "ReturnValue", "value", "dfc-generated"] - ["System.Configuration", "SettingsPropertyCollection", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Configuration", "SettingsPropertyValue", False, "SettingsPropertyValue", "(System.Configuration.SettingsProperty)", "", "Argument[0]", "Argument[this].Property[System.Configuration.SettingsPropertyValue.Property]", "value", "dfc-generated"] - ["System.Configuration", "SettingsPropertyValue", False, "get_Name", "()", "", "Argument[this].Property[System.Configuration.SettingsPropertyValue.Property].Property[System.Configuration.SettingsProperty.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.Configuration", "SettingsPropertyValueCollection", False, "Add", "(System.Configuration.SettingsPropertyValue)", "", "Argument[0]", "Argument[this].SyntheticField[System.Configuration.SettingsPropertyValueCollection._values].Element", "value", "dfc-generated"] - ["System.Configuration", "SettingsPropertyValueCollection", False, "get_Item", "(System.String)", "", "Argument[this].SyntheticField[System.Configuration.SettingsPropertyValueCollection._values].Element", "ReturnValue", "value", "dfc-generated"] @@ -290,7 +301,6 @@ extensions: - ["System.Configuration", "ConfigurationElementCollection", "get_ElementName", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationElementCollection", "get_IsSynchronized", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationElementCollection", "get_ThrowOnDuplicate", "()", "summary", "df-generated"] - - ["System.Configuration", "ConfigurationElementProperty", "ConfigurationElementProperty", "(System.Configuration.ConfigurationValidatorBase)", "summary", "df-generated"] - ["System.Configuration", "ConfigurationElementProperty", "get_Validator", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationErrorsException", "ConfigurationErrorsException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Configuration", "ConfigurationErrorsException", "ConfigurationErrorsException", "(System.String)", "summary", "df-generated"] @@ -341,7 +351,6 @@ extensions: - ["System.Configuration", "ConfigurationProperty", "get_IsRequired", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationProperty", "get_IsTypeStringTransformationRequired", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationProperty", "get_IsVersionCheckRequired", "()", "summary", "df-generated"] - - ["System.Configuration", "ConfigurationPropertyAttribute", "ConfigurationPropertyAttribute", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "ConfigurationPropertyAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.Configuration", "ConfigurationPropertyCollection", "Contains", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "ConfigurationPropertyCollection", "Remove", "(System.String)", "summary", "df-generated"] @@ -454,7 +463,6 @@ extensions: - ["System.Configuration", "ProviderSettingsCollection", "CreateNewElement", "()", "summary", "df-generated"] - ["System.Configuration", "ProviderSettingsCollection", "Remove", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "RegexStringValidator", "CanValidate", "(System.Type)", "summary", "df-generated"] - - ["System.Configuration", "RegexStringValidatorAttribute", "RegexStringValidatorAttribute", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "RegexStringValidatorAttribute", "get_Regex", "()", "summary", "df-generated"] - ["System.Configuration", "RsaProtectedConfigurationProvider", "AddKey", "(System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.Configuration", "RsaProtectedConfigurationProvider", "Decrypt", "(System.Xml.XmlNode)", "summary", "df-generated"] @@ -520,7 +528,6 @@ extensions: - ["System.Configuration", "SettingsPropertyNotFoundException", "SettingsPropertyNotFoundException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Configuration", "SettingsPropertyNotFoundException", "SettingsPropertyNotFoundException", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "SettingsPropertyNotFoundException", "SettingsPropertyNotFoundException", "(System.String,System.Exception)", "summary", "df-generated"] - - ["System.Configuration", "SettingsPropertyValue", "SettingsPropertyValue", "(System.Configuration.SettingsProperty)", "summary", "df-generated"] - ["System.Configuration", "SettingsPropertyValueCollection", "Remove", "(System.String)", "summary", "df-generated"] - ["System.Configuration", "SettingsPropertyValueCollection", "SetReadOnly", "()", "summary", "df-generated"] - ["System.Configuration", "SettingsPropertyValueCollection", "get_Count", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Data.Common.model.yml b/csharp/ql/lib/ext/generated/System.Data.Common.model.yml index ac729ebdbea..3725f8b01f6 100644 --- a/csharp/ql/lib/ext/generated/System.Data.Common.model.yml +++ b/csharp/ql/lib/ext/generated/System.Data.Common.model.yml @@ -6,6 +6,8 @@ extensions: data: - ["System.Data.Common", "DataAdapter", False, "get_TableMappings", "()", "", "Argument[this].Property[System.Data.Common.DataAdapter.TableMappings]", "ReturnValue", "value", "dfc-generated"] - ["System.Data.Common", "DataAdapter", False, "get_TableMappings", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data.Common", "DataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data.Common", "DataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data.Common", "DataAdapter", True, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader)", "", "Argument[0]", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Data.Common", "DataAdapter", True, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Data.Common", "DataColumnMapping", False, "Clone", "()", "", "Argument[this].SyntheticField[System.Data.Common.DataColumnMapping._sourceColumnName]", "ReturnValue.SyntheticField[System.Data.Common.DataColumnMapping._sourceColumnName]", "value", "dfc-generated"] @@ -62,8 +64,12 @@ extensions: - ["System.Data.Common", "DbConnectionStringBuilder", False, "ToString", "()", "", "Argument[this].Property[System.Data.Common.DbConnectionStringBuilder.Keys].Element", "ReturnValue", "taint", "dfc-generated"] - ["System.Data.Common", "DbConnectionStringBuilder", True, "GetProperties", "(System.Collections.Hashtable)", "", "Argument[this].Property[System.Data.Common.DbConnectionStringBuilder.Keys].Element", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] - ["System.Data.Common", "DbConnectionStringBuilder", True, "TryGetValue", "(System.String,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data.Common", "DbDataAdapter", False, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data.Common", "DbDataAdapter", False, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data.Common", "DbDataAdapter", False, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType)", "", "Argument[0]", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Data.Common", "DbDataAdapter", False, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Data.Common", "DbDataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data.Common", "DbDataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data.Common", "DbDataAdapter", True, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior)", "", "Argument[0]", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Data.Common", "DbDataAdapter", True, "FillSchema", "(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Data.Common", "DbDataReader", False, "GetFieldValueAsync", "(System.Int32)", "", "Argument[this]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "taint", "dfc-generated"] @@ -121,8 +127,6 @@ extensions: - ["System.Data.Common", "DataAdapter", "Fill", "(System.Data.DataSet,System.String,System.Data.IDataReader,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Data.Common", "DataAdapter", "Fill", "(System.Data.DataTable,System.Data.IDataReader)", "summary", "df-generated"] - ["System.Data.Common", "DataAdapter", "Fill", "(System.Data.DataTable[],System.Data.IDataReader,System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.Data.Common", "DataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType)", "summary", "df-generated"] - - ["System.Data.Common", "DataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader)", "summary", "df-generated"] - ["System.Data.Common", "DataAdapter", "HasTableMappings", "()", "summary", "df-generated"] - ["System.Data.Common", "DataAdapter", "OnFillError", "(System.Data.FillErrorEventArgs)", "summary", "df-generated"] - ["System.Data.Common", "DataAdapter", "ResetFillLoadOption", "()", "summary", "df-generated"] @@ -277,9 +281,6 @@ extensions: - ["System.Data.Common", "DbDataAdapter", "Fill", "(System.Data.DataTable,System.Data.IDbCommand,System.Data.CommandBehavior)", "summary", "df-generated"] - ["System.Data.Common", "DbDataAdapter", "Fill", "(System.Data.DataTable[],System.Int32,System.Int32,System.Data.IDbCommand,System.Data.CommandBehavior)", "summary", "df-generated"] - ["System.Data.Common", "DbDataAdapter", "Fill", "(System.Int32,System.Int32,System.Data.DataTable[])", "summary", "df-generated"] - - ["System.Data.Common", "DbDataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType)", "summary", "df-generated"] - - ["System.Data.Common", "DbDataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior)", "summary", "df-generated"] - - ["System.Data.Common", "DbDataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType,System.String)", "summary", "df-generated"] - ["System.Data.Common", "DbDataAdapter", "GetBatchedParameter", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Data.Common", "DbDataAdapter", "GetBatchedRecordsAffected", "(System.Int32,System.Int32,System.Exception)", "summary", "df-generated"] - ["System.Data.Common", "DbDataAdapter", "InitializeBatching", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml b/csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml index 474c57e73cf..2467fde764c 100644 --- a/csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml +++ b/csharp/ql/lib/ext/generated/System.Data.Odbc.model.yml @@ -123,6 +123,7 @@ extensions: - ["System.Data.Odbc", "OdbcConnection", "add_InfoMessage", "(System.Data.Odbc.OdbcInfoMessageEventHandler)", "summary", "df-generated"] - ["System.Data.Odbc", "OdbcConnection", "get_DataSource", "()", "summary", "df-generated"] - ["System.Data.Odbc", "OdbcConnection", "get_Database", "()", "summary", "df-generated"] + - ["System.Data.Odbc", "OdbcConnection", "get_DbProviderFactory", "()", "summary", "df-generated"] - ["System.Data.Odbc", "OdbcConnection", "get_Driver", "()", "summary", "df-generated"] - ["System.Data.Odbc", "OdbcConnection", "get_State", "()", "summary", "df-generated"] - ["System.Data.Odbc", "OdbcConnection", "remove_InfoMessage", "(System.Data.Odbc.OdbcInfoMessageEventHandler)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml b/csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml index 195a8c9c7b1..31c509da864 100644 --- a/csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml +++ b/csharp/ql/lib/ext/generated/System.Data.SqlTypes.model.yml @@ -7,7 +7,6 @@ extensions: - ["System.Data.SqlTypes", "SqlBinary", False, "SqlBinary", "(System.Byte[])", "", "Argument[0].Element", "Argument[this].SyntheticField[System.Data.SqlTypes.SqlBinary._value].Element", "value", "dfc-generated"] - ["System.Data.SqlTypes", "SqlBinary", False, "WrapBytes", "(System.Byte[])", "", "Argument[0]", "ReturnValue.SyntheticField[System.Data.SqlTypes.SqlBinary._value]", "value", "dfc-generated"] - ["System.Data.SqlTypes", "SqlBinary", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Data.SqlTypes.SqlBinary._value].Element", "ReturnValue.Element", "value", "dfc-generated"] - - ["System.Data.SqlTypes", "SqlBytes", False, "Read", "(System.Int64,System.Byte[],System.Int32,System.Int32)", "", "Argument[this]", "Argument[1].Element", "taint", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", False, "SqlBytes", "(System.Byte[])", "", "Argument[0]", "Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._rgbBuf]", "value", "dfc-generated"] - ["System.Data.SqlTypes", "SqlBytes", False, "SqlBytes", "(System.IO.Stream)", "", "Argument[0]", "Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._stream]", "value", "dfc-generated"] - ["System.Data.SqlTypes", "SqlBytes", False, "Write", "(System.Int64,System.Byte[],System.Int32,System.Int32)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] @@ -175,6 +174,7 @@ extensions: - ["System.Data.SqlTypes", "SqlByte", "op_Subtraction", "(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte)", "summary", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", "GetSchema", "()", "summary", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", "GetXsdType", "(System.Xml.Schema.XmlSchemaSet)", "summary", "df-generated"] + - ["System.Data.SqlTypes", "SqlBytes", "Read", "(System.Int64,System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", "SetNull", "()", "summary", "df-generated"] - ["System.Data.SqlTypes", "SqlBytes", "SqlBytes", "(System.Data.SqlTypes.SqlBinary)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Data.model.yml b/csharp/ql/lib/ext/generated/System.Data.model.yml index 51c3c7c0026..4d2df4cd758 100644 --- a/csharp/ql/lib/ext/generated/System.Data.model.yml +++ b/csharp/ql/lib/ext/generated/System.Data.model.yml @@ -17,7 +17,9 @@ extensions: - ["System.Data", "DataColumn", False, "DataColumn", "(System.String,System.Type,System.String,System.Data.MappingType)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataColumn", False, "DataColumn", "(System.String,System.Type,System.String,System.Data.MappingType)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataColumn", False, "get_Table", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "DataColumnChangeEventArgs", False, "DataColumnChangeEventArgs", "(System.Data.DataRow,System.Data.DataColumn,System.Object)", "", "Argument[0]", "Argument[this].Property[System.Data.DataColumnChangeEventArgs.Row]", "value", "dfc-generated"] - ["System.Data", "DataColumnChangeEventArgs", False, "DataColumnChangeEventArgs", "(System.Data.DataRow,System.Data.DataColumn,System.Object)", "", "Argument[1]", "Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column]", "value", "dfc-generated"] + - ["System.Data", "DataColumnChangeEventArgs", False, "DataColumnChangeEventArgs", "(System.Data.DataRow,System.Data.DataColumn,System.Object)", "", "Argument[2]", "Argument[this].Property[System.Data.DataColumnChangeEventArgs.ProposedValue]", "value", "dfc-generated"] - ["System.Data", "DataColumnChangeEventArgs", False, "get_Column", "()", "", "Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column]", "ReturnValue", "value", "dfc-generated"] - ["System.Data", "DataColumnCollection", False, "Add", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataColumnCollection", False, "Add", "(System.String,System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -77,6 +79,7 @@ extensions: - ["System.Data", "DataRow", False, "get_Item", "(System.String,System.Data.DataRowVersion)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataRow", False, "get_Table", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataRow", False, "set_Item", "(System.Data.DataColumn,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Data", "DataRowChangeEventArgs", False, "DataRowChangeEventArgs", "(System.Data.DataRow,System.Data.DataRowAction)", "", "Argument[0]", "Argument[this].Property[System.Data.DataRowChangeEventArgs.Row]", "value", "dfc-generated"] - ["System.Data", "DataRowCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataRowExtensions", False, "SetField", "(System.Data.DataRow,System.Data.DataColumn,T)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.Data", "DataRowView", False, "CreateChildView", "(System.Data.DataRelation)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -131,6 +134,7 @@ extensions: - ["System.Data", "DataTable", True, "OnTableCleared", "(System.Data.DataTableClearEventArgs)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataTable", True, "OnTableClearing", "(System.Data.DataTableClearEventArgs)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataTable", True, "OnTableNewRow", "(System.Data.DataTableNewRowEventArgs)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Data", "DataTableClearEventArgs", False, "DataTableClearEventArgs", "(System.Data.DataTable)", "", "Argument[0]", "Argument[this].Property[System.Data.DataTableClearEventArgs.Table]", "value", "dfc-generated"] - ["System.Data", "DataTableClearEventArgs", False, "get_TableName", "()", "", "Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.TableName]", "ReturnValue", "value", "dfc-generated"] - ["System.Data", "DataTableClearEventArgs", False, "get_TableNamespace", "()", "", "Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.Namespace]", "ReturnValue", "value", "dfc-generated"] - ["System.Data", "DataTableCollection", False, "Add", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -147,6 +151,7 @@ extensions: - ["System.Data", "DataTableExtensions", False, "CopyToDataTable", "(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption)", "", "Argument[0].Element.Property[System.Data.DataRow.ItemArray]", "Argument[1].SyntheticField[System.Data.DataTable._rowCollection].Element", "value", "dfc-generated"] - ["System.Data", "DataTableExtensions", False, "CopyToDataTable", "(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler)", "", "Argument[0].Element.Property[System.Data.DataRow.ItemArray]", "Argument[1].Property[System.Data.DataTable.Rows].Element", "value", "dfc-generated"] - ["System.Data", "DataTableExtensions", False, "CopyToDataTable", "(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler)", "", "Argument[0].Element.Property[System.Data.DataRow.ItemArray]", "Argument[1].SyntheticField[System.Data.DataTable._rowCollection].Element", "value", "dfc-generated"] + - ["System.Data", "DataTableNewRowEventArgs", False, "DataTableNewRowEventArgs", "(System.Data.DataRow)", "", "Argument[0]", "Argument[this].Property[System.Data.DataTableNewRowEventArgs.Row]", "value", "dfc-generated"] - ["System.Data", "DataTableReader", False, "DataTableReader", "(System.Data.DataTable)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataTableReader", False, "DataTableReader", "(System.Data.DataTable[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Data", "DataView", False, "AddNew", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Data.DataRowView._dataView]", "value", "dfc-generated"] @@ -156,8 +161,10 @@ extensions: - ["System.Data", "DataView", False, "GetListName", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[this].SyntheticField[System.Data.DataView._table].Property[System.Data.DataTable.TableName]", "ReturnValue", "value", "dfc-generated"] - ["System.Data", "DataView", False, "ToTable", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataView", False, "ToTable", "(System.Boolean,System.String[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Data", "DataView", False, "ToTable", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Data.DataTable.TableName]", "value", "dfc-generated"] - - ["System.Data", "DataView", False, "ToTable", "(System.String,System.Boolean,System.String[])", "", "Argument[0]", "ReturnValue.Property[System.Data.DataTable.TableName]", "value", "dfc-generated"] + - ["System.Data", "DataView", False, "ToTable", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "DataView", False, "ToTable", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "DataView", False, "ToTable", "(System.String,System.Boolean,System.String[])", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "DataView", False, "ToTable", "(System.String,System.Boolean,System.String[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "DataView", False, "get_DataViewManager", "()", "", "Argument[this].SyntheticField[System.Data.DataView._dataViewManager]", "ReturnValue", "value", "dfc-generated"] - ["System.Data", "DataView", True, "AddNew", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Data.DataRowView._dataView]", "value", "dfc-generated"] - ["System.Data", "DataView", True, "IndexListChanged", "(System.Object,System.ComponentModel.ListChangedEventArgs)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -191,12 +198,16 @@ extensions: - ["System.Data", "ForeignKeyConstraint", True, "get_RelatedTable", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "IColumnMappingCollection", True, "Add", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "IColumnMappingCollection", True, "GetByDataSetColumn", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "IDataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "IDataAdapter", True, "FillSchema", "(System.Data.DataSet,System.Data.SchemaType)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "IDataAdapter", True, "GetFillParameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "IDataReader", True, "GetSchemaTable", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "IDbCommand", True, "ExecuteScalar", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "ITableMappingCollection", True, "Add", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "ITableMappingCollection", True, "GetByDataSetTable", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "InternalDataCollectionBase", True, "get_List", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Data", "MergeFailedEventArgs", False, "MergeFailedEventArgs", "(System.Data.DataTable,System.String)", "", "Argument[0]", "Argument[this].Property[System.Data.MergeFailedEventArgs.Table]", "value", "dfc-generated"] + - ["System.Data", "MergeFailedEventArgs", False, "MergeFailedEventArgs", "(System.Data.DataTable,System.String)", "", "Argument[1]", "Argument[this].Property[System.Data.MergeFailedEventArgs.Conflict]", "value", "dfc-generated"] - ["System.Data", "TypedTableBase", False, "Cast", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Data", "UniqueConstraint", False, "UniqueConstraint", "(System.String,System.Data.DataColumn)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Data", "UniqueConstraint", False, "UniqueConstraint", "(System.String,System.Data.DataColumn,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -316,7 +327,6 @@ extensions: - ["System.Data", "DataRow", "get_RowState", "()", "summary", "df-generated"] - ["System.Data", "DataRow", "set_Item", "(System.Int32,System.Object)", "summary", "df-generated"] - ["System.Data", "DataRow", "set_Item", "(System.String,System.Object)", "summary", "df-generated"] - - ["System.Data", "DataRowChangeEventArgs", "DataRowChangeEventArgs", "(System.Data.DataRow,System.Data.DataRowAction)", "summary", "df-generated"] - ["System.Data", "DataRowChangeEventArgs", "get_Action", "()", "summary", "df-generated"] - ["System.Data", "DataRowChangeEventArgs", "get_Row", "()", "summary", "df-generated"] - ["System.Data", "DataRowCollection", "Contains", "(System.Object)", "summary", "df-generated"] @@ -525,7 +535,6 @@ extensions: - ["System.Data", "DataTable", "remove_TableCleared", "(System.Data.DataTableClearEventHandler)", "summary", "df-generated"] - ["System.Data", "DataTable", "remove_TableClearing", "(System.Data.DataTableClearEventHandler)", "summary", "df-generated"] - ["System.Data", "DataTable", "remove_TableNewRow", "(System.Data.DataTableNewRowEventHandler)", "summary", "df-generated"] - - ["System.Data", "DataTableClearEventArgs", "DataTableClearEventArgs", "(System.Data.DataTable)", "summary", "df-generated"] - ["System.Data", "DataTableClearEventArgs", "get_Table", "()", "summary", "df-generated"] - ["System.Data", "DataTableCollection", "CanRemove", "(System.Data.DataTable)", "summary", "df-generated"] - ["System.Data", "DataTableCollection", "Contains", "(System.String)", "summary", "df-generated"] @@ -543,7 +552,6 @@ extensions: - ["System.Data", "DataTableCollection", "remove_CollectionChanging", "(System.ComponentModel.CollectionChangeEventHandler)", "summary", "df-generated"] - ["System.Data", "DataTableExtensions", "AsDataView", "(System.Data.DataTable)", "summary", "df-generated"] - ["System.Data", "DataTableExtensions", "AsDataView", "(System.Data.EnumerableRowCollection)", "summary", "df-generated"] - - ["System.Data", "DataTableNewRowEventArgs", "DataTableNewRowEventArgs", "(System.Data.DataRow)", "summary", "df-generated"] - ["System.Data", "DataTableNewRowEventArgs", "get_Row", "()", "summary", "df-generated"] - ["System.Data", "DataTableReader", "Close", "()", "summary", "df-generated"] - ["System.Data", "DataTableReader", "GetBoolean", "(System.Int32)", "summary", "df-generated"] @@ -658,7 +666,6 @@ extensions: - ["System.Data", "IColumnMappingCollection", "IndexOf", "(System.String)", "summary", "df-generated"] - ["System.Data", "IColumnMappingCollection", "RemoveAt", "(System.String)", "summary", "df-generated"] - ["System.Data", "IDataAdapter", "Fill", "(System.Data.DataSet)", "summary", "df-generated"] - - ["System.Data", "IDataAdapter", "FillSchema", "(System.Data.DataSet,System.Data.SchemaType)", "summary", "df-generated"] - ["System.Data", "IDataAdapter", "Update", "(System.Data.DataSet)", "summary", "df-generated"] - ["System.Data", "IDataAdapter", "get_TableMappings", "()", "summary", "df-generated"] - ["System.Data", "IDataParameter", "get_IsNullable", "()", "summary", "df-generated"] @@ -723,7 +730,6 @@ extensions: - ["System.Data", "InvalidExpressionException", "InvalidExpressionException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Data", "InvalidExpressionException", "InvalidExpressionException", "(System.String)", "summary", "df-generated"] - ["System.Data", "InvalidExpressionException", "InvalidExpressionException", "(System.String,System.Exception)", "summary", "df-generated"] - - ["System.Data", "MergeFailedEventArgs", "MergeFailedEventArgs", "(System.Data.DataTable,System.String)", "summary", "df-generated"] - ["System.Data", "MergeFailedEventArgs", "get_Conflict", "()", "summary", "df-generated"] - ["System.Data", "MergeFailedEventArgs", "get_Table", "()", "summary", "df-generated"] - ["System.Data", "MissingPrimaryKeyException", "MissingPrimaryKeyException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml b/csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml index c36db246ff1..59d86951c08 100644 --- a/csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml +++ b/csharp/ql/lib/ext/generated/System.Diagnostics.CodeAnalysis.model.yml @@ -1,5 +1,14 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.Diagnostics.CodeAnalysis", "MemberNotNullAttribute", False, "MemberNotNullAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members].Element", "value", "dfc-generated"] + - ["System.Diagnostics.CodeAnalysis", "MemberNotNullAttribute", False, "MemberNotNullAttribute", "(System.String[])", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members]", "value", "dfc-generated"] + - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", False, "MemberNotNullWhenAttribute", "(System.Boolean,System.String)", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members].Element", "value", "dfc-generated"] + - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", False, "MemberNotNullWhenAttribute", "(System.Boolean,System.String[])", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members]", "value", "dfc-generated"] + - ["System.Diagnostics.CodeAnalysis", "NotNullIfNotNullAttribute", False, "NotNullIfNotNullAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -20,16 +29,15 @@ extensions: - ["System.Diagnostics.CodeAnalysis", "DynamicallyAccessedMembersAttribute", "get_MemberTypes", "()", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "ExperimentalAttribute", "ExperimentalAttribute", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "ExperimentalAttribute", "get_DiagnosticId", "()", "summary", "df-generated"] + - ["System.Diagnostics.CodeAnalysis", "FeatureGuardAttribute", "FeatureGuardAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.Diagnostics.CodeAnalysis", "FeatureGuardAttribute", "get_FeatureType", "()", "summary", "df-generated"] + - ["System.Diagnostics.CodeAnalysis", "FeatureSwitchDefinitionAttribute", "FeatureSwitchDefinitionAttribute", "(System.String)", "summary", "df-generated"] + - ["System.Diagnostics.CodeAnalysis", "FeatureSwitchDefinitionAttribute", "get_SwitchName", "()", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "MaybeNullWhenAttribute", "MaybeNullWhenAttribute", "(System.Boolean)", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "MaybeNullWhenAttribute", "get_ReturnValue", "()", "summary", "df-generated"] - - ["System.Diagnostics.CodeAnalysis", "MemberNotNullAttribute", "MemberNotNullAttribute", "(System.String)", "summary", "df-generated"] - - ["System.Diagnostics.CodeAnalysis", "MemberNotNullAttribute", "MemberNotNullAttribute", "(System.String[])", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "MemberNotNullAttribute", "get_Members", "()", "summary", "df-generated"] - - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", "MemberNotNullWhenAttribute", "(System.Boolean,System.String)", "summary", "df-generated"] - - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", "MemberNotNullWhenAttribute", "(System.Boolean,System.String[])", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", "get_Members", "()", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "MemberNotNullWhenAttribute", "get_ReturnValue", "()", "summary", "df-generated"] - - ["System.Diagnostics.CodeAnalysis", "NotNullIfNotNullAttribute", "NotNullIfNotNullAttribute", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "NotNullIfNotNullAttribute", "get_ParameterName", "()", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "NotNullWhenAttribute", "NotNullWhenAttribute", "(System.Boolean)", "summary", "df-generated"] - ["System.Diagnostics.CodeAnalysis", "NotNullWhenAttribute", "get_ReturnValue", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml b/csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml index e59fe98d29d..f316ba6e8fa 100644 --- a/csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml +++ b/csharp/ql/lib/ext/generated/System.Diagnostics.Metrics.model.yml @@ -4,8 +4,21 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.Collections.Generic.KeyValuePair[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.ReadOnlySpan>)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Diagnostics.Metrics", "IMeterFactory", True, "Create", "(System.Diagnostics.Metrics.MeterOptions)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] + - ["System.Diagnostics.Metrics", "Instrument", False, "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Instrument.Meter]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Instrument", False, "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.Metrics.Instrument.Name]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Instrument", False, "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[2]", "Argument[this].Property[System.Diagnostics.Metrics.Instrument.Unit]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Instrument", False, "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[3]", "Argument[this].Property[System.Diagnostics.Metrics.Instrument.Description]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Instrument", False, "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>,System.Diagnostics.Metrics.InstrumentAdvice)", "", "Argument[5]", "Argument[this].Property[System.Diagnostics.Metrics.Instrument`1.Advice]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.Collections.Generic.IEnumerable>)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.Collections.Generic.KeyValuePair[])", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.Diagnostics.TagList)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Measurement", False, "Measurement", "(T,System.ReadOnlySpan>)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Meter", False, "Meter", "(System.Diagnostics.Metrics.MeterOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Diagnostics.Metrics", "Meter", False, "Meter", "(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Metrics.Meter.Name]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Meter", False, "Meter", "(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object)", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.Metrics.Meter.Version]", "value", "dfc-generated"] + - ["System.Diagnostics.Metrics", "Meter", False, "Meter", "(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object)", "", "Argument[3]", "Argument[this].Property[System.Diagnostics.Metrics.Meter.Scope]", "value", "dfc-generated"] - ["System.Diagnostics.Metrics", "MeterListener", False, "DisableMeasurementEvents", "(System.Diagnostics.Metrics.Instrument)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Diagnostics.Metrics", "MeterListener", False, "EnableMeasurementEvents", "(System.Diagnostics.Metrics.Instrument,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Diagnostics.Metrics", "MeterListener", False, "EnableMeasurementEvents", "(System.Diagnostics.Metrics.Instrument,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -24,6 +37,13 @@ extensions: - ["System.Diagnostics.Metrics", "Counter", "Add", "(T,System.Collections.Generic.KeyValuePair[])", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Counter", "Add", "(T,System.Diagnostics.TagList)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Counter", "Add", "(T,System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.Collections.Generic.KeyValuePair[])", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.Diagnostics.TagList)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Gauge", "Record", "(T,System.ReadOnlySpan>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] @@ -31,9 +51,8 @@ extensions: - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T,System.Collections.Generic.KeyValuePair[])", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T,System.Diagnostics.TagList)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Histogram", "Record", "(T,System.ReadOnlySpan>)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "IMeterFactory", "Create", "(System.Diagnostics.Metrics.MeterOptions)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "Publish", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "get_Description", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "get_Enabled", "()", "summary", "df-generated"] @@ -42,6 +61,7 @@ extensions: - ["System.Diagnostics.Metrics", "Instrument", "get_Name", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "get_Tags", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "get_Unit", "()", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "Instrument", "(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "RecordMeasurement", "(T)", "summary", "df-generated"] @@ -50,14 +70,17 @@ extensions: - ["System.Diagnostics.Metrics", "Instrument", "RecordMeasurement", "(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "RecordMeasurement", "(T,System.Diagnostics.TagList)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Instrument", "RecordMeasurement", "(T,System.ReadOnlySpan>)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "Measurement", "Measurement", "(T)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "Measurement", "Measurement", "(T,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Instrument", "get_Advice", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Measurement", "get_Tags", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Measurement", "get_Value", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateCounter", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateCounter", "(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Meter", "CreateGauge", "(System.String)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Meter", "CreateGauge", "(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Meter", "CreateHistogram", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateHistogram", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateHistogram", "(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Diagnostics.Metrics", "Meter", "CreateHistogram", "(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>,System.Diagnostics.Metrics.InstrumentAdvice)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateObservableCounter", "(System.String,System.Func>>,System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateObservableCounter", "(System.String,System.Func>>,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "CreateObservableCounter", "(System.String,System.Func>,System.String,System.String)", "summary", "df-generated"] @@ -80,10 +103,8 @@ extensions: - ["System.Diagnostics.Metrics", "Meter", "CreateUpDownCounter", "(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "Dispose", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "Meter", "Meter", "(System.Diagnostics.Metrics.MeterOptions)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "Meter", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "Meter", "Meter", "(System.String,System.String)", "summary", "df-generated"] - - ["System.Diagnostics.Metrics", "Meter", "Meter", "(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "MeterFactoryExtensions", "Create", "(System.Diagnostics.Metrics.IMeterFactory,System.String,System.String,System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "MeterListener", "Dispose", "()", "summary", "df-generated"] - ["System.Diagnostics.Metrics", "MeterListener", "RecordObservableInstruments", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml b/csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml index db3f4cdb724..e0d9622d663 100644 --- a/csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml +++ b/csharp/ql/lib/ext/generated/System.Diagnostics.SymbolStore.model.yml @@ -1,5 +1,12 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.Diagnostics.SymbolStore", "ISymbolDocumentWriter", True, "SetCheckSum", "(System.Guid,System.Byte[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Diagnostics.SymbolStore", "ISymbolDocumentWriter", True, "SetCheckSum", "(System.Guid,System.Byte[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] + - ["System.Diagnostics.SymbolStore", "ISymbolDocumentWriter", True, "SetSource", "(System.Byte[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -16,8 +23,6 @@ extensions: - ["System.Diagnostics.SymbolStore", "ISymbolDocument", "get_LanguageVendor", "()", "summary", "df-generated"] - ["System.Diagnostics.SymbolStore", "ISymbolDocument", "get_SourceLength", "()", "summary", "df-generated"] - ["System.Diagnostics.SymbolStore", "ISymbolDocument", "get_URL", "()", "summary", "df-generated"] - - ["System.Diagnostics.SymbolStore", "ISymbolDocumentWriter", "SetCheckSum", "(System.Guid,System.Byte[])", "summary", "df-generated"] - - ["System.Diagnostics.SymbolStore", "ISymbolDocumentWriter", "SetSource", "(System.Byte[])", "summary", "df-generated"] - ["System.Diagnostics.SymbolStore", "ISymbolMethod", "GetNamespace", "()", "summary", "df-generated"] - ["System.Diagnostics.SymbolStore", "ISymbolMethod", "GetOffset", "(System.Diagnostics.SymbolStore.ISymbolDocument,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Diagnostics.SymbolStore", "ISymbolMethod", "GetParameters", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml b/csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml index 951ceef50d5..c46a5557d93 100644 --- a/csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml +++ b/csharp/ql/lib/ext/generated/System.Diagnostics.Tracing.model.yml @@ -8,12 +8,13 @@ extensions: - ["System.Diagnostics.Tracing", "EventListener", False, "DisableEvents", "(System.Diagnostics.Tracing.EventSource)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventListener", False, "EnableEvents", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventListener", False, "EnableEvents", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - - ["System.Diagnostics.Tracing", "EventListener", False, "EnableEvents", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] + - ["System.Diagnostics.Tracing", "EventListener", False, "EnableEvents", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary)", "", "Argument[3]", "Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventListener", False, "add_EventSourceCreated", "(System.EventHandler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "EventSource", "(System.Diagnostics.Tracing.EventSourceSettings,System.String[])", "", "Argument[1]", "Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_traits]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "GenerateManifest", "(System.Type,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "GenerateManifest", "(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "GetTrait", "(System.String)", "", "Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_traits].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics.Tracing", "EventSource", False, "SendCommand", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary)", "", "Argument[2]", "Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "Write", "(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "Write", "(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] @@ -21,11 +22,13 @@ extensions: - ["System.Diagnostics.Tracing", "EventSource", False, "Write", "(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T)", "", "Argument[4]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "Write", "(System.String,System.Diagnostics.Tracing.EventSourceOptions,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "Write", "(System.String,System.Diagnostics.Tracing.EventSourceOptions,T)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics.Tracing", "EventSource", False, "add_EventCommandExecuted", "(System.EventHandler)", "", "Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands]", "Argument[0].Parameter[1]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "add_EventCommandExecuted", "(System.EventHandler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "dfc-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "get_ConstructionException", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "get_Guid", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", False, "get_ActivityId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", False, "get_RelatedActivityId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics.Tracing", "IncrementingEventCounter", False, "ToString", "()", "", "Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name]", "ReturnValue", "taint", "dfc-generated"] - ["System.Diagnostics.Tracing", "IncrementingPollingCounter", False, "ToString", "()", "", "Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name]", "ReturnValue", "taint", "dfc-generated"] - ["System.Diagnostics.Tracing", "PollingCounter", False, "ToString", "()", "", "Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name]", "ReturnValue", "taint", "dfc-generated"] @@ -38,6 +41,7 @@ extensions: - ["System.Diagnostics.Tracing", "DiagnosticCounter", "get_EventSource", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "DiagnosticCounter", "get_Name", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventAttribute", "EventAttribute", "(System.Int32)", "summary", "df-generated"] + - ["System.Diagnostics.Tracing", "EventAttribute", "get_EventId", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventCommandEventArgs", "DisableEvent", "(System.Int32)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventCommandEventArgs", "EnableEvent", "(System.Int32)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventCounter", "EventCounter", "(System.String,System.Diagnostics.Tracing.EventSource)", "summary", "df-generated"] @@ -64,7 +68,6 @@ extensions: - ["System.Diagnostics.Tracing", "EventSource", "IsEnabled", "(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", "IsEnabled", "(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Diagnostics.Tracing.EventChannel)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", "OnEventCommand", "(System.Diagnostics.Tracing.EventCommandEventArgs)", "summary", "df-generated"] - - ["System.Diagnostics.Tracing", "EventSource", "SendCommand", "(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", "SetCurrentThreadActivityId", "(System.Guid)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", "SetCurrentThreadActivityId", "(System.Guid,System.Guid)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSource", "Write", "(System.String)", "summary", "df-generated"] @@ -100,6 +103,7 @@ extensions: - ["System.Diagnostics.Tracing", "EventSourceException", "EventSourceException", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventSourceException", "EventSourceException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", "get_Channel", "()", "summary", "df-generated"] + - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", "get_EventId", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", "get_EventSource", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", "get_Task", "()", "summary", "df-generated"] - ["System.Diagnostics.Tracing", "EventWrittenEventArgs", "get_Version", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Diagnostics.model.yml b/csharp/ql/lib/ext/generated/System.Diagnostics.model.yml index 88a83e4f3b6..4247cfb9bd1 100644 --- a/csharp/ql/lib/ext/generated/System.Diagnostics.model.yml +++ b/csharp/ql/lib/ext/generated/System.Diagnostics.model.yml @@ -5,8 +5,11 @@ extensions: extensible: summaryModel data: - ["System.Diagnostics", "Activity+Enumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics", "Activity", False, "Activity", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.Activity.OperationName]", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "AddBaggage", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "AddEvent", "(System.Diagnostics.ActivityEvent)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics", "Activity", False, "AddException", "(System.Exception,System.Diagnostics.TagList,System.DateTimeOffset)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics", "Activity", False, "AddLink", "(System.Diagnostics.ActivityLink)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "AddTag", "(System.String,System.Object)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "AddTag", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "EnumerateEvents", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -36,17 +39,27 @@ extensions: - ["System.Diagnostics", "Activity", False, "get_StatusDescription", "()", "", "Argument[this].SyntheticField[System.Diagnostics.Activity._statusDescription]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Activity", False, "get_TagObjects", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "Activity", False, "get_TraceId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "ActivityContext", False, "ActivityContext", "(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.ActivityContext.TraceId]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivityContext", False, "ActivityContext", "(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.ActivityContext.SpanId]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivityContext", False, "ActivityContext", "(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean)", "", "Argument[3]", "Argument[this].Property[System.Diagnostics.ActivityContext.TraceState]", "value", "dfc-generated"] - ["System.Diagnostics", "ActivityCreationOptions", False, "get_SamplingTags", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivityCreationOptions", False, "get_TraceId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivityEvent", False, "EnumerateTagObjects", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivityEvent", False, "get_Tags", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "ActivityLink", False, "ActivityLink", "(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.ActivityLink.Context]", "value", "dfc-generated"] - ["System.Diagnostics", "ActivityLink", False, "EnumerateTagObjects", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivityLink", False, "get_Tags", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Diagnostics", "ActivitySource", False, "CreateActivity", "(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "ActivitySource", False, "ActivitySource", "(System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.ActivitySource.Name]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "ActivitySource", "(System.String,System.String,System.Collections.Generic.IEnumerable>)", "", "Argument[1]", "Argument[this].Property[System.Diagnostics.ActivitySource.Version]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "CreateActivity", "(System.String,System.Diagnostics.ActivityKind)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "CreateActivity", "(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] - ["System.Diagnostics", "ActivitySource", False, "CreateActivity", "(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId]", "value", "dfc-generated"] - - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "ActivitySource", False, "CreateActivity", "(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.String,System.Diagnostics.ActivityKind)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId]", "value", "dfc-generated"] + - ["System.Diagnostics", "ActivitySource", False, "StartActivity", "(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset)", "", "Argument[this]", "ReturnValue.Property[System.Diagnostics.Activity.Source]", "value", "dfc-generated"] - ["System.Diagnostics", "ActivitySpanId", False, "ToHexString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivitySpanId", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "ActivityTagsCollection+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -62,9 +75,13 @@ extensions: - ["System.Diagnostics", "Debug", False, "WriteIf", "(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler,System.String)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Debug", False, "WriteLineIf", "(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Debug", False, "WriteLineIf", "(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler,System.String)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Diagnostics", "DiagnosticListener", False, "DiagnosticListener", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.DiagnosticListener.Name]", "value", "dfc-generated"] - ["System.Diagnostics", "DiagnosticListener", False, "ToString", "()", "", "Argument[this].Property[System.Diagnostics.DiagnosticListener.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "DiagnosticListener", True, "Subscribe", "(System.IObserver>)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", True, "Subscribe", "(System.IObserver>)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "DiagnosticMethodInfo", False, "Create", "(System.Delegate)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "DiagnosticMethodInfo", False, "Create", "(System.Diagnostics.StackFrame)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "DiagnosticMethodInfo", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "DiagnosticSource", False, "StartActivity", "(System.Diagnostics.Activity,System.Object)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "DiagnosticSource", False, "StartActivity", "(System.Diagnostics.Activity,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "DistributedContextPropagator", True, "ExtractBaggage", "(System.Object,System.Diagnostics.DistributedContextPropagator+PropagatorGetterCallback)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] @@ -86,11 +103,16 @@ extensions: - ["System.Diagnostics", "FileVersionInfo", False, "get_ProductName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "FileVersionInfo", False, "get_ProductVersion", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "FileVersionInfo", False, "get_SpecialBuild", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "InitializingSwitchEventArgs", False, "InitializingSwitchEventArgs", "(System.Diagnostics.Switch)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.InitializingSwitchEventArgs.Switch]", "value", "dfc-generated"] + - ["System.Diagnostics", "InitializingTraceSourceEventArgs", False, "InitializingTraceSourceEventArgs", "(System.Diagnostics.TraceSource)", "", "Argument[0]", "Argument[this].Property[System.Diagnostics.InitializingTraceSourceEventArgs.TraceSource]", "value", "dfc-generated"] - ["System.Diagnostics", "MonitoringDescriptionAttribute", True, "get_Description", "()", "", "Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description]", "Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue]", "value", "dfc-generated"] - ["System.Diagnostics", "MonitoringDescriptionAttribute", True, "get_Description", "()", "", "Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Process", False, "GetProcessById", "(System.Int32,System.String)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Diagnostics.Process._machineName]", "value", "dfc-generated"] - ["System.Diagnostics", "Process", False, "GetProcesses", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "Process", False, "Start", "(System.Diagnostics.ProcessStartInfo)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "Process", False, "Start", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "Process", False, "Start", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Diagnostics", "Process", False, "Start", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "Process", False, "get_MachineName", "()", "", "Argument[this].SyntheticField[System.Diagnostics.Process._machineName]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "Process", False, "get_MainModule", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Diagnostics", "Process", False, "get_Modules", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -128,7 +150,7 @@ extensions: - ["System.Diagnostics", "Switch", False, "get_DisplayName", "()", "", "Argument[this].SyntheticField[System.Diagnostics.Switch._displayName]", "ReturnValue", "value", "dfc-generated"] - ["System.Diagnostics", "SwitchAttribute", False, "SwitchAttribute", "(System.String,System.Type)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Diagnostics", "TagList+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Diagnostics", "TagList", False, "TagList", "(System.ReadOnlySpan>)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Diagnostics", "TagList", False, "CopyTo", "(System.Span>)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Diagnostics", "TextWriterTraceListener", False, "TextWriterTraceListener", "(System.IO.TextWriter,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Diagnostics", "TextWriterTraceListener", False, "TextWriterTraceListener", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Diagnostics", "TextWriterTraceListener", False, "TextWriterTraceListener", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -156,7 +178,6 @@ extensions: data: - ["System.Diagnostics", "Activity+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Diagnostics", "Activity+Enumerator", "get_Current", "()", "summary", "df-generated"] - - ["System.Diagnostics", "Activity", "Activity", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "Activity", "Dispose", "()", "summary", "df-generated"] - ["System.Diagnostics", "Activity", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Diagnostics", "Activity", "GetCustomProperty", "(System.String)", "summary", "df-generated"] @@ -171,7 +192,6 @@ extensions: - ["System.Diagnostics", "Activity", "get_Status", "()", "summary", "df-generated"] - ["System.Diagnostics", "Activity", "get_Tags", "()", "summary", "df-generated"] - ["System.Diagnostics", "Activity", "remove_CurrentChanged", "(System.EventHandler)", "summary", "df-generated"] - - ["System.Diagnostics", "ActivityContext", "ActivityContext", "(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityContext", "Equals", "(System.Diagnostics.ActivityContext)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityContext", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityContext", "GetHashCode", "()", "summary", "df-generated"] @@ -195,7 +215,6 @@ extensions: - ["System.Diagnostics", "ActivityEvent", "ActivityEvent", "(System.String,System.DateTimeOffset,System.Diagnostics.ActivityTagsCollection)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityEvent", "get_Name", "()", "summary", "df-generated"] - ["System.Diagnostics", "ActivityEvent", "get_Timestamp", "()", "summary", "df-generated"] - - ["System.Diagnostics", "ActivityLink", "ActivityLink", "(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityLink", "Equals", "(System.Diagnostics.ActivityLink)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityLink", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityLink", "GetHashCode", "()", "summary", "df-generated"] @@ -203,13 +222,13 @@ extensions: - ["System.Diagnostics", "ActivityLink", "op_Equality", "(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityLink", "op_Inequality", "(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink)", "summary", "df-generated"] - ["System.Diagnostics", "ActivityListener", "Dispose", "()", "summary", "df-generated"] + - ["System.Diagnostics", "ActivitySource", "ActivitySource", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "ActivitySource", "(System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "AddActivityListener", "(System.Diagnostics.ActivityListener)", "summary", "df-generated"] - - ["System.Diagnostics", "ActivitySource", "CreateActivity", "(System.String,System.Diagnostics.ActivityKind)", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "Dispose", "()", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "HasListeners", "()", "summary", "df-generated"] - - ["System.Diagnostics", "ActivitySource", "StartActivity", "(System.String,System.Diagnostics.ActivityKind)", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "get_Name", "()", "summary", "df-generated"] + - ["System.Diagnostics", "ActivitySource", "get_Tags", "()", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySource", "get_Version", "()", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySpanId", "CopyTo", "(System.Span)", "summary", "df-generated"] - ["System.Diagnostics", "ActivitySpanId", "CreateFromBytes", "(System.ReadOnlySpan)", "summary", "df-generated"] @@ -348,6 +367,7 @@ extensions: - ["System.Diagnostics", "DebuggableAttribute", "get_IsJITOptimizerDisabled", "()", "summary", "df-generated"] - ["System.Diagnostics", "DebuggableAttribute", "get_IsJITTrackingEnabled", "()", "summary", "df-generated"] - ["System.Diagnostics", "Debugger", "Break", "()", "summary", "df-generated"] + - ["System.Diagnostics", "Debugger", "BreakForUserUnhandledException", "(System.Exception)", "summary", "df-generated"] - ["System.Diagnostics", "Debugger", "IsLogging", "()", "summary", "df-generated"] - ["System.Diagnostics", "Debugger", "Launch", "()", "summary", "df-generated"] - ["System.Diagnostics", "Debugger", "Log", "(System.Int32,System.String,System.String)", "summary", "df-generated"] @@ -378,7 +398,6 @@ extensions: - ["System.Diagnostics", "DelimitedListTraceListener", "DelimitedListTraceListener", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "DelimitedListTraceListener", "DelimitedListTraceListener", "(System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics", "DelimitedListTraceListener", "GetSupportedAttributes", "()", "summary", "df-generated"] - - ["System.Diagnostics", "DiagnosticListener", "DiagnosticListener", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", "Dispose", "()", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", "IsEnabled", "()", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", "IsEnabled", "(System.String)", "summary", "df-generated"] @@ -390,6 +409,9 @@ extensions: - ["System.Diagnostics", "DiagnosticListener", "Subscribe", "(System.IObserver>,System.Predicate)", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", "Write", "(System.String,System.Object)", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticListener", "get_AllListeners", "()", "summary", "df-generated"] + - ["System.Diagnostics", "DiagnosticListener", "get_Name", "()", "summary", "df-generated"] + - ["System.Diagnostics", "DiagnosticMethodInfo", "get_DeclaringAssemblyName", "()", "summary", "df-generated"] + - ["System.Diagnostics", "DiagnosticMethodInfo", "get_DeclaringTypeName", "()", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticSource", "IsEnabled", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticSource", "IsEnabled", "(System.String,System.Object,System.Object)", "summary", "df-generated"] - ["System.Diagnostics", "DiagnosticSource", "OnActivityExport", "(System.Diagnostics.Activity,System.Object)", "summary", "df-generated"] @@ -513,9 +535,7 @@ extensions: - ["System.Diagnostics", "FileVersionInfo", "get_ProductPrivatePart", "()", "summary", "df-generated"] - ["System.Diagnostics", "ICollectData", "CloseData", "()", "summary", "df-generated"] - ["System.Diagnostics", "ICollectData", "CollectData", "(System.Int32,System.IntPtr,System.IntPtr,System.Int32,System.IntPtr)", "summary", "df-generated"] - - ["System.Diagnostics", "InitializingSwitchEventArgs", "InitializingSwitchEventArgs", "(System.Diagnostics.Switch)", "summary", "df-generated"] - ["System.Diagnostics", "InitializingSwitchEventArgs", "get_Switch", "()", "summary", "df-generated"] - - ["System.Diagnostics", "InitializingTraceSourceEventArgs", "InitializingTraceSourceEventArgs", "(System.Diagnostics.TraceSource)", "summary", "df-generated"] - ["System.Diagnostics", "InitializingTraceSourceEventArgs", "get_TraceSource", "()", "summary", "df-generated"] - ["System.Diagnostics", "InstanceData", "InstanceData", "(System.String,System.Diagnostics.CounterSample)", "summary", "df-generated"] - ["System.Diagnostics", "InstanceData", "get_InstanceName", "()", "summary", "df-generated"] @@ -618,9 +638,7 @@ extensions: - ["System.Diagnostics", "Process", "OnExited", "()", "summary", "df-generated"] - ["System.Diagnostics", "Process", "Refresh", "()", "summary", "df-generated"] - ["System.Diagnostics", "Process", "Start", "()", "summary", "df-generated"] - - ["System.Diagnostics", "Process", "Start", "(System.String)", "summary", "df-generated"] - ["System.Diagnostics", "Process", "Start", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Diagnostics", "Process", "Start", "(System.String,System.String)", "summary", "df-generated"] - ["System.Diagnostics", "Process", "Start", "(System.String,System.String,System.Security.SecureString,System.String)", "summary", "df-generated"] - ["System.Diagnostics", "Process", "Start", "(System.String,System.String,System.String,System.Security.SecureString,System.String)", "summary", "df-generated"] - ["System.Diagnostics", "Process", "WaitForExit", "()", "summary", "df-generated"] @@ -746,10 +764,10 @@ extensions: - ["System.Diagnostics", "TagList+Enumerator", "Reset", "()", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "Add", "(System.String,System.Object)", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - - ["System.Diagnostics", "TagList", "CopyTo", "(System.Span>)", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "IndexOf", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "Remove", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Diagnostics", "TagList", "TagList", "(System.ReadOnlySpan>)", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "get_Count", "()", "summary", "df-generated"] - ["System.Diagnostics", "TagList", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Diagnostics", "TextWriterTraceListener", "Close", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml b/csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml index 4f8b1bd08ee..27193e193fa 100644 --- a/csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml +++ b/csharp/ql/lib/ext/generated/System.DirectoryServices.Protocols.model.yml @@ -4,10 +4,15 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttribute)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.Byte[])", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.Uri)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.DirectoryServices.Protocols", "AddRequest", False, "AddRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttribute[])", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.AddRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "AddRequest", False, "AddRequest", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.AddRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "AsqRequestControl", False, "AsqRequestControl", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.AsqRequestControl.AttributeName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttribute)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.CompareRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.Byte[])", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.CompareRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.CompareRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "CompareRequest", False, "CompareRequest", "(System.String,System.String,System.Uri)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.CompareRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "CrossDomainMoveControl", False, "CrossDomainMoveControl", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.CrossDomainMoveControl.TargetDomainController]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "DeleteRequest", False, "DeleteRequest", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DeleteRequest.DistinguishedName]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirSyncRequestControl", False, "DirSyncRequestControl", "(System.Byte[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryAttribute", False, "Add", "(System.Byte[])", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryAttribute", False, "Add", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -37,6 +42,7 @@ extensions: - ["System.DirectoryServices.Protocols", "DirectoryAttributeModificationCollection", False, "set_Item", "(System.Int32,System.DirectoryServices.Protocols.DirectoryAttributeModification)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryConnection", False, "get_ClientCertificates", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryConnection", True, "get_Directory", "()", "", "Argument[this].SyntheticField[System.DirectoryServices.Protocols.DirectoryConnection._directoryIdentifier]", "ReturnValue", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "DirectoryControl", False, "DirectoryControl", "(System.String,System.Byte[],System.Boolean,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DirectoryControl.Type]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "Add", "(System.DirectoryServices.Protocols.DirectoryControl)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "AddRange", "(System.DirectoryServices.Protocols.DirectoryControlCollection)", "", "Argument[0].Property[System.Collections.CollectionBase.List].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "AddRange", "(System.DirectoryServices.Protocols.DirectoryControl[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.InnerList].Element", "value", "dfc-generated"] @@ -44,7 +50,12 @@ extensions: - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "Insert", "(System.Int32,System.DirectoryServices.Protocols.DirectoryControl)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "ReturnValue", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", False, "set_Item", "(System.Int32,System.DirectoryServices.Protocols.DirectoryControl)", "", "Argument[1]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "DirectoryOperationException", False, "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DirectoryOperationException.Response]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "DirectoryOperationException", False, "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DirectoryOperationException.Response]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "DirectoryOperationException", False, "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DirectoryOperationException.Response]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "DirectoryResponse", True, "get_Referral", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.DirectoryServices.Protocols", "DsmlAuthRequest", False, "DsmlAuthRequest", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.DsmlAuthRequest.Principal]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ExtendedRequest", False, "ExtendedRequest", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.ExtendedRequest.RequestName]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "ExtendedRequest", False, "ExtendedRequest", "(System.String,System.Byte[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapConnection", False, "BeginSendRequest", "(System.DirectoryServices.Protocols.DirectoryRequest,System.TimeSpan,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", "", "Argument[4]", "ReturnValue.SyntheticField[System.DirectoryServices.Protocols.LdapAsyncResult._stateObject]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "LdapConnection", False, "EndSendRequest", "(System.IAsyncResult)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -52,9 +63,16 @@ extensions: - ["System.DirectoryServices.Protocols", "LdapConnection", False, "LdapConnection", "(System.DirectoryServices.Protocols.LdapDirectoryIdentifier,System.Net.NetworkCredential,System.DirectoryServices.Protocols.AuthType)", "", "Argument[0]", "Argument[this].SyntheticField[System.DirectoryServices.Protocols.DirectoryConnection._directoryIdentifier]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "LdapDirectoryIdentifier", False, "LdapDirectoryIdentifier", "(System.String[],System.Boolean,System.Boolean)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.DirectoryServices.Protocols.LdapDirectoryIdentifier._servers].Element", "taint", "dfc-generated"] - ["System.DirectoryServices.Protocols", "LdapDirectoryIdentifier", False, "get_Servers", "()", "", "Argument[this].SyntheticField[System.DirectoryServices.Protocols.LdapDirectoryIdentifier._servers].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "LdapException", False, "LdapException", "(System.Int32,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.DirectoryServices.Protocols.LdapException.ServerErrorMessage]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ModifyDNRequest", False, "ModifyDNRequest", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.ModifyDNRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ModifyDNRequest", False, "ModifyDNRequest", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.DirectoryServices.Protocols.ModifyDNRequest.NewParentDistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ModifyDNRequest", False, "ModifyDNRequest", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.DirectoryServices.Protocols.ModifyDNRequest.NewName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ModifyRequest", False, "ModifyRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttributeModification[])", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.ModifyRequest.DistinguishedName]", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "ModifyRequest", False, "ModifyRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttributeOperation,System.String,System.Object[])", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.ModifyRequest.DistinguishedName]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "PageResultRequestControl", False, "PageResultRequestControl", "(System.Byte[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.DirectoryServices.Protocols", "PartialResultsCollection", False, "CopyTo", "(System.Object[],System.Int32)", "", "Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "PartialResultsCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.DirectoryServices.Protocols", "SearchRequest", False, "SearchRequest", "(System.String,System.String,System.DirectoryServices.Protocols.SearchScope,System.String[])", "", "Argument[0]", "Argument[this].Property[System.DirectoryServices.Protocols.SearchRequest.DistinguishedName]", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "SearchRequest", False, "SearchRequest", "(System.String,System.String,System.DirectoryServices.Protocols.SearchScope,System.String[])", "", "Argument[3].Element", "Argument[this].Property[System.DirectoryServices.Protocols.SearchRequest.Attributes].Element", "value", "dfc-generated"] - ["System.DirectoryServices.Protocols", "SearchResultAttributeCollection", False, "CopyTo", "(System.DirectoryServices.Protocols.DirectoryAttribute[],System.Int32)", "", "Argument[this]", "Argument[0].Element", "taint", "df-generated"] - ["System.DirectoryServices.Protocols", "SearchResultAttributeCollection", False, "get_AttributeNames", "()", "", "Argument[this].Property[System.Collections.DictionaryBase.Dictionary].Property[System.Collections.IDictionary.Keys]", "ReturnValue", "value", "dfc-generated"] @@ -74,10 +92,7 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.DirectoryServices.Protocols", "AddRequest", "AddRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttribute[])", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "AddRequest", "AddRequest", "(System.String,System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "AddRequest", "get_Attributes", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "AsqRequestControl", "AsqRequestControl", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "AsqRequestControl", "GetValue", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "AsqResponseControl", "get_Result", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "BerConversionException", "BerConversionException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] @@ -86,9 +101,7 @@ extensions: - ["System.DirectoryServices.Protocols", "BerConverter", "Decode", "(System.String,System.Byte[])", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "BerConverter", "Encode", "(System.String,System.Object[])", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "CompareRequest", "get_Assertion", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "CrossDomainMoveControl", "CrossDomainMoveControl", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "CrossDomainMoveControl", "GetValue", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DeleteRequest", "DeleteRequest", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirSyncRequestControl", "DirSyncRequestControl", "(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirSyncRequestControl", "DirSyncRequestControl", "(System.Byte[],System.DirectoryServices.Protocols.DirectorySynchronizationOptions,System.Int32)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirSyncRequestControl", "GetValue", "()", "summary", "df-generated"] @@ -112,7 +125,6 @@ extensions: - ["System.DirectoryServices.Protocols", "DirectoryAttributeModificationCollection", "Remove", "(System.DirectoryServices.Protocols.DirectoryAttributeModification)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryConnection", "SendRequest", "(System.DirectoryServices.Protocols.DirectoryRequest)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryConnection", "set_Credential", "(System.Net.NetworkCredential)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DirectoryControl", "DirectoryControl", "(System.String,System.Byte[],System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControl", "GetValue", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControl", "get_Type", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryControlCollection", "Contains", "(System.DirectoryServices.Protocols.DirectoryControl)", "summary", "df-generated"] @@ -122,9 +134,6 @@ extensions: - ["System.DirectoryServices.Protocols", "DirectoryException", "DirectoryException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryException", "DirectoryException", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryException", "DirectoryException", "(System.String,System.Exception)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse,System.String)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.DirectoryServices.Protocols.DirectoryResponse,System.String,System.Exception)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryOperationException", "DirectoryOperationException", "(System.String,System.Exception)", "summary", "df-generated"] @@ -134,10 +143,8 @@ extensions: - ["System.DirectoryServices.Protocols", "DirectoryResponse", "get_MatchedDN", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryResponse", "get_RequestId", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "DirectoryResponse", "get_ResultCode", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "DsmlAuthRequest", "DsmlAuthRequest", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "ExtendedDNControl", "ExtendedDNControl", "(System.DirectoryServices.Protocols.ExtendedDNFlag)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "ExtendedDNControl", "GetValue", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "ExtendedRequest", "ExtendedRequest", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapConnection", "Abort", "(System.IAsyncResult)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapConnection", "BeginSendRequest", "(System.DirectoryServices.Protocols.DirectoryRequest,System.DirectoryServices.Protocols.PartialResultProcessing,System.AsyncCallback,System.Object)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapConnection", "Bind", "()", "summary", "df-generated"] @@ -162,7 +169,6 @@ extensions: - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.Int32)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.Int32,System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.Int32,System.String,System.Exception)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.Int32,System.String,System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.String)", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapException", "LdapException", "(System.String,System.Exception)", "summary", "df-generated"] @@ -174,9 +180,6 @@ extensions: - ["System.DirectoryServices.Protocols", "LdapSessionOptions", "get_HostReachable", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapSessionOptions", "get_SecurityContext", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "LdapSessionOptions", "get_SslInformation", "()", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "ModifyDNRequest", "ModifyDNRequest", "(System.String,System.String,System.String)", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "ModifyRequest", "ModifyRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttributeModification[])", "summary", "df-generated"] - - ["System.DirectoryServices.Protocols", "ModifyRequest", "ModifyRequest", "(System.String,System.DirectoryServices.Protocols.DirectoryAttributeOperation,System.String,System.Object[])", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "ModifyRequest", "get_Modifications", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "PageResultRequestControl", "GetValue", "()", "summary", "df-generated"] - ["System.DirectoryServices.Protocols", "PageResultRequestControl", "PageResultRequestControl", "(System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Dynamic.model.yml b/csharp/ql/lib/ext/generated/System.Dynamic.model.yml index f12000d073a..f9445abc171 100644 --- a/csharp/ql/lib/ext/generated/System.Dynamic.model.yml +++ b/csharp/ql/lib/ext/generated/System.Dynamic.model.yml @@ -14,15 +14,29 @@ extensions: - ["System.Dynamic", "BindingRestrictions", False, "Merge", "(System.Dynamic.BindingRestrictions)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Dynamic", "BindingRestrictions", False, "ToExpression", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Dynamic", "ConvertBinder", True, "FallbackConvert", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "CreateInstanceBinder", False, "CreateInstanceBinder", "(System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.CreateInstanceBinder.CallInfo]", "value", "dfc-generated"] + - ["System.Dynamic", "DeleteIndexBinder", False, "DeleteIndexBinder", "(System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.DeleteIndexBinder.CallInfo]", "value", "dfc-generated"] + - ["System.Dynamic", "DeleteMemberBinder", False, "DeleteMemberBinder", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.DeleteMemberBinder.Name]", "value", "dfc-generated"] - ["System.Dynamic", "DynamicMetaObject", False, "Create", "(System.Object,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Dynamic.DynamicMetaObject._value]", "value", "dfc-generated"] + - ["System.Dynamic", "DynamicMetaObject", False, "DynamicMetaObject", "(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.DynamicMetaObject.Expression]", "value", "dfc-generated"] + - ["System.Dynamic", "DynamicMetaObject", False, "DynamicMetaObject", "(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)", "", "Argument[1]", "Argument[this].Property[System.Dynamic.DynamicMetaObject.Restrictions]", "value", "dfc-generated"] - ["System.Dynamic", "DynamicMetaObject", False, "DynamicMetaObject", "(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions,System.Object)", "", "Argument[2]", "Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value]", "value", "dfc-generated"] - ["System.Dynamic", "DynamicMetaObject", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "DynamicMetaObjectBinder", False, "Bind", "(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue].Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Dynamic", "DynamicMetaObjectBinder", False, "Bind", "(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] - ["System.Dynamic", "ExpandoObject", False, "TryGetValue", "(System.String,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Dynamic", "GetIndexBinder", False, "GetIndexBinder", "(System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.GetIndexBinder.CallInfo]", "value", "dfc-generated"] - ["System.Dynamic", "GetIndexBinder", True, "FallbackGetIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "GetMemberBinder", False, "GetMemberBinder", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.GetMemberBinder.Name]", "value", "dfc-generated"] - ["System.Dynamic", "GetMemberBinder", True, "FallbackGetMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "InvokeBinder", False, "InvokeBinder", "(System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.InvokeBinder.CallInfo]", "value", "dfc-generated"] - ["System.Dynamic", "InvokeBinder", True, "FallbackInvoke", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "InvokeMemberBinder", False, "InvokeMemberBinder", "(System.String,System.Boolean,System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.InvokeMemberBinder.Name]", "value", "dfc-generated"] + - ["System.Dynamic", "InvokeMemberBinder", False, "InvokeMemberBinder", "(System.String,System.Boolean,System.Dynamic.CallInfo)", "", "Argument[2]", "Argument[this].Property[System.Dynamic.InvokeMemberBinder.CallInfo]", "value", "dfc-generated"] - ["System.Dynamic", "InvokeMemberBinder", True, "FallbackInvokeMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "SetIndexBinder", False, "SetIndexBinder", "(System.Dynamic.CallInfo)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.SetIndexBinder.CallInfo]", "value", "dfc-generated"] - ["System.Dynamic", "SetIndexBinder", True, "FallbackSetIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "", "Argument[3]", "ReturnValue", "value", "dfc-generated"] + - ["System.Dynamic", "SetMemberBinder", False, "SetMemberBinder", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Dynamic.SetMemberBinder.Name]", "value", "dfc-generated"] - ["System.Dynamic", "SetMemberBinder", True, "FallbackSetMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - ["System.Dynamic", "UnaryOperationBinder", True, "FallbackUnaryOperation", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - addsTo: @@ -47,19 +61,16 @@ extensions: - ["System.Dynamic", "ConvertBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "ConvertBinder", "get_Type", "()", "summary", "df-generated"] - ["System.Dynamic", "CreateInstanceBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "CreateInstanceBinder", "CreateInstanceBinder", "(System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "CreateInstanceBinder", "FallbackCreateInstance", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "CreateInstanceBinder", "FallbackCreateInstance", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "CreateInstanceBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "CreateInstanceBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "DeleteIndexBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "DeleteIndexBinder", "DeleteIndexBinder", "(System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "DeleteIndexBinder", "FallbackDeleteIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "DeleteIndexBinder", "FallbackDeleteIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "DeleteIndexBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "DeleteIndexBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "DeleteMemberBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "DeleteMemberBinder", "DeleteMemberBinder", "(System.String,System.Boolean)", "summary", "df-generated"] - ["System.Dynamic", "DeleteMemberBinder", "FallbackDeleteMember", "(System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "DeleteMemberBinder", "FallbackDeleteMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "DeleteMemberBinder", "get_IgnoreCase", "()", "summary", "df-generated"] @@ -77,7 +88,6 @@ extensions: - ["System.Dynamic", "DynamicMetaObject", "BindSetIndex", "(System.Dynamic.SetIndexBinder,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "BindSetMember", "(System.Dynamic.SetMemberBinder,System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "BindUnaryOperation", "(System.Dynamic.UnaryOperationBinder)", "summary", "df-generated"] - - ["System.Dynamic", "DynamicMetaObject", "DynamicMetaObject", "(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions)", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "GetDynamicMemberNames", "()", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "get_Expression", "()", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "get_HasValue", "()", "summary", "df-generated"] @@ -85,7 +95,6 @@ extensions: - ["System.Dynamic", "DynamicMetaObject", "get_Restrictions", "()", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObject", "get_RuntimeType", "()", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObjectBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "DynamicMetaObjectBinder", "Bind", "(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObjectBinder", "Defer", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObjectBinder", "Defer", "(System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "DynamicMetaObjectBinder", "GetUpdateExpression", "(System.Type)", "summary", "df-generated"] @@ -115,12 +124,10 @@ extensions: - ["System.Dynamic", "ExpandoObject", "remove_PropertyChanged", "(System.ComponentModel.PropertyChangedEventHandler)", "summary", "df-generated"] - ["System.Dynamic", "GetIndexBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "GetIndexBinder", "FallbackGetIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "GetIndexBinder", "GetIndexBinder", "(System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "GetIndexBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "GetIndexBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "GetMemberBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "GetMemberBinder", "FallbackGetMember", "(System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - - ["System.Dynamic", "GetMemberBinder", "GetMemberBinder", "(System.String,System.Boolean)", "summary", "df-generated"] - ["System.Dynamic", "GetMemberBinder", "get_IgnoreCase", "()", "summary", "df-generated"] - ["System.Dynamic", "GetMemberBinder", "get_Name", "()", "summary", "df-generated"] - ["System.Dynamic", "GetMemberBinder", "get_ReturnType", "()", "summary", "df-generated"] @@ -128,25 +135,21 @@ extensions: - ["System.Dynamic", "IInvokeOnGetBinder", "get_InvokeOnGet", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "InvokeBinder", "FallbackInvoke", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "InvokeBinder", "InvokeBinder", "(System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "InvokeBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "FallbackInvoke", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "FallbackInvokeMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - - ["System.Dynamic", "InvokeMemberBinder", "InvokeMemberBinder", "(System.String,System.Boolean,System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "get_IgnoreCase", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "get_Name", "()", "summary", "df-generated"] - ["System.Dynamic", "InvokeMemberBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "SetIndexBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "SetIndexBinder", "FallbackSetIndex", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - - ["System.Dynamic", "SetIndexBinder", "SetIndexBinder", "(System.Dynamic.CallInfo)", "summary", "df-generated"] - ["System.Dynamic", "SetIndexBinder", "get_CallInfo", "()", "summary", "df-generated"] - ["System.Dynamic", "SetIndexBinder", "get_ReturnType", "()", "summary", "df-generated"] - ["System.Dynamic", "SetMemberBinder", "Bind", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[])", "summary", "df-generated"] - ["System.Dynamic", "SetMemberBinder", "FallbackSetMember", "(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject)", "summary", "df-generated"] - - ["System.Dynamic", "SetMemberBinder", "SetMemberBinder", "(System.String,System.Boolean)", "summary", "df-generated"] - ["System.Dynamic", "SetMemberBinder", "get_IgnoreCase", "()", "summary", "df-generated"] - ["System.Dynamic", "SetMemberBinder", "get_Name", "()", "summary", "df-generated"] - ["System.Dynamic", "SetMemberBinder", "get_ReturnType", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml b/csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml index 78e5ff152ce..668e91308c0 100644 --- a/csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml +++ b/csharp/ql/lib/ext/generated/System.Formats.Asn1.model.yml @@ -21,6 +21,9 @@ extensions: - ["System.Formats.Asn1", "AsnReader", False, "TryReadBitString", "(System.Span,System.Int32,System.Int32,System.Nullable)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Formats.Asn1", "AsnReader", False, "TryReadCharacterStringBytes", "(System.Span,System.Formats.Asn1.Asn1Tag,System.Int32)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Formats.Asn1", "AsnReader", False, "TryReadOctetString", "(System.Span,System.Int32,System.Nullable)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] + - ["System.Formats.Asn1", "AsnWriter", False, "Encode", "(System.Func,TReturn>)", "", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"] + - ["System.Formats.Asn1", "AsnWriter", False, "Encode", "(TState,System.Func,TReturn>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Formats.Asn1", "AsnWriter", False, "Encode", "(TState,System.Func,TReturn>)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Formats.Asn1", "AsnWriter", False, "PushOctetString", "(System.Nullable)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Formats.Asn1", "AsnWriter", False, "PushSequence", "(System.Nullable)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Formats.Asn1", "AsnWriter", False, "PushSetOf", "(System.Nullable)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -50,6 +53,7 @@ extensions: - ["System.Formats.Asn1", "AsnContentException", "AsnContentException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnContentException", "AsnContentException", "(System.String)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnContentException", "AsnContentException", "(System.String,System.Exception)", "summary", "df-generated"] + - ["System.Formats.Asn1", "AsnDecoder", "DecodeLength", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "ReadBoolean", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Nullable)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "ReadCharacterString", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.UniversalTagNumber,System.Int32,System.Nullable)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "ReadEncodedValue", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] @@ -65,6 +69,7 @@ extensions: - ["System.Formats.Asn1", "AsnDecoder", "ReadSequence", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32,System.Nullable)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "ReadSetOf", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32,System.Boolean,System.Nullable)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "ReadUtcTime", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable)", "summary", "df-generated"] + - ["System.Formats.Asn1", "AsnDecoder", "TryDecodeLength", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Nullable,System.Int32)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "TryReadCharacterString", "(System.ReadOnlySpan,System.Span,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.UniversalTagNumber,System.Int32,System.Int32,System.Nullable)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "TryReadEncodedValue", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.Asn1Tag,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Formats.Asn1", "AsnDecoder", "TryReadInt32", "(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Formats.Nrbf.model.yml b/csharp/ql/lib/ext/generated/System.Formats.Nrbf.model.yml new file mode 100644 index 00000000000..2a0c8aa805b --- /dev/null +++ b/csharp/ql/lib/ext/generated/System.Formats.Nrbf.model.yml @@ -0,0 +1,53 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.Formats.Nrbf", "ClassRecord", False, "GetArrayRecord", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", False, "GetClassRecord", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", False, "GetRawValue", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", False, "GetSerializationRecord", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", False, "GetString", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", False, "GetTimeSpan", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "PrimitiveTypeRecord", False, "get_Value", "()", "", "Argument[this].Property[System.Formats.Nrbf.PrimitiveTypeRecord`1.Value]", "ReturnValue", "value", "dfc-generated"] + - ["System.Formats.Nrbf", "PrimitiveTypeRecord", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Formats.Nrbf", "SerializationRecord", True, "get_Id", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecord", True, "get_TypeName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["System.Formats.Nrbf", "ArrayRecord", "GetArray", "(System.Type,System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ArrayRecord", "get_Lengths", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ArrayRecord", "get_Rank", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetBoolean", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetByte", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetChar", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetDateTime", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetDecimal", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetDouble", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetInt16", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetInt32", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetInt64", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetSByte", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetSingle", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetUInt16", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetUInt32", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "GetUInt64", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "HasMember", "(System.String)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "ClassRecord", "get_MemberNames", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "NrbfDecoder", "Decode", "(System.IO.Stream,System.Collections.Generic.IReadOnlyDictionary,System.Formats.Nrbf.PayloadOptions,System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "NrbfDecoder", "Decode", "(System.IO.Stream,System.Formats.Nrbf.PayloadOptions,System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "NrbfDecoder", "DecodeClassRecord", "(System.IO.Stream,System.Formats.Nrbf.PayloadOptions,System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "NrbfDecoder", "StartsWithPayloadHeader", "(System.IO.Stream)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "NrbfDecoder", "StartsWithPayloadHeader", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "PrimitiveTypeRecord", "get_Value", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SZArrayRecord", "GetArray", "(System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SZArrayRecord", "get_Length", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SZArrayRecord", "get_Lengths", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecord", "TypeNameMatches", "(System.Type)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecord", "get_RecordType", "()", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecordId", "Equals", "(System.Formats.Nrbf.SerializationRecordId)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecordId", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Formats.Nrbf", "SerializationRecordId", "GetHashCode", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml b/csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml index 47a4aa105bd..ca2a9e8cea1 100644 --- a/csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml +++ b/csharp/ql/lib/ext/generated/System.Formats.Tar.model.yml @@ -27,8 +27,10 @@ extensions: - ["System.Formats.Tar", "TarEntry", "ExtractToFile", "(System.String,System.Boolean)", "summary", "df-generated"] - ["System.Formats.Tar", "TarEntry", "ExtractToFileAsync", "(System.String,System.Boolean,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Formats.Tar", "TarEntry", "get_Checksum", "()", "summary", "df-generated"] + - ["System.Formats.Tar", "TarEntry", "get_DataOffset", "()", "summary", "df-generated"] - ["System.Formats.Tar", "TarEntry", "get_EntryType", "()", "summary", "df-generated"] - ["System.Formats.Tar", "TarEntry", "get_Format", "()", "summary", "df-generated"] + - ["System.Formats.Tar", "TarEntry", "get_FormatIsOctalOnly", "()", "summary", "df-generated"] - ["System.Formats.Tar", "TarEntry", "get_Length", "()", "summary", "df-generated"] - ["System.Formats.Tar", "TarFile", "CreateFromDirectory", "(System.String,System.IO.Stream,System.Boolean)", "summary", "df-generated"] - ["System.Formats.Tar", "TarFile", "CreateFromDirectory", "(System.String,System.String,System.Boolean)", "summary", "df-generated"] @@ -44,6 +46,7 @@ extensions: - ["System.Formats.Tar", "TarWriter", "Dispose", "()", "summary", "df-generated"] - ["System.Formats.Tar", "TarWriter", "TarWriter", "(System.IO.Stream)", "summary", "df-generated"] - ["System.Formats.Tar", "TarWriter", "TarWriter", "(System.IO.Stream,System.Boolean)", "summary", "df-generated"] + - ["System.Formats.Tar", "TarWriter", "get_Format", "()", "summary", "df-generated"] - ["System.Formats.Tar", "UstarTarEntry", "UstarTarEntry", "(System.Formats.Tar.TarEntryType,System.String)", "summary", "df-generated"] - ["System.Formats.Tar", "V7TarEntry", "V7TarEntry", "(System.Formats.Tar.TarEntry)", "summary", "df-generated"] - ["System.Formats.Tar", "V7TarEntry", "V7TarEntry", "(System.Formats.Tar.TarEntryType,System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Globalization.model.yml b/csharp/ql/lib/ext/generated/System.Globalization.model.yml index 6e831269161..67a30e078d3 100644 --- a/csharp/ql/lib/ext/generated/System.Globalization.model.yml +++ b/csharp/ql/lib/ext/generated/System.Globalization.model.yml @@ -337,11 +337,14 @@ extensions: - ["System.Globalization", "HijriCalendar", "get_Eras", "()", "summary", "df-generated"] - ["System.Globalization", "HijriCalendar", "get_MaxSupportedDateTime", "()", "summary", "df-generated"] - ["System.Globalization", "HijriCalendar", "get_MinSupportedDateTime", "()", "summary", "df-generated"] + - ["System.Globalization", "ISOWeek", "GetWeekOfYear", "(System.DateOnly)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "GetWeekOfYear", "(System.DateTime)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "GetWeeksInYear", "(System.Int32)", "summary", "df-generated"] + - ["System.Globalization", "ISOWeek", "GetYear", "(System.DateOnly)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "GetYear", "(System.DateTime)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "GetYearEnd", "(System.Int32)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "GetYearStart", "(System.Int32)", "summary", "df-generated"] + - ["System.Globalization", "ISOWeek", "ToDateOnly", "(System.Int32,System.Int32,System.DayOfWeek)", "summary", "df-generated"] - ["System.Globalization", "ISOWeek", "ToDateTime", "(System.Int32,System.Int32,System.DayOfWeek)", "summary", "df-generated"] - ["System.Globalization", "IdnMapping", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Globalization", "IdnMapping", "GetHashCode", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.Compression.model.yml b/csharp/ql/lib/ext/generated/System.IO.Compression.model.yml index cdad89ab171..e3fb341fdf9 100644 --- a/csharp/ql/lib/ext/generated/System.IO.Compression.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.Compression.model.yml @@ -9,11 +9,13 @@ extensions: - ["System.IO.Compression", "DeflateStream", False, "get_BaseStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Compression", "GZipStream", False, "GZipStream", "(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] - ["System.IO.Compression", "GZipStream", False, "GZipStream", "(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] + - ["System.IO.Compression", "GZipStream", False, "GZipStream", "(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] - ["System.IO.Compression", "GZipStream", False, "get_BaseStream", "()", "", "Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "ReturnValue", "value", "dfc-generated"] - ["System.IO.Compression", "ZLibException", False, "ZLibException", "(System.String,System.String,System.Int32,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.IO.Compression", "ZLibException", False, "ZLibException", "(System.String,System.String,System.Int32,System.String)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.IO.Compression", "ZLibStream", False, "ZLibStream", "(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] - ["System.IO.Compression", "ZLibStream", False, "ZLibStream", "(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] + - ["System.IO.Compression", "ZLibStream", False, "ZLibStream", "(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "value", "dfc-generated"] - ["System.IO.Compression", "ZLibStream", False, "get_BaseStream", "()", "", "Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream]", "ReturnValue", "value", "dfc-generated"] - ["System.IO.Compression", "ZipArchive", False, "CreateEntry", "(System.String)", "", "Argument[0]", "ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._storedEntryName]", "value", "dfc-generated"] - ["System.IO.Compression", "ZipArchive", False, "CreateEntry", "(System.String)", "", "Argument[this]", "ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._archive]", "value", "dfc-generated"] @@ -42,6 +44,7 @@ extensions: - ["System.IO.Compression", "BrotliEncoder", "GetMaxCompressedLength", "(System.Int32)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliEncoder", "TryCompress", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliEncoder", "TryCompress", "(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.IO.Compression", "BrotliStream", "BrotliStream", "(System.IO.Stream,System.IO.Compression.BrotliCompressionOptions,System.Boolean)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "BrotliStream", "(System.IO.Stream,System.IO.Compression.CompressionLevel)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "BrotliStream", "(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "BrotliStream", "(System.IO.Stream,System.IO.Compression.CompressionMode)", "summary", "df-generated"] @@ -52,12 +55,12 @@ extensions: - ["System.IO.Compression", "BrotliStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO.Compression", "BrotliStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "get_CanSeek", "()", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "get_CanWrite", "()", "summary", "df-generated"] - ["System.IO.Compression", "BrotliStream", "get_Length", "()", "summary", "df-generated"] + - ["System.IO.Compression", "DeflateStream", "DeflateStream", "(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "EndRead", "(System.IAsyncResult)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "EndWrite", "(System.IAsyncResult)", "summary", "df-generated"] @@ -65,7 +68,6 @@ extensions: - ["System.IO.Compression", "DeflateStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO.Compression", "DeflateStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO.Compression", "DeflateStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -80,7 +82,6 @@ extensions: - ["System.IO.Compression", "GZipStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO.Compression", "GZipStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.Compression", "GZipStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO.Compression", "GZipStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.Compression", "GZipStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.Compression", "GZipStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO.Compression", "GZipStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -95,7 +96,6 @@ extensions: - ["System.IO.Compression", "ZLibStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO.Compression", "ZLibStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.Compression", "ZLibStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO.Compression", "ZLibStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.Compression", "ZLibStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.Compression", "ZLibStream", "ZLibStream", "(System.IO.Stream,System.IO.Compression.CompressionLevel)", "summary", "df-generated"] - ["System.IO.Compression", "ZLibStream", "ZLibStream", "(System.IO.Stream,System.IO.Compression.CompressionMode)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml b/csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml index ad128344d29..012029632f6 100644 --- a/csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.IsolatedStorage.model.yml @@ -85,7 +85,6 @@ extensions: - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "Unlock", "(System.Int64,System.Int64)", "summary", "df-generated"] - - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO.IsolatedStorage", "IsolatedStorageFileStream", "get_CanSeek", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml b/csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml index f2069362d71..7d19bec80e6 100644 --- a/csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.Pipelines.model.yml @@ -7,6 +7,9 @@ extensions: - ["System.IO.Pipelines", "Pipe", False, "Pipe", "(System.IO.Pipelines.PipeOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO.Pipelines", "Pipe", False, "get_Reader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Pipelines", "Pipe", False, "get_Writer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.IO.Pipelines", "PipeOptions", False, "PipeOptions", "(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.IO.Pipelines.PipeOptions.Pool]", "value", "dfc-generated"] + - ["System.IO.Pipelines", "PipeOptions", False, "PipeOptions", "(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.IO.Pipelines.PipeOptions.ReaderScheduler]", "value", "dfc-generated"] + - ["System.IO.Pipelines", "PipeOptions", False, "PipeOptions", "(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", "", "Argument[2]", "Argument[this].Property[System.IO.Pipelines.PipeOptions.WriterScheduler]", "value", "dfc-generated"] - ["System.IO.Pipelines", "PipeReader", False, "Create", "(System.Buffers.ReadOnlySequence)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Pipelines", "PipeReader", False, "Create", "(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Pipelines", "PipeReader", False, "Create", "(System.IO.Stream,System.IO.Pipelines.StreamPipeReaderOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] @@ -18,8 +21,11 @@ extensions: - ["System.IO.Pipelines", "PipeWriter", True, "AsStream", "(System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", True, "GetMemory", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", True, "GetSpan", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.IO.Pipelines", "PipeWriter", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO.Pipelines", "ReadResult", False, "ReadResult", "(System.Buffers.ReadOnlySequence,System.Boolean,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer]", "value", "dfc-generated"] - ["System.IO.Pipelines", "ReadResult", False, "get_Buffer", "()", "", "Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer]", "ReturnValue", "value", "dfc-generated"] + - ["System.IO.Pipelines", "StreamPipeReaderOptions", False, "StreamPipeReaderOptions", "(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.IO.Pipelines.StreamPipeReaderOptions.Pool]", "value", "dfc-generated"] + - ["System.IO.Pipelines", "StreamPipeWriterOptions", False, "StreamPipeWriterOptions", "(System.Buffers.MemoryPool,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.IO.Pipelines.StreamPipeWriterOptions.Pool]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -30,7 +36,6 @@ extensions: - ["System.IO.Pipelines", "IDuplexPipe", "get_Input", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "IDuplexPipe", "get_Output", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "Pipe", "Reset", "()", "summary", "df-generated"] - - ["System.IO.Pipelines", "PipeOptions", "PipeOptions", "(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeOptions", "get_Default", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeOptions", "get_MinimumSegmentSize", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeOptions", "get_PauseWriterThreshold", "()", "summary", "df-generated"] @@ -59,20 +64,17 @@ extensions: - ["System.IO.Pipelines", "PipeWriter", "CopyFromAsync", "(System.IO.Stream,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", "FlushAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", "OnReaderCompleted", "(System.Action,System.Object)", "summary", "df-generated"] - - ["System.IO.Pipelines", "PipeWriter", "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", "get_CanGetUnflushedBytes", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "PipeWriter", "get_UnflushedBytes", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "ReadResult", "get_IsCanceled", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "ReadResult", "get_IsCompleted", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeExtensions", "CopyToAsync", "(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "StreamPipeReaderOptions", "(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] - - ["System.IO.Pipelines", "StreamPipeReaderOptions", "StreamPipeReaderOptions", "(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "get_BufferSize", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "get_LeaveOpen", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "get_MinimumReadSize", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "get_Pool", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeReaderOptions", "get_UseZeroByteReads", "()", "summary", "df-generated"] - - ["System.IO.Pipelines", "StreamPipeWriterOptions", "StreamPipeWriterOptions", "(System.Buffers.MemoryPool,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeWriterOptions", "get_LeaveOpen", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeWriterOptions", "get_MinimumBufferSize", "()", "summary", "df-generated"] - ["System.IO.Pipelines", "StreamPipeWriterOptions", "get_Pool", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml b/csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml index dde109e4579..2ce839d45db 100644 --- a/csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.Pipes.model.yml @@ -38,6 +38,7 @@ extensions: - ["System.IO.Pipes", "NamedPipeClientStream", "ConnectAsync", "(System.TimeSpan,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String)", "summary", "df-generated"] - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String,System.String)", "summary", "df-generated"] + - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String,System.String,System.IO.Pipes.PipeAccessRights,System.IO.Pipes.PipeOptions,System.Security.Principal.TokenImpersonationLevel,System.IO.HandleInheritability)", "summary", "df-generated"] - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String,System.String,System.IO.Pipes.PipeDirection)", "summary", "df-generated"] - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String,System.String,System.IO.Pipes.PipeDirection,System.IO.Pipes.PipeOptions)", "summary", "df-generated"] - ["System.IO.Pipes", "NamedPipeClientStream", "NamedPipeClientStream", "(System.String,System.String,System.IO.Pipes.PipeDirection,System.IO.Pipes.PipeOptions,System.Security.Principal.TokenImpersonationLevel)", "summary", "df-generated"] @@ -97,7 +98,6 @@ extensions: - ["System.IO.Pipes", "PipeStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO.Pipes", "PipeStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.IO.Pipes", "PipeStream", "WaitForPipeDrain", "()", "summary", "df-generated"] - - ["System.IO.Pipes", "PipeStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO.Pipes", "PipeStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO.Pipes", "PipeStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO.Pipes", "PipeStream", "get_CanSeek", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.Ports.model.yml b/csharp/ql/lib/ext/generated/System.IO.Ports.model.yml index de8de9cd544..ebdd780961d 100644 --- a/csharp/ql/lib/ext/generated/System.IO.Ports.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.Ports.model.yml @@ -18,6 +18,9 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: + - ["System.IO.Ports", "SerialDataReceivedEventArgs", "get_EventType", "()", "summary", "df-generated"] + - ["System.IO.Ports", "SerialErrorReceivedEventArgs", "get_EventType", "()", "summary", "df-generated"] + - ["System.IO.Ports", "SerialPinChangedEventArgs", "get_EventType", "()", "summary", "df-generated"] - ["System.IO.Ports", "SerialPort", "Close", "()", "summary", "df-generated"] - ["System.IO.Ports", "SerialPort", "DiscardInBuffer", "()", "summary", "df-generated"] - ["System.IO.Ports", "SerialPort", "DiscardOutBuffer", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.IO.model.yml b/csharp/ql/lib/ext/generated/System.IO.model.yml index 7af940d5382..bebdbcfee06 100644 --- a/csharp/ql/lib/ext/generated/System.IO.model.yml +++ b/csharp/ql/lib/ext/generated/System.IO.model.yml @@ -7,11 +7,13 @@ extensions: - ["System.IO", "BinaryReader", False, "BinaryReader", "(System.IO.Stream,System.Text.Encoding,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.BinaryReader._stream]", "value", "dfc-generated"] - ["System.IO", "BinaryReader", True, "Read", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[this]", "Argument[0].Element", "taint", "df-generated"] - ["System.IO", "BinaryReader", True, "Read", "(System.Span)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] + - ["System.IO", "BinaryReader", True, "ReadExactly", "(System.Span)", "", "Argument[this].SyntheticField[System.IO.BinaryReader._stream]", "Argument[0].Element", "taint", "dfc-generated"] - ["System.IO", "BinaryReader", True, "ReadString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "BinaryReader", True, "get_BaseStream", "()", "", "Argument[this].SyntheticField[System.IO.BinaryReader._stream]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "BinaryWriter", False, "BinaryWriter", "(System.IO.Stream,System.Text.Encoding,System.Boolean)", "", "Argument[0]", "Argument[this].Field[System.IO.BinaryWriter.OutStream]", "value", "dfc-generated"] - ["System.IO", "BinaryWriter", True, "Write", "(System.Byte[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.IO", "BinaryWriter", True, "Write", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] + - ["System.IO", "BinaryWriter", True, "Write", "(System.ReadOnlySpan)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "BinaryWriter", True, "get_BaseStream", "()", "", "Argument[this].Field[System.IO.BinaryWriter.OutStream]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "BufferedStream", False, "get_UnderlyingStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "Directory", False, "CreateDirectory", "(System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "value", "dfc-generated"] @@ -20,6 +22,7 @@ extensions: - ["System.IO", "Directory", False, "CreateDirectory", "(System.String,System.IO.UnixFileMode)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath]", "value", "dfc-generated"] - ["System.IO", "Directory", False, "CreateSymbolicLink", "(System.String,System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "value", "dfc-generated"] - ["System.IO", "Directory", False, "CreateSymbolicLink", "(System.String,System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath]", "value", "dfc-generated"] + - ["System.IO", "Directory", False, "GetDirectoryRoot", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.IO", "Directory", False, "GetParent", "(System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "value", "dfc-generated"] - ["System.IO", "Directory", False, "GetParent", "(System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath]", "value", "dfc-generated"] - ["System.IO", "DirectoryInfo", False, "CreateSubdirectory", "(System.String)", "", "Argument[0]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "value", "dfc-generated"] @@ -47,6 +50,8 @@ extensions: - ["System.IO", "DirectoryInfo", False, "MoveTo", "(System.String)", "", "Argument[0]", "Argument[this].Field[System.IO.FileSystemInfo.OriginalPath]", "value", "dfc-generated"] - ["System.IO", "DirectoryInfo", False, "get_Parent", "()", "", "Argument[this].Field[System.IO.FileSystemInfo.FullPath]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "value", "dfc-generated"] - ["System.IO", "DirectoryInfo", False, "get_Parent", "()", "", "Argument[this].Field[System.IO.FileSystemInfo.FullPath]", "ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath]", "value", "dfc-generated"] + - ["System.IO", "DirectoryInfo", False, "get_Root", "()", "", "Argument[this].Field[System.IO.FileSystemInfo.FullPath]", "ReturnValue.Field[System.IO.FileSystemInfo.FullPath]", "taint", "dfc-generated"] + - ["System.IO", "DirectoryInfo", False, "get_Root", "()", "", "Argument[this].Field[System.IO.FileSystemInfo.FullPath]", "ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath]", "taint", "dfc-generated"] - ["System.IO", "DriveInfo", False, "DriveInfo", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.DriveInfo._name]", "value", "dfc-generated"] - ["System.IO", "DriveInfo", False, "ToString", "()", "", "Argument[this].Property[System.IO.DriveInfo.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "DriveInfo", False, "ToString", "()", "", "Argument[this].SyntheticField[System.IO.DriveInfo._name]", "ReturnValue", "value", "dfc-generated"] @@ -54,8 +59,11 @@ extensions: - ["System.IO", "ErrorEventArgs", False, "ErrorEventArgs", "(System.Exception)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.ErrorEventArgs._exception]", "value", "dfc-generated"] - ["System.IO", "ErrorEventArgs", True, "GetException", "()", "", "Argument[this].SyntheticField[System.IO.ErrorEventArgs._exception]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "File", False, "AppendAllBytesAsync", "(System.String,System.Byte[],System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "AppendAllBytesAsync", "(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "AppendAllLinesAsync", "(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "AppendAllLinesAsync", "(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "AppendAllTextAsync", "(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "AppendAllTextAsync", "(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "AppendAllTextAsync", "(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "AppendAllTextAsync", "(System.String,System.String,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "Create", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] @@ -76,8 +84,11 @@ extensions: - ["System.IO", "File", False, "ReadLines", "(System.String,System.Text.Encoding)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "ReadLines", "(System.String,System.Text.Encoding)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "WriteAllBytesAsync", "(System.String,System.Byte[],System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "WriteAllBytesAsync", "(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "WriteAllLinesAsync", "(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "WriteAllLinesAsync", "(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "WriteAllTextAsync", "(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "File", False, "WriteAllTextAsync", "(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "WriteAllTextAsync", "(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "File", False, "WriteAllTextAsync", "(System.String,System.String,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "FileFormatException", False, "FileFormatException", "(System.Uri)", "", "Argument[0]", "Argument[this].SyntheticField[System.IO.FileFormatException._sourceUri]", "value", "dfc-generated"] @@ -129,6 +140,7 @@ extensions: - ["System.IO", "FileSystemWatcher", False, "get_Filters", "()", "", "Argument[this].SyntheticField[System.IO.FileSystemWatcher._filters]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "MemoryStream", True, "GetBuffer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "MemoryStream", True, "TryGetBuffer", "(System.ArraySegment)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.IO", "MemoryStream", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[0].Property[System.ReadOnlyMemory`1.Span].Element", "Argument[this]", "taint", "dfc-generated"] - ["System.IO", "MemoryStream", True, "WriteTo", "(System.IO.Stream)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.IO", "Path", False, "ChangeExtension", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "Path", False, "Join", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "taint", "dfc-generated"] @@ -174,6 +186,7 @@ extensions: - ["System.IO", "Stream", False, "FlushAsync", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "Stream", False, "Synchronized", "(System.IO.Stream)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.IO", "Stream", True, "FlushAsync", "(System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue.SyntheticField[System.Threading.Tasks.Task.m_stateObject]", "value", "dfc-generated"] + - ["System.IO", "Stream", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "Stream", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "Stream", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "Stream", True, "WriteAsync", "(System.ReadOnlyMemory,System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -211,6 +224,8 @@ extensions: - ["System.IO", "TextWriter", True, "Write", "(System.String,System.Object,System.Object,System.Object)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "Write", "(System.String,System.Object[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "Write", "(System.String,System.Object[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] + - ["System.IO", "TextWriter", True, "Write", "(System.String,System.ReadOnlySpan)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.IO", "TextWriter", True, "Write", "(System.String,System.ReadOnlySpan)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "Write", "(System.Text.StringBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteAsync", "(System.Char)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteAsync", "(System.Char[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this]", "taint", "dfc-generated"] @@ -235,6 +250,8 @@ extensions: - ["System.IO", "TextWriter", True, "WriteLine", "(System.String,System.Object,System.Object,System.Object)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteLine", "(System.String,System.Object[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteLine", "(System.String,System.Object[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] + - ["System.IO", "TextWriter", True, "WriteLine", "(System.String,System.ReadOnlySpan)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.IO", "TextWriter", True, "WriteLine", "(System.String,System.ReadOnlySpan)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteLine", "(System.Text.StringBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteLineAsync", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.IO", "TextWriter", True, "WriteLineAsync", "(System.Char)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -319,7 +336,6 @@ extensions: - ["System.IO", "BinaryWriter", "Write", "(System.Int16)", "summary", "df-generated"] - ["System.IO", "BinaryWriter", "Write", "(System.Int32)", "summary", "df-generated"] - ["System.IO", "BinaryWriter", "Write", "(System.Int64)", "summary", "df-generated"] - - ["System.IO", "BinaryWriter", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "BinaryWriter", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "BinaryWriter", "Write", "(System.SByte)", "summary", "df-generated"] - ["System.IO", "BinaryWriter", "Write", "(System.Single)", "summary", "df-generated"] @@ -334,7 +350,6 @@ extensions: - ["System.IO", "BufferedStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO", "BufferedStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO", "BufferedStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO", "BufferedStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "BufferedStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO", "BufferedStream", "get_BufferSize", "()", "summary", "df-generated"] - ["System.IO", "BufferedStream", "get_CanRead", "()", "summary", "df-generated"] @@ -364,7 +379,6 @@ extensions: - ["System.IO", "Directory", "GetDirectories", "(System.String,System.String)", "summary", "df-generated"] - ["System.IO", "Directory", "GetDirectories", "(System.String,System.String,System.IO.EnumerationOptions)", "summary", "df-generated"] - ["System.IO", "Directory", "GetDirectories", "(System.String,System.String,System.IO.SearchOption)", "summary", "df-generated"] - - ["System.IO", "Directory", "GetDirectoryRoot", "(System.String)", "summary", "df-generated"] - ["System.IO", "Directory", "GetFileSystemEntries", "(System.String)", "summary", "df-generated"] - ["System.IO", "Directory", "GetFileSystemEntries", "(System.String,System.String)", "summary", "df-generated"] - ["System.IO", "Directory", "GetFileSystemEntries", "(System.String,System.String,System.IO.EnumerationOptions)", "summary", "df-generated"] @@ -403,7 +417,6 @@ extensions: - ["System.IO", "DirectoryInfo", "GetFiles", "(System.String,System.IO.EnumerationOptions)", "summary", "df-generated"] - ["System.IO", "DirectoryInfo", "GetFiles", "(System.String,System.IO.SearchOption)", "summary", "df-generated"] - ["System.IO", "DirectoryInfo", "get_Exists", "()", "summary", "df-generated"] - - ["System.IO", "DirectoryInfo", "get_Root", "()", "summary", "df-generated"] - ["System.IO", "DirectoryNotFoundException", "DirectoryNotFoundException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.IO", "DirectoryNotFoundException", "DirectoryNotFoundException", "(System.String)", "summary", "df-generated"] - ["System.IO", "DirectoryNotFoundException", "DirectoryNotFoundException", "(System.String,System.Exception)", "summary", "df-generated"] @@ -422,8 +435,11 @@ extensions: - ["System.IO", "EndOfStreamException", "EndOfStreamException", "(System.String)", "summary", "df-generated"] - ["System.IO", "EndOfStreamException", "EndOfStreamException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.IO", "File", "AppendAllBytes", "(System.String,System.Byte[])", "summary", "df-generated"] + - ["System.IO", "File", "AppendAllBytes", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "File", "AppendAllLines", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.IO", "File", "AppendAllLines", "(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding)", "summary", "df-generated"] + - ["System.IO", "File", "AppendAllText", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.IO", "File", "AppendAllText", "(System.String,System.ReadOnlySpan,System.Text.Encoding)", "summary", "df-generated"] - ["System.IO", "File", "AppendAllText", "(System.String,System.String)", "summary", "df-generated"] - ["System.IO", "File", "AppendAllText", "(System.String,System.String,System.Text.Encoding)", "summary", "df-generated"] - ["System.IO", "File", "AppendText", "(System.String)", "summary", "df-generated"] @@ -483,10 +499,13 @@ extensions: - ["System.IO", "File", "SetUnixFileMode", "(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.UnixFileMode)", "summary", "df-generated"] - ["System.IO", "File", "SetUnixFileMode", "(System.String,System.IO.UnixFileMode)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllBytes", "(System.String,System.Byte[])", "summary", "df-generated"] + - ["System.IO", "File", "WriteAllBytes", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllLines", "(System.String,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllLines", "(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllLines", "(System.String,System.String[])", "summary", "df-generated"] - ["System.IO", "File", "WriteAllLines", "(System.String,System.String[],System.Text.Encoding)", "summary", "df-generated"] + - ["System.IO", "File", "WriteAllText", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.IO", "File", "WriteAllText", "(System.String,System.ReadOnlySpan,System.Text.Encoding)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllText", "(System.String,System.String)", "summary", "df-generated"] - ["System.IO", "File", "WriteAllText", "(System.String,System.String,System.Text.Encoding)", "summary", "df-generated"] - ["System.IO", "FileFormatException", "FileFormatException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] @@ -531,7 +550,6 @@ extensions: - ["System.IO", "FileStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO", "FileStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.IO", "FileStream", "Unlock", "(System.Int64,System.Int64)", "summary", "df-generated"] - - ["System.IO", "FileStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "FileStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO", "FileStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO", "FileStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -591,7 +609,6 @@ extensions: - ["System.IO", "MemoryStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO", "MemoryStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO", "MemoryStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO", "MemoryStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "MemoryStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO", "MemoryStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO", "MemoryStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -611,6 +628,7 @@ extensions: - ["System.IO", "Path", "IsPathFullyQualified", "(System.String)", "summary", "df-generated"] - ["System.IO", "Path", "IsPathRooted", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "Path", "IsPathRooted", "(System.String)", "summary", "df-generated"] + - ["System.IO", "Path", "Join", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "Path", "Join", "(System.String[])", "summary", "df-generated"] - ["System.IO", "PathTooLongException", "PathTooLongException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.IO", "PathTooLongException", "PathTooLongException", "(System.String)", "summary", "df-generated"] @@ -637,7 +655,6 @@ extensions: - ["System.IO", "Stream", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.IO", "Stream", "ValidateBufferArguments", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"] - ["System.IO", "Stream", "ValidateCopyToArguments", "(System.IO.Stream,System.Int32)", "summary", "df-generated"] - - ["System.IO", "Stream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "Stream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO", "Stream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO", "Stream", "get_CanSeek", "()", "summary", "df-generated"] @@ -679,6 +696,7 @@ extensions: - ["System.IO", "TextReader", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.IO", "TextReader", "Peek", "()", "summary", "df-generated"] - ["System.IO", "TextWriter", "Close", "()", "summary", "df-generated"] + - ["System.IO", "TextWriter", "CreateBroadcasting", "(System.IO.TextWriter[])", "summary", "df-generated"] - ["System.IO", "TextWriter", "Dispose", "()", "summary", "df-generated"] - ["System.IO", "TextWriter", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.IO", "TextWriter", "Flush", "()", "summary", "df-generated"] @@ -743,7 +761,6 @@ extensions: - ["System.IO", "UnmanagedMemoryStream", "ReadByte", "()", "summary", "df-generated"] - ["System.IO", "UnmanagedMemoryStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.IO", "UnmanagedMemoryStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.IO", "UnmanagedMemoryStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.IO", "UnmanagedMemoryStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.IO", "UnmanagedMemoryStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.IO", "UnmanagedMemoryStream", "get_CanSeek", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml b/csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml index 01ee0e86843..df2a8608eb3 100644 --- a/csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml +++ b/csharp/ql/lib/ext/generated/System.Linq.Expressions.model.yml @@ -17,7 +17,12 @@ extensions: - ["System.Linq.Expressions", "BlockExpression", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "BlockExpression", False, "get_Variables", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "CatchBlock", False, "ToString", "()", "", "Argument[this].Property[System.Linq.Expressions.CatchBlock.Variable].Property[System.Linq.Expressions.ParameterExpression.Name]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Linq.Expressions", "CatchBlock", False, "Update", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "CatchBlock", False, "Update", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "CatchBlock", False, "Update", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] - ["System.Linq.Expressions", "CatchBlock", False, "Update", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ConditionalExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ConditionalExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ConditionalExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ConditionalExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ConditionalExpression", False, "get_IfFalse", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.FullConditionalExpression._false]", "ReturnValue", "value", "dfc-generated"] @@ -47,6 +52,8 @@ extensions: - ["System.Linq.Expressions", "DynamicExpression", False, "get_Arguments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "ElementInit", False, "GetArgument", "(System.Int32)", "", "Argument[this].Property[System.Linq.Expressions.ElementInit.Arguments].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ElementInit", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "ElementInit", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ElementInit", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this].Property[System.Linq.Expressions.ElementInit.AddMethod]", "ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ElementInit", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Add", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "AddAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] @@ -61,8 +68,11 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "AndAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "AndAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "AndAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ArrayAccess", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ArrayAccess", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ArrayAccess", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ArrayIndex", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "ArrayLength", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Bind", "(System.Reflection.MemberInfo,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Bind", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Block", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] @@ -83,17 +93,26 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "Block", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Block", "(System.Type,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Block", "(System.Type,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Break", "(System.Linq.Expressions.LabelTarget,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "ReturnValue", "taint", "df-generated"] - - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg0]", "value", "dfc-generated"] - - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0]", "value", "dfc-generated"] - - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg1]", "value", "dfc-generated"] - - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] @@ -107,9 +126,34 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[5]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Type,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Catch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Coalesce", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Condition", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Constant", "(System.Object)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Constant", "(System.Object,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Continue", "(System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Continue", "(System.Linq.Expressions.LabelTarget,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Convert", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Convert", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Convert", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ConvertChecked", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ConvertChecked", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ConvertChecked", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Decrement", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Decrement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Decrement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Divide", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "DivideAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "DivideAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] @@ -125,16 +169,46 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "Dynamic", "(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Dynamic", "(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Dynamic", "(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[5]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "ElementInit", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ElementInit", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ElementInit", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Equal", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ExclusiveOr", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ExclusiveOrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ExclusiveOrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ExclusiveOrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Field", "(System.Linq.Expressions.Expression,System.Reflection.FieldInfo)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Goto", "(System.Linq.Expressions.LabelTarget,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "GreaterThan", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "GreaterThanOrEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IfThen", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IfThen", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IfThenElse", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IfThenElse", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "IfThenElse", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Increment", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Increment", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Increment", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Invoke", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsFalse", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsFalse", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsFalse", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsTrue", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsTrue", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "IsTrue", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Label", "(System.Type,System.String)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Lambda", "(System.Linq.Expressions.Expression,System.Boolean,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Lambda", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "Lambda", "(System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] @@ -147,10 +221,28 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "LeftShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "LessThan", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "LessThanOrEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListBind", "(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListBind", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.ElementInit[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "ListInit", "(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeBinary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[4]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeBinary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[4]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeBinary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[5]", "ReturnValue.SyntheticField[System.Linq.Expressions.CoalesceConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeBinary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[5]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeCatchBlock", "(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeCatchBlock", "(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeCatchBlock", "(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] @@ -162,9 +254,26 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[5]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeGoto", "(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeGoto", "(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeGoto", "(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeIndex", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeIndex", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeIndex", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeMemberAccess", "(System.Linq.Expressions.Expression,System.Reflection.MemberInfo)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.FieldExpression._field]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MakeMemberAccess", "(System.Linq.Expressions.Expression,System.Reflection.MemberInfo)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.PropertyExpression._property]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeTry", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeTry", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeTry", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeTry", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[4]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeUnary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeUnary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MakeUnary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MemberBind", "(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MemberBind", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MemberInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MemberInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "MemberInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.MemberBinding[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Modulo", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ModuloAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ModuloAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] @@ -177,27 +286,73 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "MultiplyAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MultiplyAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "MultiplyChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Negate", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Negate", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Negate", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "NegateChecked", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "NegateChecked", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "NegateChecked", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Members]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[])", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "New", "(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Not", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Not", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Not", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "NotEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "OnesComplement", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "OnesComplement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "OnesComplement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Or", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "OrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "OrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "OrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "OrElse", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Parameter", "(System.Type,System.String)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostDecrementAssign", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostIncrementAssign", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PostIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Power", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "PowerAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "PowerAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "PowerAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreDecrementAssign", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreIncrementAssign", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "PreIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[])", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Property", "(System.Linq.Expressions.Expression,System.String,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Quote", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ReduceAndCheck", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "ReduceExtensions", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Return", "(System.Linq.Expressions.LabelTarget,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "RightShift", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "RightShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "RightShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "RightShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "RuntimeVariables", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "Subtract", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "SubtractAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "SubtractAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] @@ -206,12 +361,50 @@ extensions: - ["System.Linq.Expressions", "Expression", False, "SubtractAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "SubtractAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression)", "", "Argument[3]", "ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "SubtractChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[2]", "ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[])", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "", "Argument[4]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "SwitchCase", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "SwitchCase", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "SwitchCase", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SymbolDocumentInfo.FileName]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid,System.Guid)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid,System.Guid,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid,System.Guid,System.Guid)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "Expression", False, "SymbolDocument", "(System.String,System.Guid,System.Guid,System.Guid)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "Expression", False, "Throw", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Throw", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryCatch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryCatchFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[])", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryCatchFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[])", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryFault", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryFault", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TryFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TypeAs", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TypeEqual", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "TypeIs", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "UnaryPlus", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "UnaryPlus", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "UnaryPlus", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Unbox", "(System.Linq.Expressions.Expression,System.Type)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "Expression", False, "Variable", "(System.Type,System.String)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name]", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", True, "Accept", "(System.Linq.Expressions.ExpressionVisitor)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", True, "Reduce", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "Expression", True, "VisitChildren", "(System.Linq.Expressions.ExpressionVisitor)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] @@ -257,42 +450,66 @@ extensions: - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberBinding", "(System.Linq.Expressions.MemberBinding)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberBinding", "(System.Linq.Expressions.MemberBinding)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberInit", "(System.Linq.Expressions.MemberInitExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberListBinding", "(System.Linq.Expressions.MemberListBinding)", "", "Argument[0].Property[System.Linq.Expressions.MemberListBinding.Initializers]", "ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberListBinding", "(System.Linq.Expressions.MemberListBinding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberMemberBinding", "(System.Linq.Expressions.MemberMemberBinding)", "", "Argument[0].Property[System.Linq.Expressions.MemberMemberBinding.Bindings]", "ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMemberMemberBinding", "(System.Linq.Expressions.MemberMemberBinding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitMethodCall", "(System.Linq.Expressions.MethodCallExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitNew", "(System.Linq.Expressions.NewExpression)", "", "Argument[0].Property[System.Linq.Expressions.NewExpression.Constructor]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitNew", "(System.Linq.Expressions.NewExpression)", "", "Argument[0].Property[System.Linq.Expressions.NewExpression.Members]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Members]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitNew", "(System.Linq.Expressions.NewExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitNewArray", "(System.Linq.Expressions.NewArrayExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitParameter", "(System.Linq.Expressions.ParameterExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitRuntimeVariables", "(System.Linq.Expressions.RuntimeVariablesExpression)", "", "Argument[0].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitRuntimeVariables", "(System.Linq.Expressions.RuntimeVariablesExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitSwitch", "(System.Linq.Expressions.SwitchExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitSwitchCase", "(System.Linq.Expressions.SwitchCase)", "", "Argument[0].Property[System.Linq.Expressions.SwitchCase.TestValues]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitSwitchCase", "(System.Linq.Expressions.SwitchCase)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitTry", "(System.Linq.Expressions.TryExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitTypeBinary", "(System.Linq.Expressions.TypeBinaryExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "ExpressionVisitor", True, "VisitUnary", "(System.Linq.Expressions.UnaryExpression)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "GotoExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "GotoExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "GotoExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value]", "value", "dfc-generated"] - ["System.Linq.Expressions", "GotoExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "IArgumentProvider", True, "GetArgument", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "IndexExpression", False, "GetArgument", "(System.Int32)", "", "Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "IndexExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object]", "value", "dfc-generated"] - ["System.Linq.Expressions", "IndexExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "IndexExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[this].Property[System.Linq.Expressions.IndexExpression.Indexer]", "ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer]", "value", "dfc-generated"] - ["System.Linq.Expressions", "IndexExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "IndexExpression", False, "get_Arguments", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "InvocationExpression", False, "GetArgument", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "InvocationExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LabelExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LabelExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LabelExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue]", "value", "dfc-generated"] - ["System.Linq.Expressions", "LabelExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "LabelTarget", False, "ToString", "()", "", "Argument[this].Property[System.Linq.Expressions.LabelTarget.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "LambdaExpression", False, "get_Body", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "LambdaExpression", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "LambdaExpression", False, "get_Parameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq.Expressions", "ListInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "ListInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers]", "value", "dfc-generated"] - ["System.Linq.Expressions", "ListInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LoopExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LoopExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "LoopExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body]", "value", "dfc-generated"] - ["System.Linq.Expressions", "LoopExpression", False, "Update", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberAssignment", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression]", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberAssignment", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberAssignment", False, "get_Expression", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.MemberAssignment._expression]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "MemberBinding", False, "MemberBinding", "(System.Linq.Expressions.MemberBindingType,System.Reflection.MemberInfo)", "", "Argument[1]", "Argument[this].Property[System.Linq.Expressions.MemberBinding.Member]", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberBinding", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq.Expressions", "MemberExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "df-generated"] - ["System.Linq.Expressions", "MemberExpression", False, "get_Member", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.FieldExpression._field]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberExpression", False, "get_Member", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.PropertyExpression._property]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "MemberInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "MemberInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings]", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberInitExpression", False, "Update", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "MemberListBinding", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers]", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberListBinding", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "MemberMemberBinding", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings]", "value", "dfc-generated"] - ["System.Linq.Expressions", "MemberMemberBinding", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "MethodCallExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "MethodCallExpression", False, "get_Arguments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -301,13 +518,32 @@ extensions: - ["System.Linq.Expressions", "NewArrayExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "NewExpression", False, "GetArgument", "(System.Int32)", "", "Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "NewExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "NewExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "NewExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this].Property[System.Linq.Expressions.NewExpression.Members]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Members]", "value", "dfc-generated"] - ["System.Linq.Expressions", "NewExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq.Expressions", "NewExpression", False, "get_Arguments", "()", "", "Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "NewExpression", True, "Accept", "(System.Linq.Expressions.ExpressionVisitor)", "", "Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "NewExpression", True, "Accept", "(System.Linq.Expressions.ExpressionVisitor)", "", "Argument[this].Property[System.Linq.Expressions.NewExpression.Members]", "ReturnValue.Property[System.Linq.Expressions.NewExpression.Members]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "RuntimeVariablesExpression", False, "Accept", "(System.Linq.Expressions.ExpressionVisitor)", "", "Argument[this].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "RuntimeVariablesExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables]", "value", "dfc-generated"] - ["System.Linq.Expressions", "RuntimeVariablesExpression", False, "Update", "(System.Collections.Generic.IEnumerable)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchCase", False, "Update", "(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchCase", False, "Update", "(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body]", "value", "dfc-generated"] - ["System.Linq.Expressions", "SwitchCase", False, "Update", "(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "SwitchExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[this].Property[System.Linq.Expressions.SwitchExpression.Comparison]", "ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison]", "value", "dfc-generated"] - ["System.Linq.Expressions", "SwitchExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "TryExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Body]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "TryExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[1]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "TryExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[2]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "TryExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[3]", "ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault]", "value", "dfc-generated"] - ["System.Linq.Expressions", "TryExpression", False, "Update", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "TypeBinaryExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression]", "value", "dfc-generated"] - ["System.Linq.Expressions", "TypeBinaryExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq.Expressions", "UnaryExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand]", "value", "dfc-generated"] + - ["System.Linq.Expressions", "UnaryExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[this].Property[System.Linq.Expressions.UnaryExpression.Method]", "ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method]", "value", "dfc-generated"] - ["System.Linq.Expressions", "UnaryExpression", False, "Update", "(System.Linq.Expressions.Expression)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all @@ -361,47 +597,25 @@ extensions: - ["System.Linq.Expressions", "Expression", "And", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "AndAlso", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "AndAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ArrayAccess", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ArrayIndex", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ArrayIndex", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ArrayLength", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Assign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Block", "(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Block", "(System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Block", "(System.Type,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Block", "(System.Type,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Break", "(System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Break", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Break", "(System.Linq.Expressions.LabelTarget,System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Call", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Call", "(System.Linq.Expressions.Expression,System.String,System.Type[],System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Call", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Call", "(System.Type,System.String,System.Type[],System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Catch", "(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Catch", "(System.Type,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Catch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ClearDebugInfo", "(System.Linq.Expressions.SymbolDocumentInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Coalesce", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Constant", "(System.Object)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Constant", "(System.Object,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Continue", "(System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Continue", "(System.Linq.Expressions.LabelTarget,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Convert", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Convert", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ConvertChecked", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ConvertChecked", "(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "DebugInfo", "(System.Linq.Expressions.SymbolDocumentInfo,System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Decrement", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Decrement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Default", "(System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Divide", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "DivideAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Dynamic", "(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ElementInit", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ElementInit", "(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Empty", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Equal", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ExclusiveOr", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] @@ -412,26 +626,11 @@ extensions: - ["System.Linq.Expressions", "Expression", "GetActionType", "(System.Type[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "GetDelegateType", "(System.Type[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "GetFuncType", "(System.Type[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Goto", "(System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Goto", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Goto", "(System.Linq.Expressions.LabelTarget,System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "GreaterThan", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "GreaterThanOrEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "IfThen", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Increment", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Increment", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Invoke", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "IsFalse", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "IsFalse", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "IsTrue", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "IsTrue", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Label", "()", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Label", "(System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Label", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Label", "(System.String)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Label", "(System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Label", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Lambda", "(System.Linq.Expressions.Expression,System.Boolean,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Lambda", "(System.Linq.Expressions.Expression,System.Boolean,System.Linq.Expressions.ParameterExpression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Lambda", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] @@ -450,118 +649,49 @@ extensions: - ["System.Linq.Expressions", "Expression", "LeftShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "LessThan", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "LessThanOrEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListBind", "(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ListBind", "(System.Reflection.MemberInfo,System.Linq.Expressions.ElementInit[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListBind", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ListBind", "(System.Reflection.MethodInfo,System.Linq.Expressions.ElementInit[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.ElementInit[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "ListInit", "(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Loop", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Loop", "(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MakeBinary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MakeCatchBlock", "(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MakeDynamic", "(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MakeGoto", "(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MakeTry", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MakeUnary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MakeUnary", "(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MemberBind", "(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MemberBind", "(System.Reflection.MemberInfo,System.Linq.Expressions.MemberBinding[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MemberBind", "(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MemberBind", "(System.Reflection.MethodInfo,System.Linq.Expressions.MemberBinding[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MemberInit", "(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "MemberInit", "(System.Linq.Expressions.NewExpression,System.Linq.Expressions.MemberBinding[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Modulo", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ModuloAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Multiply", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MultiplyAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MultiplyAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "MultiplyChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Negate", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Negate", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "NegateChecked", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "NegateChecked", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "New", "(System.Reflection.ConstructorInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "New", "(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "New", "(System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "NewArrayBounds", "(System.Type,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "NewArrayBounds", "(System.Type,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "NewArrayInit", "(System.Type,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "NewArrayInit", "(System.Type,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Not", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Not", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "NotEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "OnesComplement", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "OnesComplement", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Or", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "OrAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "OrElse", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Parameter", "(System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Parameter", "(System.Type,System.String)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PostDecrementAssign", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PostDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PostIncrementAssign", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PostIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Power", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "PowerAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PreDecrementAssign", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PreDecrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PreIncrementAssign", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "PreIncrementAssign", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Property", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Property", "(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Property", "(System.Linq.Expressions.Expression,System.String)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Property", "(System.Linq.Expressions.Expression,System.String,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Property", "(System.Linq.Expressions.Expression,System.Type,System.String)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "PropertyOrField", "(System.Linq.Expressions.Expression,System.String)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Quote", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ReferenceEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ReferenceNotEqual", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Rethrow", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Rethrow", "(System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Return", "(System.Linq.Expressions.LabelTarget)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Return", "(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Return", "(System.Linq.Expressions.LabelTarget,System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "RightShift", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "RightShiftAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "RuntimeVariables", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "RuntimeVariables", "(System.Linq.Expressions.ParameterExpression[])", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Subtract", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "SubtractAssign", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "SubtractAssignChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "SubtractChecked", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Switch", "(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "SwitchCase", "(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "SwitchCase", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "SymbolDocument", "(System.String)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Throw", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Throw", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "ToString", "()", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TryCatch", "(System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TryCatchFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[])", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TryFault", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TryFinally", "(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "TryGetActionType", "(System.Type[],System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "TryGetFuncType", "(System.Type[],System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TypeAs", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TypeEqual", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "TypeIs", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "UnaryPlus", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "UnaryPlus", "(System.Linq.Expressions.Expression,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Unbox", "(System.Linq.Expressions.Expression,System.Type)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "Variable", "(System.Type)", "summary", "df-generated"] - - ["System.Linq.Expressions", "Expression", "Variable", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "get_CanReduce", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "get_NodeType", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "Expression", "get_Type", "()", "summary", "df-generated"] @@ -612,7 +742,6 @@ extensions: - ["System.Linq.Expressions", "LoopExpression", "get_ContinueLabel", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "LoopExpression", "get_NodeType", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "LoopExpression", "get_Type", "()", "summary", "df-generated"] - - ["System.Linq.Expressions", "MemberBinding", "MemberBinding", "(System.Linq.Expressions.MemberBindingType,System.Reflection.MemberInfo)", "summary", "df-generated"] - ["System.Linq.Expressions", "MemberBinding", "get_BindingType", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "MemberBinding", "get_Member", "()", "summary", "df-generated"] - ["System.Linq.Expressions", "MemberExpression", "get_Expression", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Linq.model.yml b/csharp/ql/lib/ext/generated/System.Linq.model.yml index 02bb4cf3623..5df8d2ebac4 100644 --- a/csharp/ql/lib/ext/generated/System.Linq.model.yml +++ b/csharp/ql/lib/ext/generated/System.Linq.model.yml @@ -4,6 +4,82 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Func>,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Func>,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Func>,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[2].Parameter[2]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Func>,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[3].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Func,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Func,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Func,System.Threading.CancellationToken)", "", "Argument[2].ReturnValue", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Func,System.Threading.CancellationToken)", "", "Argument[3].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func>,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[2].Parameter[2]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,TAccumulate,System.Func,System.Threading.CancellationToken)", "", "Argument[2].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[2]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TAccumulate,System.Func>,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[2].ReturnValue", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AggregateBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,TAccumulate,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AllAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "AnyAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Append", "(System.Collections.Generic.IAsyncEnumerable,TSource)", "", "Argument[1]", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Cast", "(System.Collections.Generic.IAsyncEnumerable)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "CountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "DefaultIfEmpty", "(System.Collections.Generic.IAsyncEnumerable,TSource)", "", "Argument[1]", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,TSource,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,TResult>,System.Collections.Generic.IEqualityComparer)", "", "Argument[3].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,TResult>,System.Collections.Generic.IEqualityComparer)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "GroupJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,TResult>,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Join", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,TSource,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LeftJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "LongCountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "MaxByAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "MinByAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Order", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IComparer)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "AsyncEnumerable", False, "OrderDescending", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IComparer)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Prepend", "(System.Collections.Generic.IAsyncEnumerable,TSource)", "", "Argument[1]", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Repeat", "(TResult,System.Int32)", "", "Argument[0]", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "RightJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Select", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Select", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func)", "", "Argument[1].ReturnValue.Element", "Argument[2].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func)", "", "Argument[1].ReturnValue.Element", "Argument[2].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "", "Argument[1].ReturnValue.Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "", "Argument[1].ReturnValue.Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Threading.CancellationToken)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,TSource,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,TSource,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Skip", "(System.Collections.Generic.IAsyncEnumerable,System.Int32)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "SkipLast", "(System.Collections.Generic.IAsyncEnumerable,System.Int32)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToAsyncEnumerable", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[2].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToLookupAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToLookupAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[4]", "Argument[2].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "ToLookupAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "", "Argument[3]", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "AsyncEnumerable", False, "Zip", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "AggregateBy", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "AggregateBy", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[3].Parameter[1]", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "AggregateBy", "(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].ReturnValue", "Argument[2].Parameter[0]", "value", "dfc-generated"] @@ -29,7 +105,6 @@ extensions: - ["System.Linq", "Enumerable", False, "FirstOrDefault", "(System.Collections.Generic.IEnumerable,System.Func,TSource)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "FirstOrDefault", "(System.Collections.Generic.IEnumerable,System.Func,TSource)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "FirstOrDefault", "(System.Collections.Generic.IEnumerable,System.Func,TSource)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - - ["System.Linq", "Enumerable", False, "FirstOrDefault", "(System.Collections.Generic.IEnumerable,TSource)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "FirstOrDefault", "(System.Collections.Generic.IEnumerable,TSource)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "Index", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "ReturnValue.Element.Field[System.ValueTuple`2.Item2]", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "IntersectBy", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] @@ -37,8 +112,15 @@ extensions: - ["System.Linq", "Enumerable", False, "IntersectBy", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "IntersectBy", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "LastOrDefault", "(System.Collections.Generic.IEnumerable,System.Func,TSource)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - - ["System.Linq", "Enumerable", False, "LastOrDefault", "(System.Collections.Generic.IEnumerable,TSource)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "LastOrDefault", "(System.Collections.Generic.IEnumerable,TSource)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[0].Element", "Argument[4].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[1].Element", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[4].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].Element", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "LeftJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "Max", "(System.Collections.Generic.IEnumerable>)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "Max", "(System.Collections.Generic.IEnumerable>)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "Max", "(System.Collections.Generic.IEnumerable>)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] @@ -59,6 +141,15 @@ extensions: - ["System.Linq", "Enumerable", False, "OrderDescending", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IComparer)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "Prepend", "(System.Collections.Generic.IEnumerable,TSource)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "Enumerable", False, "Repeat", "(TResult,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "Enumerable", False, "Reverse", "(TSource[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[1].Element", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[1].Element", "Argument[4].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].Element", "Argument[3].Parameter[0]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].Element", "Argument[4].Parameter[1]", "value", "dfc-generated"] + - ["System.Linq", "Enumerable", False, "RightJoin", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "", "Argument[4].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "Enumerable", False, "SequenceEqual", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2]", "taint", "df-generated"] - ["System.Linq", "Enumerable", False, "SequenceEqual", "(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].Element", "Argument[2]", "taint", "df-generated"] - ["System.Linq", "Enumerable", False, "SingleOrDefault", "(System.Collections.Generic.IEnumerable,System.Func,TSource)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] @@ -97,7 +188,6 @@ extensions: - ["System.Linq", "EnumerableQuery", False, "EnumerableQuery", "(System.Linq.Expressions.Expression)", "", "Argument[0]", "Argument[this].SyntheticField[System.Linq.EnumerableQuery`1._expression]", "value", "dfc-generated"] - ["System.Linq", "EnumerableQuery", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "EnumerableQuery", False, "get_Expression", "()", "", "Argument[this].SyntheticField[System.Linq.EnumerableQuery`1._expression]", "ReturnValue", "value", "dfc-generated"] - - ["System.Linq", "Grouping", False, "get_Key", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "IQueryable", True, "get_Provider", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "Aggregate", "(System.Collections.Immutable.ImmutableArray,System.Func)", "", "Argument[1].ReturnValue", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "Aggregate", "(System.Collections.Immutable.ImmutableArray,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] @@ -114,6 +204,7 @@ extensions: - ["System.Linq", "ImmutableArrayExtensions", False, "First", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "FirstOrDefault", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "Last", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "ImmutableArrayExtensions", False, "LastOrDefault", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "SelectMany", "(System.Collections.Immutable.ImmutableArray,System.Func>,System.Func)", "", "Argument[1].ReturnValue.Element", "Argument[2].Parameter[1]", "value", "dfc-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "SelectMany", "(System.Collections.Immutable.ImmutableArray,System.Func>,System.Func)", "", "Argument[2].ReturnValue", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "SequenceEqual", "(System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2]", "taint", "df-generated"] @@ -121,6 +212,7 @@ extensions: - ["System.Linq", "ImmutableArrayExtensions", False, "SequenceEqual", "(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEqualityComparer)", "", "Argument[0].Element", "Argument[2]", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "SequenceEqual", "(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Collections.Generic.IEqualityComparer)", "", "Argument[1].Element", "Argument[2]", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "Single", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Linq", "ImmutableArrayExtensions", False, "SingleOrDefault", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "ToArray", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "ToDictionary", "(System.Collections.Immutable.ImmutableArray,System.Func)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Linq", "ImmutableArrayExtensions", False, "ToDictionary", "(System.Collections.Immutable.ImmutableArray,System.Func)", "", "Argument[0].Element", "ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] @@ -158,6 +250,133 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: + - ["System.Linq", "AsyncEnumerable", "AggregateBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AllAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AnyAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AnyAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "AverageAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Chunk", "(System.Collections.Generic.IAsyncEnumerable,System.Int32)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Concat", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ContainsAsync", "(System.Collections.Generic.IAsyncEnumerable,TSource,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "CountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "CountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "CountBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "CountBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "DefaultIfEmpty", "(System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Distinct", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "DistinctBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "DistinctBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ElementAtAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Index,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ElementAtAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ElementAtOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Index,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ElementAtOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Empty", "()", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Except", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ExceptBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ExceptBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "FirstAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "FirstAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "FirstOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "GroupJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func,System.Threading.CancellationToken,System.Threading.Tasks.ValueTask>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Index", "(System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Intersect", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "IntersectBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "IntersectBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Join", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LastAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LastAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LastOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LeftJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LongCountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "LongCountAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "MaxAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "MaxByAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "MinAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "MinByAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "OfType", "(System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "OrderBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "OrderBy", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "OrderByDescending", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "OrderByDescending", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Range", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Reverse", "(System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "RightJoin", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Select", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Select", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>>,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>>,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SelectMany", "(System.Collections.Generic.IAsyncEnumerable,System.Func>>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SequenceEqualAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SingleAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SingleAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SingleOrDefaultAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SkipWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SkipWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SkipWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SkipWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "SumAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Take", "(System.Collections.Generic.IAsyncEnumerable,System.Int32)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Take", "(System.Collections.Generic.IAsyncEnumerable,System.Range)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "TakeLast", "(System.Collections.Generic.IAsyncEnumerable,System.Int32)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "TakeWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "TakeWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "TakeWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "TakeWhile", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ThenBy", "(System.Linq.IOrderedAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ThenBy", "(System.Linq.IOrderedAsyncEnumerable,System.Func,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ThenByDescending", "(System.Linq.IOrderedAsyncEnumerable,System.Func>,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ThenByDescending", "(System.Linq.IOrderedAsyncEnumerable,System.Func,System.Collections.Generic.IComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToArrayAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToDictionaryAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToHashSetAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToListAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToLookupAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "ToLookupAsync", "(System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Union", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "UnionBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "UnionBy", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Where", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Where", "(System.Collections.Generic.IAsyncEnumerable,System.Func)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Where", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Where", "(System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Zip", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Func>)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Zip", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] + - ["System.Linq", "AsyncEnumerable", "Zip", "(System.Collections.Generic.IAsyncEnumerable,System.Collections.Generic.IAsyncEnumerable)", "summary", "df-generated"] - ["System.Linq", "Enumerable", "Any", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq", "Enumerable", "Average", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq", "Enumerable", "Average", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] @@ -209,16 +428,12 @@ extensions: - ["System.Linq", "EnumerableQuery", "Execute", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq", "EnumerableQuery", "Execute", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq", "EnumerableQuery", "get_ElementType", "()", "summary", "df-generated"] - - ["System.Linq", "Grouping", "Contains", "(TElement)", "summary", "df-generated"] - - ["System.Linq", "Grouping", "IndexOf", "(TElement)", "summary", "df-generated"] - - ["System.Linq", "Grouping", "Remove", "(TElement)", "summary", "df-generated"] - - ["System.Linq", "Grouping", "RemoveAt", "(System.Int32)", "summary", "df-generated"] - - ["System.Linq", "Grouping", "get_Count", "()", "summary", "df-generated"] - - ["System.Linq", "Grouping", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Linq", "IGrouping", "get_Key", "()", "summary", "df-generated"] - ["System.Linq", "ILookup", "Contains", "(TKey)", "summary", "df-generated"] - ["System.Linq", "ILookup", "get_Count", "()", "summary", "df-generated"] - ["System.Linq", "ILookup", "get_Item", "(TKey)", "summary", "df-generated"] + - ["System.Linq", "IOrderedAsyncEnumerable", "CreateOrderedAsyncEnumerable", "(System.Func>,System.Collections.Generic.IComparer,System.Boolean)", "summary", "df-generated"] + - ["System.Linq", "IOrderedAsyncEnumerable", "CreateOrderedAsyncEnumerable", "(System.Func,System.Collections.Generic.IComparer,System.Boolean)", "summary", "df-generated"] - ["System.Linq", "IOrderedEnumerable", "CreateOrderedEnumerable", "(System.Func,System.Collections.Generic.IComparer,System.Boolean)", "summary", "df-generated"] - ["System.Linq", "IQueryProvider", "CreateQuery", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] - ["System.Linq", "IQueryProvider", "CreateQuery", "(System.Linq.Expressions.Expression)", "summary", "df-generated"] @@ -233,12 +448,10 @@ extensions: - ["System.Linq", "ImmutableArrayExtensions", "First", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "FirstOrDefault", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "Last", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - - ["System.Linq", "ImmutableArrayExtensions", "LastOrDefault", "(System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "LastOrDefault", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "Select", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "SequenceEqual", "(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "Single", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - - ["System.Linq", "ImmutableArrayExtensions", "SingleOrDefault", "(System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "SingleOrDefault", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "ImmutableArrayExtensions", "Where", "(System.Collections.Immutable.ImmutableArray,System.Func)", "summary", "df-generated"] - ["System.Linq", "Lookup", "Contains", "(TKey)", "summary", "df-generated"] @@ -328,6 +541,8 @@ extensions: - ["System.Linq", "Queryable", "IntersectBy", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Linq", "Queryable", "LastOrDefault", "(System.Linq.IQueryable,System.Linq.Expressions.Expression>,TSource)", "summary", "df-generated"] - ["System.Linq", "Queryable", "LastOrDefault", "(System.Linq.IQueryable,TSource)", "summary", "df-generated"] + - ["System.Linq", "Queryable", "LeftJoin", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>)", "summary", "df-generated"] + - ["System.Linq", "Queryable", "LeftJoin", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Linq", "Queryable", "LongCount", "(System.Linq.IQueryable)", "summary", "df-generated"] - ["System.Linq", "Queryable", "Max", "(System.Linq.IQueryable)", "summary", "df-generated"] - ["System.Linq", "Queryable", "Max", "(System.Linq.IQueryable,System.Collections.Generic.IComparer)", "summary", "df-generated"] @@ -342,6 +557,8 @@ extensions: - ["System.Linq", "Queryable", "OrderDescending", "(System.Linq.IQueryable)", "summary", "df-generated"] - ["System.Linq", "Queryable", "OrderDescending", "(System.Linq.IQueryable,System.Collections.Generic.IComparer)", "summary", "df-generated"] - ["System.Linq", "Queryable", "Prepend", "(System.Linq.IQueryable,TSource)", "summary", "df-generated"] + - ["System.Linq", "Queryable", "RightJoin", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>)", "summary", "df-generated"] + - ["System.Linq", "Queryable", "RightJoin", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Linq.Expressions.Expression>,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Linq", "Queryable", "SequenceEqual", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Linq", "Queryable", "SequenceEqual", "(System.Linq.IQueryable,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer)", "summary", "df-generated"] - ["System.Linq", "Queryable", "SingleOrDefault", "(System.Linq.IQueryable,System.Linq.Expressions.Expression>,TSource)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml b/csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml index 47dac35a7d2..1e286f91b9b 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Http.Headers.model.yml @@ -16,14 +16,14 @@ extensions: - ["System.Net.Http.Headers", "ContentDispositionHeaderValue", False, "ContentDispositionHeaderValue", "(System.Net.Http.Headers.ContentDispositionHeaderValue)", "", "Argument[0].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType]", "Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType]", "value", "dfc-generated"] - ["System.Net.Http.Headers", "ContentDispositionHeaderValue", False, "ContentDispositionHeaderValue", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType]", "value", "dfc-generated"] - ["System.Net.Http.Headers", "ContentDispositionHeaderValue", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType]", "ReturnValue", "taint", "dfc-generated"] - - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "Clone", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag]", "ReturnValue.SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag]", "value", "dfc-generated"] - - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "EntityTagHeaderValue", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag]", "value", "dfc-generated"] - - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag]", "ReturnValue", "value", "dfc-generated"] - - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "get_Tag", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag]", "ReturnValue", "value", "dfc-generated"] + - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "Clone", "()", "", "Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag]", "ReturnValue.Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag]", "value", "dfc-generated"] + - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "EntityTagHeaderValue", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag]", "value", "dfc-generated"] + - ["System.Net.Http.Headers", "EntityTagHeaderValue", False, "ToString", "()", "", "Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http.Headers", "HeaderStringValues+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Net.Http.Headers.HeaderStringValues+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http.Headers", "HeaderStringValues+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http.Headers", "HeaderStringValues", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http.Headers", "HeaderStringValues", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Http.Headers", "HttpHeaderValueCollection", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaders", False, "get_NonValidated", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http.Headers", "HttpHeadersNonValidated+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http.Headers", "HttpHeadersNonValidated", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -77,7 +77,7 @@ extensions: - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "Clone", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag]", "ReturnValue.SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag]", "value", "dfc-generated"] - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "RangeConditionHeaderValue", "(System.DateTimeOffset)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date]", "value", "dfc-generated"] - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "RangeConditionHeaderValue", "(System.Net.Http.Headers.EntityTagHeaderValue)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag]", "value", "dfc-generated"] - - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "get_Date", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http.Headers", "RangeConditionHeaderValue", False, "get_EntityTag", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http.Headers", "RetryConditionHeaderValue", False, "Clone", "()", "", "Argument[this].SyntheticField[System.Net.Http.Headers.RetryConditionHeaderValue._date]", "ReturnValue.SyntheticField[System.Net.Http.Headers.RetryConditionHeaderValue._date]", "value", "dfc-generated"] @@ -156,7 +156,6 @@ extensions: - ["System.Net.Http.Headers", "EntityTagHeaderValue", "Parse", "(System.String)", "summary", "df-generated"] - ["System.Net.Http.Headers", "EntityTagHeaderValue", "TryParse", "(System.String,System.Net.Http.Headers.EntityTagHeaderValue)", "summary", "df-generated"] - ["System.Net.Http.Headers", "EntityTagHeaderValue", "get_Any", "()", "summary", "df-generated"] - - ["System.Net.Http.Headers", "EntityTagHeaderValue", "get_IsWeak", "()", "summary", "df-generated"] - ["System.Net.Http.Headers", "HeaderStringValues+Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Net.Http.Headers", "HeaderStringValues+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Net.Http.Headers", "HeaderStringValues+Enumerator", "Reset", "()", "summary", "df-generated"] @@ -167,7 +166,6 @@ extensions: - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "Contains", "(T)", "summary", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "ParseAdd", "(System.String)", "summary", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "Remove", "(T)", "summary", "df-generated"] - - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "ToString", "()", "summary", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "TryParseAdd", "(System.String)", "summary", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "get_Count", "()", "summary", "df-generated"] - ["System.Net.Http.Headers", "HttpHeaderValueCollection", "get_IsReadOnly", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml b/csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml index de5e42e91f6..0eb60f29cdc 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Http.Json.model.yml @@ -4,8 +4,10 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["System.Net.Http.Json", "JsonContent", False, "Create", "(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Http.Json", "JsonContent", False, "Create", "(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Http.Json", "JsonContent", False, "Create", "(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue)", "", "Argument[0]", "ReturnValue.Property[System.Net.Http.Json.JsonContent.Value]", "value", "dfc-generated"] + - ["System.Net.Http.Json", "JsonContent", False, "Create", "(System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue.Property[System.Net.Http.Json.JsonContent.Value]", "value", "dfc-generated"] + - ["System.Net.Http.Json", "JsonContent", False, "Create", "(T,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue.Property[System.Net.Http.Json.JsonContent.Value]", "value", "dfc-generated"] + - ["System.Net.Http.Json", "JsonContent", False, "Create", "(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue)", "", "Argument[0]", "ReturnValue.Property[System.Net.Http.Json.JsonContent.Value]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -67,8 +69,6 @@ extensions: - ["System.Net.Http.Json", "HttpContentJsonExtensions", "ReadFromJsonAsync", "(System.Net.Http.HttpContent,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Http.Json", "HttpContentJsonExtensions", "ReadFromJsonAsync", "(System.Net.Http.HttpContent,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Http.Json", "HttpContentJsonExtensions", "ReadFromJsonAsync", "(System.Net.Http.HttpContent,System.Threading.CancellationToken)", "summary", "df-generated"] - - ["System.Net.Http.Json", "JsonContent", "Create", "(System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - - ["System.Net.Http.Json", "JsonContent", "Create", "(T,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Net.Http.Json", "JsonContent", "TryComputeLength", "(System.Int64)", "summary", "df-generated"] - ["System.Net.Http.Json", "JsonContent", "get_ObjectType", "()", "summary", "df-generated"] - ["System.Net.Http.Json", "JsonContent", "get_Value", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Http.model.yml b/csharp/ql/lib/ext/generated/System.Net.Http.model.yml index f06afdd5f43..d080bab51f3 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Http.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Http.model.yml @@ -21,8 +21,6 @@ extensions: - ["System.Net.Http", "HttpContent", False, "CopyToAsync", "(System.IO.Stream,System.Net.TransportContext)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Net.Http", "HttpContent", False, "CopyToAsync", "(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Net.Http", "HttpContent", False, "CopyToAsync", "(System.IO.Stream,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - - ["System.Net.Http", "HttpContent", False, "ReadAsByteArrayAsync", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Http", "HttpContent", False, "ReadAsByteArrayAsync", "(System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "HttpContent", False, "ReadAsStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "HttpContent", False, "ReadAsStream", "(System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "HttpContent", False, "ReadAsStreamAsync", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -45,6 +43,7 @@ extensions: - ["System.Net.Http", "HttpMethod", False, "HttpMethod", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.HttpMethod._method]", "value", "dfc-generated"] - ["System.Net.Http", "HttpMethod", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.Http.HttpMethod._method]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http", "HttpMethod", False, "get_Method", "()", "", "Argument[this].SyntheticField[System.Net.Http.HttpMethod._method]", "ReturnValue", "value", "dfc-generated"] + - ["System.Net.Http", "HttpRequestException", False, "HttpRequestException", "(System.String,System.Exception,System.Nullable)", "", "Argument[2]", "Argument[this].Property[System.Net.Http.HttpRequestException.StatusCode]", "value", "dfc-generated"] - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.Uri)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method]", "value", "dfc-generated"] - ["System.Net.Http", "HttpRequestMessage", False, "HttpRequestMessage", "(System.Net.Http.HttpMethod,System.Uri)", "", "Argument[1]", "Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._requestUri]", "value", "dfc-generated"] - ["System.Net.Http", "HttpRequestMessage", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method]", "ReturnValue", "taint", "dfc-generated"] @@ -52,6 +51,7 @@ extensions: - ["System.Net.Http", "HttpRequestMessage", False, "get_Properties", "()", "", "Argument[this].Property[System.Net.Http.HttpRequestMessage.Options]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http", "HttpRequestOptions", False, "get_Keys", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "HttpRequestOptions", False, "get_Values", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Http", "HttpRequestOptionsKey", False, "HttpRequestOptionsKey", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Net.Http.HttpRequestOptionsKey`1.Key]", "value", "dfc-generated"] - ["System.Net.Http", "HttpResponseMessage", False, "EnsureSuccessStatusCode", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Http", "HttpResponseMessage", False, "ToString", "()", "", "Argument[this].Property[System.Net.Http.HttpResponseMessage.ReasonPhrase]", "ReturnValue", "taint", "dfc-generated"] - ["System.Net.Http", "MultipartContent", False, "MultipartContent", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -63,8 +63,9 @@ extensions: - ["System.Net.Http", "SocketsHttpPlaintextStreamFilterContext", False, "get_InitialRequestMessage", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "SocketsHttpPlaintextStreamFilterContext", False, "get_NegotiatedHttpVersion", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Http", "SocketsHttpPlaintextStreamFilterContext", False, "get_PlaintextStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Http", "StreamContent", False, "StreamContent", "(System.IO.Stream)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Net.Http", "StreamContent", False, "StreamContent", "(System.IO.Stream,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Net.Http", "StreamContent", False, "StreamContent", "(System.IO.Stream)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.StreamContent._content]", "value", "dfc-generated"] + - ["System.Net.Http", "StreamContent", False, "StreamContent", "(System.IO.Stream,System.Int32)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Http.StreamContent._content]", "value", "dfc-generated"] + - ["System.Net.Http", "StreamContent", True, "SerializeToStream", "(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken)", "", "Argument[this].SyntheticField[System.Net.Http.StreamContent._content]", "Argument[0]", "taint", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -128,6 +129,10 @@ extensions: - ["System.Net.Http", "HttpContent", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Net.Http", "HttpContent", "LoadIntoBufferAsync", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpContent", "LoadIntoBufferAsync", "(System.Int64)", "summary", "df-generated"] + - ["System.Net.Http", "HttpContent", "LoadIntoBufferAsync", "(System.Int64,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Net.Http", "HttpContent", "LoadIntoBufferAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Net.Http", "HttpContent", "ReadAsByteArrayAsync", "()", "summary", "df-generated"] + - ["System.Net.Http", "HttpContent", "ReadAsByteArrayAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Http", "HttpContent", "ReadAsStringAsync", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpContent", "ReadAsStringAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Http", "HttpContent", "TryComputeLength", "(System.Int64)", "summary", "df-generated"] @@ -162,7 +167,6 @@ extensions: - ["System.Net.Http", "HttpRequestException", "HttpRequestException", "(System.Net.Http.HttpRequestError,System.String,System.Exception,System.Nullable)", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestException", "HttpRequestException", "(System.String)", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestException", "HttpRequestException", "(System.String,System.Exception)", "summary", "df-generated"] - - ["System.Net.Http", "HttpRequestException", "HttpRequestException", "(System.String,System.Exception,System.Nullable)", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestException", "get_HttpRequestError", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestException", "get_StatusCode", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestMessage", "Dispose", "()", "summary", "df-generated"] @@ -178,7 +182,6 @@ extensions: - ["System.Net.Http", "HttpRequestOptions", "TryGetValue", "(System.Net.Http.HttpRequestOptionsKey,TValue)", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestOptions", "get_Count", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestOptions", "get_IsReadOnly", "()", "summary", "df-generated"] - - ["System.Net.Http", "HttpRequestOptionsKey", "HttpRequestOptionsKey", "(System.String)", "summary", "df-generated"] - ["System.Net.Http", "HttpRequestOptionsKey", "get_Key", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpResponseMessage", "Dispose", "()", "summary", "df-generated"] - ["System.Net.Http", "HttpResponseMessage", "Dispose", "(System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml b/csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml index 6ed3c214d14..ab4aa0a95f6 100644 --- a/csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.NetworkInformation.model.yml @@ -24,6 +24,10 @@ extensions: - ["System.Net.NetworkInformation", "NetworkInterface", True, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.NetworkInformation", "PhysicalAddress", False, "GetAddressBytes", "()", "", "Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Net.NetworkInformation", "PhysicalAddress", False, "PhysicalAddress", "(System.Byte[])", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address]", "value", "dfc-generated"] + - ["System.Net.NetworkInformation", "Ping", False, "Send", "(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)", "", "Argument[3]", "ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options]", "value", "dfc-generated"] + - ["System.Net.NetworkInformation", "Ping", False, "Send", "(System.Net.IPAddress,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions)", "", "Argument[3]", "ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options]", "value", "dfc-generated"] + - ["System.Net.NetworkInformation", "Ping", False, "Send", "(System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)", "", "Argument[3]", "ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options]", "value", "dfc-generated"] + - ["System.Net.NetworkInformation", "Ping", False, "Send", "(System.String,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions)", "", "Argument[3]", "ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options]", "value", "dfc-generated"] - ["System.Net.NetworkInformation", "UnicastIPAddressInformationCollection", True, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all @@ -236,13 +240,9 @@ extensions: - ["System.Net.NetworkInformation", "Ping", "Send", "(System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "Send", "(System.Net.IPAddress,System.Int32)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "Send", "(System.Net.IPAddress,System.Int32,System.Byte[])", "summary", "df-generated"] - - ["System.Net.NetworkInformation", "Ping", "Send", "(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)", "summary", "df-generated"] - - ["System.Net.NetworkInformation", "Ping", "Send", "(System.Net.IPAddress,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "Send", "(System.String)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "Send", "(System.String,System.Int32)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "Send", "(System.String,System.Int32,System.Byte[])", "summary", "df-generated"] - - ["System.Net.NetworkInformation", "Ping", "Send", "(System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions)", "summary", "df-generated"] - - ["System.Net.NetworkInformation", "Ping", "Send", "(System.String,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "SendAsync", "(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions,System.Object)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "SendAsync", "(System.Net.IPAddress,System.Int32,System.Byte[],System.Object)", "summary", "df-generated"] - ["System.Net.NetworkInformation", "Ping", "SendAsync", "(System.Net.IPAddress,System.Int32,System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Quic.model.yml b/csharp/ql/lib/ext/generated/System.Net.Quic.model.yml index a3c94722267..03b325e43e1 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Quic.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Quic.model.yml @@ -4,6 +4,8 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Net.Quic", "QuicConnection", False, "ConnectAsync", "(System.Net.Quic.QuicClientConnectionOptions,System.Threading.CancellationToken)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Quic", "QuicConnection", False, "OpenOutboundStreamAsync", "(System.Net.Quic.QuicStreamType,System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Quic", "QuicConnection", False, "get_LocalEndPoint", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Quic", "QuicConnection", False, "get_NegotiatedApplicationProtocol", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Quic", "QuicConnection", False, "get_RemoteCertificate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -15,10 +17,10 @@ extensions: data: - ["System.Net.Quic", "QuicConnection", "AcceptInboundStreamAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Quic", "QuicConnection", "CloseAsync", "(System.Int64,System.Threading.CancellationToken)", "summary", "df-generated"] - - ["System.Net.Quic", "QuicConnection", "ConnectAsync", "(System.Net.Quic.QuicClientConnectionOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - - ["System.Net.Quic", "QuicConnection", "OpenOutboundStreamAsync", "(System.Net.Quic.QuicStreamType,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Quic", "QuicConnection", "ToString", "()", "summary", "df-generated"] - ["System.Net.Quic", "QuicConnection", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Net.Quic", "QuicConnection", "get_NegotiatedCipherSuite", "()", "summary", "df-generated"] + - ["System.Net.Quic", "QuicConnection", "get_SslProtocol", "()", "summary", "df-generated"] - ["System.Net.Quic", "QuicException", "QuicException", "(System.Net.Quic.QuicError,System.Nullable,System.String)", "summary", "df-generated"] - ["System.Net.Quic", "QuicException", "get_ApplicationErrorCode", "()", "summary", "df-generated"] - ["System.Net.Quic", "QuicException", "get_QuicError", "()", "summary", "df-generated"] @@ -38,7 +40,6 @@ extensions: - ["System.Net.Quic", "QuicStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.Net.Quic", "QuicStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - ["System.Net.Quic", "QuicStream", "ToString", "()", "summary", "df-generated"] - - ["System.Net.Quic", "QuicStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net.Quic", "QuicStream", "WriteAsync", "(System.ReadOnlyMemory,System.Boolean,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Quic", "QuicStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.Net.Quic", "QuicStream", "get_CanRead", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Security.model.yml b/csharp/ql/lib/ext/generated/System.Net.Security.model.yml index b052db90efa..1efe3bab7c5 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Security.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Security.model.yml @@ -21,20 +21,28 @@ extensions: - ["System.Net.Security", "SslApplicationProtocol", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Security", "SslCertificateTrust", False, "CreateForX509Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Net.Security", "SslCertificateTrust", False, "CreateForX509Store", "(System.Security.Cryptography.X509Certificates.X509Store,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Security", "SslClientHelloInfo", False, "SslClientHelloInfo", "(System.String,System.Security.Authentication.SslProtocols)", "", "Argument[0]", "Argument[this].Property[System.Net.Security.SslClientHelloInfo.ServerName]", "value", "dfc-generated"] - ["System.Net.Security", "SslStream", False, "AuthenticateAsClient", "(System.Net.Security.SslClientAuthenticationOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Security", "SslStream", False, "AuthenticateAsClientAsync", "(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Net.Security", "SslStream", False, "AuthenticateAsClientAsync", "(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Security", "SslStream", False, "AuthenticateAsServer", "(System.Net.Security.SslServerAuthenticationOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Security", "SslStream", False, "AuthenticateAsServerAsync", "(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Net.Security", "SslStream", False, "AuthenticateAsServerAsync", "(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Security", "SslStream", False, "Write", "(System.Byte[])", "", "Argument[0].Element", "Argument[this]", "taint", "dfc-generated"] - ["System.Net.Security", "SslStream", False, "get_NegotiatedApplicationProtocol", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Security", "SslStream", False, "get_TargetHostName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Security", "SslStream", False, "get_TargetHostName", "()", "", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Security", "SslStream", False, "get_TransportContext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Security", "SslStream", True, "NegotiateClientCertificateAsync", "(System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClient", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClientAsync", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClientAsync", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "AuthenticateAsClientAsync", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "BeginAuthenticateAsClient", "(System.String,System.AsyncCallback,System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "BeginAuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStream", True, "BeginAuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost]", "value", "dfc-generated"] - ["System.Net.Security", "SslStream", True, "get_LocalCertificate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Security", "SslStream", True, "get_RemoteCertificate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Security", "SslStreamCertificateContext", False, "Create", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.Security", "SslStreamCertificateContext", False, "Create", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", "", "Argument[0]", "ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate]", "value", "dfc-generated"] + - ["System.Net.Security", "SslStreamCertificateContext", False, "Create", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust)", "", "Argument[0]", "ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -48,9 +56,11 @@ extensions: - ["System.Net.Security", "AuthenticatedStream", "get_LeaveInnerStreamOpen", "()", "summary", "df-generated"] - ["System.Net.Security", "CipherSuitesPolicy", "CipherSuitesPolicy", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Net.Security", "CipherSuitesPolicy", "get_AllowedCipherSuites", "()", "summary", "df-generated"] + - ["System.Net.Security", "NegotiateAuthentication", "ComputeIntegrityCheck", "(System.ReadOnlySpan,System.Buffers.IBufferWriter)", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "Dispose", "()", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "Unwrap", "(System.ReadOnlySpan,System.Buffers.IBufferWriter,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "UnwrapInPlace", "(System.Span,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] + - ["System.Net.Security", "NegotiateAuthentication", "VerifyIntegrityCheck", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "Wrap", "(System.ReadOnlySpan,System.Buffers.IBufferWriter,System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "get_ImpersonationLevel", "()", "summary", "df-generated"] - ["System.Net.Security", "NegotiateAuthentication", "get_IsAuthenticated", "()", "summary", "df-generated"] @@ -111,15 +121,8 @@ extensions: - ["System.Net.Security", "SslApplicationProtocol", "get_Protocol", "()", "summary", "df-generated"] - ["System.Net.Security", "SslApplicationProtocol", "op_Equality", "(System.Net.Security.SslApplicationProtocol,System.Net.Security.SslApplicationProtocol)", "summary", "df-generated"] - ["System.Net.Security", "SslApplicationProtocol", "op_Inequality", "(System.Net.Security.SslApplicationProtocol,System.Net.Security.SslApplicationProtocol)", "summary", "df-generated"] - - ["System.Net.Security", "SslClientHelloInfo", "SslClientHelloInfo", "(System.String,System.Security.Authentication.SslProtocols)", "summary", "df-generated"] - ["System.Net.Security", "SslClientHelloInfo", "get_ServerName", "()", "summary", "df-generated"] - ["System.Net.Security", "SslClientHelloInfo", "get_SslProtocols", "()", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClient", "(System.String)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClientAsync", "(System.String)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClientAsync", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "AuthenticateAsClientAsync", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "AuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "AuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "AuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean)", "summary", "df-generated"] @@ -127,9 +130,6 @@ extensions: - ["System.Net.Security", "SslStream", "AuthenticateAsServerAsync", "(System.Security.Cryptography.X509Certificates.X509Certificate)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "AuthenticateAsServerAsync", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "AuthenticateAsServerAsync", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "BeginAuthenticateAsClient", "(System.String,System.AsyncCallback,System.Object)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "BeginAuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "BeginAuthenticateAsClient", "(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "BeginAuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "BeginAuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean,System.AsyncCallback,System.Object)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "BeginAuthenticateAsServer", "(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object)", "summary", "df-generated"] @@ -139,6 +139,7 @@ extensions: - ["System.Net.Security", "SslStream", "EndRead", "(System.IAsyncResult)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "EndWrite", "(System.IAsyncResult)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "Flush", "()", "summary", "df-generated"] + - ["System.Net.Security", "SslStream", "NegotiateClientCertificateAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "ReadByte", "()", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "SetLength", "(System.Int64)", "summary", "df-generated"] @@ -148,7 +149,6 @@ extensions: - ["System.Net.Security", "SslStream", "SslStream", "(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "SslStream", "(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback,System.Net.Security.LocalCertificateSelectionCallback)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "SslStream", "(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback,System.Net.Security.LocalCertificateSelectionCallback,System.Net.Security.EncryptionPolicy)", "summary", "df-generated"] - - ["System.Net.Security", "SslStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -169,6 +169,5 @@ extensions: - ["System.Net.Security", "SslStream", "get_Length", "()", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "get_NegotiatedCipherSuite", "()", "summary", "df-generated"] - ["System.Net.Security", "SslStream", "get_SslProtocol", "()", "summary", "df-generated"] - - ["System.Net.Security", "SslStreamCertificateContext", "Create", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean)", "summary", "df-generated"] - ["System.Net.Security", "SslStreamCertificateContext", "get_IntermediateCertificates", "()", "summary", "df-generated"] - ["System.Net.Security", "SslStreamCertificateContext", "get_TargetCertificate", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.ServerSentEvents.model.yml b/csharp/ql/lib/ext/generated/System.Net.ServerSentEvents.model.yml new file mode 100644 index 00000000000..01d8fef52c4 --- /dev/null +++ b/csharp/ql/lib/ext/generated/System.Net.ServerSentEvents.model.yml @@ -0,0 +1,20 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.Net.ServerSentEvents", "SseItem", False, "SseItem", "(T,System.String)", "", "Argument[0]", "Argument[this].Property[System.Net.ServerSentEvents.SseItem`1.Data]", "value", "dfc-generated"] + - ["System.Net.ServerSentEvents", "SseItem", False, "SseItem", "(T,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[System.Net.ServerSentEvents.SseItem`1._eventType]", "value", "dfc-generated"] + - ["System.Net.ServerSentEvents", "SseItem", False, "get_EventType", "()", "", "Argument[this].SyntheticField[System.Net.ServerSentEvents.SseItem`1._eventType]", "ReturnValue", "value", "dfc-generated"] + - ["System.Net.ServerSentEvents", "SseParser", False, "Create", "(System.IO.Stream)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.ServerSentEvents", "SseParser", False, "Enumerate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.ServerSentEvents", "SseParser", False, "EnumerateAsync", "(System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["System.Net.ServerSentEvents", "SseFormatter", "WriteAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.IO.Stream,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Net.ServerSentEvents", "SseFormatter", "WriteAsync", "(System.Collections.Generic.IAsyncEnumerable>,System.IO.Stream,System.Action,System.Buffers.IBufferWriter>,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Net.ServerSentEvents", "SseItem", "get_Data", "()", "summary", "df-generated"] + - ["System.Net.ServerSentEvents", "SseParser", "Create", "(System.IO.Stream,System.Net.ServerSentEvents.SseItemParser)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml b/csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml index ce05b06a782..0ea691ff704 100644 --- a/csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.Sockets.model.yml @@ -13,6 +13,10 @@ extensions: - ["System.Net.Sockets", "MulticastOption", False, "MulticastOption", "(System.Net.IPAddress,System.Net.IPAddress)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Sockets", "NetworkStream", False, "NetworkStream", "(System.Net.Sockets.Socket,System.IO.FileAccess,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.Sockets.NetworkStream._streamSocket]", "value", "dfc-generated"] - ["System.Net.Sockets", "NetworkStream", False, "get_Socket", "()", "", "Argument[this].SyntheticField[System.Net.Sockets.NetworkStream._streamSocket]", "ReturnValue", "value", "dfc-generated"] + - ["System.Net.Sockets", "SendPacketsElement", False, "SendPacketsElement", "(System.Byte[],System.Int32,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Net.Sockets.SendPacketsElement.Buffer]", "value", "dfc-generated"] + - ["System.Net.Sockets", "SendPacketsElement", False, "SendPacketsElement", "(System.IO.FileStream,System.Int64,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Net.Sockets.SendPacketsElement.FileStream]", "value", "dfc-generated"] + - ["System.Net.Sockets", "SendPacketsElement", False, "SendPacketsElement", "(System.ReadOnlyMemory,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Net.Sockets.SendPacketsElement.MemoryBuffer]", "value", "dfc-generated"] + - ["System.Net.Sockets", "SendPacketsElement", False, "SendPacketsElement", "(System.String,System.Int64,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Net.Sockets.SendPacketsElement.FilePath]", "value", "dfc-generated"] - ["System.Net.Sockets", "Socket", False, "Accept", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Sockets", "Socket", False, "AcceptAsync", "(System.Net.Sockets.SocketAsyncEventArgs)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Net.Sockets", "Socket", False, "BeginReceiveFrom", "(System.Byte[],System.Int32,System.Int32,System.Net.Sockets.SocketFlags,System.Net.EndPoint,System.AsyncCallback,System.Object)", "", "Argument[4]", "ReturnValue", "value", "dfc-generated"] @@ -73,8 +77,6 @@ extensions: - ["System.Net.Sockets", "TcpListener", False, "get_LocalEndpoint", "()", "", "Argument[this].SyntheticField[System.Net.Sockets.TcpListener._serverSocketEP]", "ReturnValue", "value", "dfc-generated"] - ["System.Net.Sockets", "TcpListener", False, "get_Server", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Sockets", "UdpClient", False, "Connect", "(System.Net.IPEndPoint)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Net.Sockets", "UdpClient", False, "EndReceive", "(System.IAsyncResult,System.Net.IPEndPoint)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net.Sockets", "UdpClient", False, "Receive", "(System.Net.IPEndPoint)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.Sockets", "UdpClient", False, "Send", "(System.Byte[],System.Int32,System.Net.IPEndPoint)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Sockets", "UdpClient", False, "Send", "(System.ReadOnlySpan,System.Net.IPEndPoint)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Net.Sockets", "UdpClient", False, "SendAsync", "(System.Byte[],System.Int32,System.Net.IPEndPoint)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] @@ -110,7 +112,6 @@ extensions: - ["System.Net.Sockets", "NetworkStream", "ReadByte", "()", "summary", "df-generated"] - ["System.Net.Sockets", "NetworkStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.Net.Sockets", "NetworkStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.Net.Sockets", "NetworkStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net.Sockets", "NetworkStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.Net.Sockets", "NetworkStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.Net.Sockets", "NetworkStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -123,17 +124,13 @@ extensions: - ["System.Net.Sockets", "SafeSocketHandle", "get_IsInvalid", "()", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.Byte[])", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.Byte[],System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.IO.FileStream)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.IO.FileStream,System.Int64,System.Int32)", "summary", "df-generated"] - - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.IO.FileStream,System.Int64,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.ReadOnlyMemory)", "summary", "df-generated"] - - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.ReadOnlyMemory,System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.String)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.String,System.Int32,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.String,System.Int64,System.Int32)", "summary", "df-generated"] - - ["System.Net.Sockets", "SendPacketsElement", "SendPacketsElement", "(System.String,System.Int64,System.Int32,System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "SendPacketsElement", "get_Offset", "()", "summary", "df-generated"] - ["System.Net.Sockets", "Socket", "AcceptAsync", "()", "summary", "df-generated"] - ["System.Net.Sockets", "Socket", "AcceptAsync", "(System.Net.Sockets.Socket)", "summary", "df-generated"] @@ -357,11 +354,13 @@ extensions: - ["System.Net.Sockets", "UdpClient", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "DropMulticastGroup", "(System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "DropMulticastGroup", "(System.Net.IPAddress,System.Int32)", "summary", "df-generated"] + - ["System.Net.Sockets", "UdpClient", "EndReceive", "(System.IAsyncResult,System.Net.IPEndPoint)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "EndSend", "(System.IAsyncResult)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "JoinMulticastGroup", "(System.Int32,System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "JoinMulticastGroup", "(System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "JoinMulticastGroup", "(System.Net.IPAddress,System.Int32)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "JoinMulticastGroup", "(System.Net.IPAddress,System.Net.IPAddress)", "summary", "df-generated"] + - ["System.Net.Sockets", "UdpClient", "Receive", "(System.Net.IPEndPoint)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "ReceiveAsync", "()", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "ReceiveAsync", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net.Sockets", "UdpClient", "Send", "(System.Byte[],System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml b/csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml index ceb5abb55d8..bc9d5b02b08 100644 --- a/csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.WebSockets.model.yml @@ -19,6 +19,8 @@ extensions: - ["System.Net.WebSockets", "WebSocketContext", True, "get_SecWebSocketVersion", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.WebSockets", "WebSocketContext", True, "get_User", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net.WebSockets", "WebSocketContext", True, "get_WebSocket", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", False, "WebSocketReceiveResult", "(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String)", "", "Argument[3]", "Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatus]", "value", "dfc-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", False, "WebSocketReceiveResult", "(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String)", "", "Argument[4]", "Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatusDescription]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -84,4 +86,8 @@ extensions: - ["System.Net.WebSockets", "WebSocketException", "get_ErrorCode", "()", "summary", "df-generated"] - ["System.Net.WebSockets", "WebSocketException", "get_WebSocketErrorCode", "()", "summary", "df-generated"] - ["System.Net.WebSockets", "WebSocketReceiveResult", "WebSocketReceiveResult", "(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean)", "summary", "df-generated"] - - ["System.Net.WebSockets", "WebSocketReceiveResult", "WebSocketReceiveResult", "(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String)", "summary", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", "get_CloseStatus", "()", "summary", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", "get_CloseStatusDescription", "()", "summary", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", "get_Count", "()", "summary", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", "get_EndOfMessage", "()", "summary", "df-generated"] + - ["System.Net.WebSockets", "WebSocketReceiveResult", "get_MessageType", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Net.model.yml b/csharp/ql/lib/ext/generated/System.Net.model.yml index a236f8b1e60..a3a4da217a1 100644 --- a/csharp/ql/lib/ext/generated/System.Net.model.yml +++ b/csharp/ql/lib/ext/generated/System.Net.model.yml @@ -11,6 +11,10 @@ extensions: - ["System.Net", "Cookie", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "CookieCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "CookieCollection", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Net", "Dns", False, "GetHostByName", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Net.IPHostEntry.HostName]", "value", "dfc-generated"] + - ["System.Net", "Dns", False, "GetHostEntry", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Net.IPHostEntry.HostName]", "value", "dfc-generated"] + - ["System.Net", "Dns", False, "GetHostEntry", "(System.String,System.Net.Sockets.AddressFamily)", "", "Argument[0]", "ReturnValue.Property[System.Net.IPHostEntry.HostName]", "value", "dfc-generated"] + - ["System.Net", "Dns", False, "Resolve", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Net.IPHostEntry.HostName]", "value", "dfc-generated"] - ["System.Net", "DnsEndPoint", False, "DnsEndPoint", "(System.String,System.Int32,System.Net.Sockets.AddressFamily)", "", "Argument[0]", "Argument[this].SyntheticField[System.Net.DnsEndPoint._host]", "value", "dfc-generated"] - ["System.Net", "DnsEndPoint", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Net.DnsEndPoint._host]", "ReturnValue", "taint", "dfc-generated"] - ["System.Net", "DnsEndPoint", False, "get_Host", "()", "", "Argument[this].SyntheticField[System.Net.DnsEndPoint._host]", "ReturnValue", "value", "dfc-generated"] @@ -23,6 +27,8 @@ extensions: - ["System.Net", "FtpWebResponse", False, "get_StatusDescription", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "FtpWebResponse", False, "get_WelcomeMessage", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "HttpListener", False, "BeginGetContext", "(System.AsyncCallback,System.Object)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Net.ListenerAsyncResult._state]", "value", "dfc-generated"] + - ["System.Net", "HttpListener", False, "EndGetContext", "(System.IAsyncResult)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Net", "HttpListener", False, "GetContext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "HttpListener", False, "get_DefaultServiceNames", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "HttpListener", False, "get_Prefixes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "HttpListener", False, "get_TimeoutManager", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -74,9 +80,6 @@ extensions: - ["System.Net", "NetworkCredential", False, "NetworkCredential", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Net", "OpenReadCompletedEventArgs", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "OpenWriteCompletedEventArgs", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net", "PathList", False, "get_Item", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net", "PathList", False, "get_SyncRoot", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Net", "PathList", False, "get_Values", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "UploadDataCompletedEventArgs", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "UploadFileCompletedEventArgs", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "UploadStringCompletedEventArgs", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -125,6 +128,8 @@ extensions: - ["System.Net", "WebHeaderCollection", False, "get_Item", "(System.Net.HttpRequestHeader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "WebHeaderCollection", False, "get_Item", "(System.Net.HttpResponseHeader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "WebProxy", False, "GetProxy", "(System.Uri)", "", "Argument[this].Property[System.Net.WebProxy.Address]", "ReturnValue", "value", "dfc-generated"] + - ["System.Net", "WebProxy", False, "WebProxy", "(System.Uri,System.Boolean,System.String[],System.Net.ICredentials)", "", "Argument[0]", "Argument[this].Property[System.Net.WebProxy.Address]", "value", "dfc-generated"] + - ["System.Net", "WebProxy", False, "WebProxy", "(System.Uri,System.Boolean,System.String[],System.Net.ICredentials)", "", "Argument[3]", "Argument[this].Property[System.Net.WebProxy.Credentials]", "value", "dfc-generated"] - ["System.Net", "WebRequest", False, "Create", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "WebRequest", False, "Create", "(System.Uri)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Net", "WebRequest", False, "CreateDefault", "(System.Uri)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -177,6 +182,8 @@ extensions: - ["System.Net", "CookieContainer", "SetCookies", "(System.Uri,System.String)", "summary", "df-generated"] - ["System.Net", "CookieContainer", "get_Count", "()", "summary", "df-generated"] - ["System.Net", "CookieException", "CookieException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] + - ["System.Net", "CookieException", "CookieException", "(System.String)", "summary", "df-generated"] + - ["System.Net", "CookieException", "CookieException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System.Net", "CredentialCache", "Add", "(System.String,System.Int32,System.String,System.Net.NetworkCredential)", "summary", "df-generated"] - ["System.Net", "CredentialCache", "Add", "(System.Uri,System.String,System.Net.NetworkCredential)", "summary", "df-generated"] - ["System.Net", "CredentialCache", "Remove", "(System.String,System.Int32,System.String)", "summary", "df-generated"] @@ -199,16 +206,12 @@ extensions: - ["System.Net", "Dns", "GetHostAddressesAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostByAddress", "(System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostByAddress", "(System.String)", "summary", "df-generated"] - - ["System.Net", "Dns", "GetHostByName", "(System.String)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostEntry", "(System.Net.IPAddress)", "summary", "df-generated"] - - ["System.Net", "Dns", "GetHostEntry", "(System.String)", "summary", "df-generated"] - - ["System.Net", "Dns", "GetHostEntry", "(System.String,System.Net.Sockets.AddressFamily)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostEntryAsync", "(System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostEntryAsync", "(System.String)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostEntryAsync", "(System.String,System.Net.Sockets.AddressFamily,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostEntryAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Net", "Dns", "GetHostName", "()", "summary", "df-generated"] - - ["System.Net", "Dns", "Resolve", "(System.String)", "summary", "df-generated"] - ["System.Net", "DnsEndPoint", "DnsEndPoint", "(System.String,System.Int32)", "summary", "df-generated"] - ["System.Net", "DnsEndPoint", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Net", "DnsEndPoint", "GetHashCode", "()", "summary", "df-generated"] @@ -253,8 +256,6 @@ extensions: - ["System.Net", "HttpListener", "Abort", "()", "summary", "df-generated"] - ["System.Net", "HttpListener", "Close", "()", "summary", "df-generated"] - ["System.Net", "HttpListener", "Dispose", "()", "summary", "df-generated"] - - ["System.Net", "HttpListener", "EndGetContext", "(System.IAsyncResult)", "summary", "df-generated"] - - ["System.Net", "HttpListener", "GetContext", "()", "summary", "df-generated"] - ["System.Net", "HttpListener", "GetContextAsync", "()", "summary", "df-generated"] - ["System.Net", "HttpListener", "Start", "()", "summary", "df-generated"] - ["System.Net", "HttpListener", "Stop", "()", "summary", "df-generated"] @@ -289,6 +290,7 @@ extensions: - ["System.Net", "HttpListenerRequest", "get_QueryString", "()", "summary", "df-generated"] - ["System.Net", "HttpListenerRequest", "get_RemoteEndPoint", "()", "summary", "df-generated"] - ["System.Net", "HttpListenerRequest", "get_RequestTraceIdentifier", "()", "summary", "df-generated"] + - ["System.Net", "HttpListenerRequest", "get_ServiceName", "()", "summary", "df-generated"] - ["System.Net", "HttpListenerRequest", "get_TransportContext", "()", "summary", "df-generated"] - ["System.Net", "HttpListenerRequest", "get_UrlReferrer", "()", "summary", "df-generated"] - ["System.Net", "HttpListenerRequest", "get_UserHostAddress", "()", "summary", "df-generated"] @@ -344,9 +346,13 @@ extensions: - ["System.Net", "IPAddress", "IPAddress", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net", "IPAddress", "IPAddress", "(System.ReadOnlySpan,System.Int64)", "summary", "df-generated"] - ["System.Net", "IPAddress", "IsLoopback", "(System.Net.IPAddress)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "IsValid", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "IsValidUtf8", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net", "IPAddress", "NetworkToHostOrder", "(System.Int16)", "summary", "df-generated"] - ["System.Net", "IPAddress", "NetworkToHostOrder", "(System.Int32)", "summary", "df-generated"] - ["System.Net", "IPAddress", "NetworkToHostOrder", "(System.Int64)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPAddress", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net", "IPAddress", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPAddress", "Parse", "(System.String)", "summary", "df-generated"] @@ -355,6 +361,8 @@ extensions: - ["System.Net", "IPAddress", "TryFormat", "(System.Span,System.Int32,System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPAddress", "TryFormat", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Net", "IPAddress", "TryFormat", "(System.Span,System.Int32,System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "TryParse", "(System.ReadOnlySpan,System.IFormatProvider,System.Net.IPAddress)", "summary", "df-generated"] + - ["System.Net", "IPAddress", "TryParse", "(System.ReadOnlySpan,System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net", "IPAddress", "TryParse", "(System.ReadOnlySpan,System.IFormatProvider,System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net", "IPAddress", "TryParse", "(System.ReadOnlySpan,System.Net.IPAddress)", "summary", "df-generated"] - ["System.Net", "IPAddress", "TryParse", "(System.String,System.IFormatProvider,System.Net.IPAddress)", "summary", "df-generated"] @@ -382,6 +390,8 @@ extensions: - ["System.Net", "IPNetwork", "Equals", "(System.Net.IPNetwork)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Net", "IPNetwork", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Net", "IPNetwork", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "Parse", "(System.String)", "summary", "df-generated"] @@ -391,6 +401,8 @@ extensions: - ["System.Net", "IPNetwork", "TryFormat", "(System.Span,System.Int32,System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "TryFormat", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "TryFormat", "(System.Span,System.Int32,System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] + - ["System.Net", "IPNetwork", "TryParse", "(System.ReadOnlySpan,System.IFormatProvider,System.Net.IPNetwork)", "summary", "df-generated"] + - ["System.Net", "IPNetwork", "TryParse", "(System.ReadOnlySpan,System.Net.IPNetwork)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "TryParse", "(System.ReadOnlySpan,System.IFormatProvider,System.Net.IPNetwork)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "TryParse", "(System.ReadOnlySpan,System.Net.IPNetwork)", "summary", "df-generated"] - ["System.Net", "IPNetwork", "TryParse", "(System.String,System.IFormatProvider,System.Net.IPNetwork)", "summary", "df-generated"] @@ -404,9 +416,6 @@ extensions: - ["System.Net", "IWebProxyScript", "Run", "(System.String,System.String)", "summary", "df-generated"] - ["System.Net", "NetworkCredential", "NetworkCredential", "(System.String,System.Security.SecureString)", "summary", "df-generated"] - ["System.Net", "NetworkCredential", "NetworkCredential", "(System.String,System.String)", "summary", "df-generated"] - - ["System.Net", "PathList", "GetCookiesCount", "()", "summary", "df-generated"] - - ["System.Net", "PathList", "get_Count", "()", "summary", "df-generated"] - - ["System.Net", "PathList", "set_Item", "(System.String,System.Object)", "summary", "df-generated"] - ["System.Net", "ProtocolViolationException", "ProtocolViolationException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Net", "ProtocolViolationException", "ProtocolViolationException", "(System.String)", "summary", "df-generated"] - ["System.Net", "ServicePoint", "CloseConnectionGroup", "(System.String)", "summary", "df-generated"] @@ -581,7 +590,6 @@ extensions: - ["System.Net", "WebProxy", "WebProxy", "(System.Uri)", "summary", "df-generated"] - ["System.Net", "WebProxy", "WebProxy", "(System.Uri,System.Boolean)", "summary", "df-generated"] - ["System.Net", "WebProxy", "WebProxy", "(System.Uri,System.Boolean,System.String[])", "summary", "df-generated"] - - ["System.Net", "WebProxy", "WebProxy", "(System.Uri,System.Boolean,System.String[],System.Net.ICredentials)", "summary", "df-generated"] - ["System.Net", "WebProxy", "get_BypassArrayList", "()", "summary", "df-generated"] - ["System.Net", "WebRequest", "Abort", "()", "summary", "df-generated"] - ["System.Net", "WebRequest", "BeginGetRequestStream", "(System.AsyncCallback,System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml b/csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml index 9750ef3d2c2..44b9f936d17 100644 --- a/csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml +++ b/csharp/ql/lib/ext/generated/System.Numerics.Tensors.model.yml @@ -1,54 +1,729 @@ # THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. extensions: + - addsTo: + pack: codeql/csharp-all + extensible: summaryModel + data: + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "CastUp", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "ReadOnlyTensorSpan", "(T*,System.IntPtr,System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "get_FlattenedLength", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "get_Lengths", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", False, "get_Strides", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Abs", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Acos", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "AcosPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Acosh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Add", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Add", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Asin", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "AsinPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Asinh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2Pi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2Pi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan2Pi", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atan", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "AtanPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Atanh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "BitwiseAnd", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "BitwiseAnd", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "BitwiseOr", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "BitwiseOr", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Broadcast", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Broadcast", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Cbrt", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Ceiling", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "ConvertChecked", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "ConvertSaturating", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "ConvertTruncating", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CopySign", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CopySign", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Cos", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CosPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Cosh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CosineSimilarity", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CosineSimilarity", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.Collections.Generic.IEnumerable,System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.Collections.Generic.IEnumerable,System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.Collections.Generic.IEnumerable,System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.ReadOnlySpan,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(T[],System.ReadOnlySpan,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(T[],System.ReadOnlySpan,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(T[],System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(T[],System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Create", "(T[],System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CreateUninitialized", "(System.ReadOnlySpan,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CreateUninitialized", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "CreateUninitialized", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "DegreesToRadians", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Divide", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Divide", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Divide", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Exp10", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Exp10M1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Exp2", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Exp2M1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Exp", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "ExpM1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Floor", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "GetSmallestBroadcastableLengths", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Hypot", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Ieee754Remainder", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Ieee754Remainder", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Ieee754Remainder", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "LeadingZeroCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log10", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log10P1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log2", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log2P1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "LogP1", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Max", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Max", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MaxNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Min", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Min", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "MinNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Multiply", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Multiply", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Negate", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "OnesComplement", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "PermuteDimensions", "(System.Numerics.Tensors.Tensor,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "PopCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Pow", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Pow", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Pow", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "RadiansToDegrees", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Reciprocal", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Reshape", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Reshape", "(System.Numerics.Tensors.Tensor,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Reshape", "(System.Numerics.Tensors.TensorSpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Reverse", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "ReverseDimension", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "RootN", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "RotateLeft", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "RotateRight", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SetSlice", "(System.Numerics.Tensors.Tensor,System.Numerics.Tensors.ReadOnlyTensorSpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Sigmoid", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Sin", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SinPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Sinh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SoftMax", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Sqrt", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Squeeze", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Squeeze", "(System.Numerics.Tensors.Tensor)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Squeeze", "(System.Numerics.Tensors.TensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SqueezeDimension", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SqueezeDimension", "(System.Numerics.Tensors.Tensor,System.Int32)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "SqueezeDimension", "(System.Numerics.Tensors.TensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Subtract", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Subtract", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Subtract", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Tan", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "TanPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Tanh", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "TrailingZeroCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Transpose", "(System.Numerics.Tensors.Tensor)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Truncate", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Unsqueeze", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Unsqueeze", "(System.Numerics.Tensors.Tensor,System.Int32)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Unsqueeze", "(System.Numerics.Tensors.TensorSpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Xor", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "Xor", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "AsReadOnlyTensorSpan", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "AsTensorSpan", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "get_FlattenedLength", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "get_Item", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", False, "get_Item", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "Max", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MaxMagnitude", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MaxMagnitudeNumber", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MaxNumber", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "Min", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MinMagnitude", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MinMagnitudeNumber", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", False, "MinNumber", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "TensorSpan", "(T*,System.IntPtr,System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "get_FlattenedLength", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "get_Lengths", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", False, "get_Strides", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: + - ["System.Numerics.Tensors", "IReadOnlyTensor", "AsReadOnlyTensorSpan", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "CopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "FlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "GetPinnableReference", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "TryCopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "TryFlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Empty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_FlattenedLength", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_IsEmpty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_IsPinned", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Lengths", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Rank", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "IReadOnlyTensor", "get_Strides", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "AsTensorSpan", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "Clear", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "Create", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "Create", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "CreateUninitialized", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "CreateUninitialized", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "Fill", "(T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "GetPinnableReference", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "set_Item", "(System.ReadOnlySpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "set_Item", "(System.ReadOnlySpan,TSelf)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ITensor", "set_Item", "(System.ReadOnlySpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan+Enumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan+Enumerator", "get_Current", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "CopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "FlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "GetPinnableReference", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(System.Array)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(System.Array,System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(System.Array,System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(T*,System.IntPtr)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(T[])", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(T[],System.Index,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "ReadOnlyTensorSpan", "(T[],System.Int32,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "TryCopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "TryFlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_Empty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_IsEmpty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "get_Rank", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "op_Equality", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "ReadOnlyTensorSpan", "op_Inequality", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Abs", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Acos", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AcosPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Acosh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Add", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Add", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsReadOnlyTensorSpan", "(T[],System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsTensorSpan", "(T[],System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Asin", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsinPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Asinh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2Pi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2Pi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan2Pi", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AtanPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Atanh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Average", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BitwiseAnd", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BitwiseAnd", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BitwiseOr", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BitwiseOr", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BroadcastTo", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BroadcastTo", "(System.Numerics.Tensors.Tensor,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "BroadcastTo", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Cbrt", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Ceiling", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Concatenate", "(System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Concatenate", "(System.ReadOnlySpan>,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ConcatenateOnDimension", "(System.Int32,System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ConcatenateOnDimension", "(System.Int32,System.ReadOnlySpan>,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ConvertChecked", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ConvertSaturating", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ConvertTruncating", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CopySign", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CopySign", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Cos", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CosPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Cosh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CosineSimilarity", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Create", "(System.Collections.Generic.IEnumerable,System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateAndFillGaussianNormalDistribution", "(System.Random,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateAndFillGaussianNormalDistribution", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateAndFillUniformDistribution", "(System.Random,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateAndFillUniformDistribution", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "DegreesToRadians", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Distance", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Divide", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Divide", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Divide", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Dot", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Equals", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Equals", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Equals", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Equals", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "EqualsAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "EqualsAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "EqualsAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "EqualsAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Exp10", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Exp10M1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Exp2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Exp2M1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Exp", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ExpM1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "FillGaussianNormalDistribution", "(System.Numerics.Tensors.TensorSpan,System.Random)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "FillUniformDistribution", "(System.Numerics.Tensors.TensorSpan,System.Random)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "FilteredUpdate", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "FilteredUpdate", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Floor", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThan", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAll", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanAny", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqual", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAll", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GreaterThanOrEqualAny", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Hypot", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ILogB", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ILogB", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Ieee754Remainder", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Ieee754Remainder", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Ieee754Remainder", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "IndexOfMax", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "IndexOfMaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "IndexOfMin", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "IndexOfMinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LeadingZeroCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThan", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAll", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanAny", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqual", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAll", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAll", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAny", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LessThanOrEqualAny", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log10", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log10P1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log2", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log2P1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Log", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "LogP1", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Max", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Max", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Max", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MaxNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Min", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Min", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Min", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitude", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinMagnitudeNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "MinNumber", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Multiply", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Multiply", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Negate", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Norm", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "OnesComplement", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "PopCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Pow", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Pow", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Pow", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Product", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "RadiansToDegrees", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Reciprocal", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Resize", "(System.Numerics.Tensors.Tensor,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ResizeTo", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ResizeTo", "(System.Numerics.Tensors.Tensor,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ResizeTo", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Reverse", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ReverseDimension", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan,System.Int32)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "RootN", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "RotateLeft", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "RotateRight", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.MidpointRounding,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.MidpointRounding,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Round", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "SequenceEqual", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "SequenceEqual", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "SetSlice", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Sigmoid", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Sin", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "SinPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Sinh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "SoftMax", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Split", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Int32,System.IntPtr)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Sqrt", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Stack", "(System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Stack", "(System.ReadOnlySpan>,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "StackAlongDimension", "(System.Int32,System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "StackAlongDimension", "(System.ReadOnlySpan>,System.Numerics.Tensors.TensorSpan,System.Int32)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "StdDev", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Subtract", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Subtract", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Subtract", "(T,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Sum", "(System.Numerics.Tensors.ReadOnlyTensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Tan", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TanPi", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Tanh", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ToString", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ToString", "(System.Numerics.Tensors.Tensor,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ToString", "(System.Numerics.Tensors.TensorSpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TrailingZeroCount", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Truncate", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TryBroadcastTo", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TryBroadcastTo", "(System.Numerics.Tensors.Tensor,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TryBroadcastTo", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Xor", "(System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.ReadOnlyTensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Xor", "(System.Numerics.Tensors.ReadOnlyTensorSpan,T,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsReadOnlyTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "AsTensorSpan", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Clear", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Create", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Create", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateUninitialized", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "CreateUninitialized", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Fill", "(T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "FlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "GetPinnableReference", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "ToString", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TryCopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "TryFlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Empty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_IsEmpty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_IsPinned", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_IsReadOnly", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Item", "(System.Numerics.Tensors.Tensor)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Lengths", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Rank", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "get_Strides", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "set_Item", "(System.ReadOnlySpan,T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "set_Item", "(System.ReadOnlySpan,System.Numerics.Tensors.Tensor)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "Tensor", "set_Item", "(System.ReadOnlySpan,T)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Abs", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Abs", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Acos", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AcosPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Acosh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Add", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Add", "(System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Add", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Add", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,System.Single,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AddMultiply", "(System.ReadOnlySpan,T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Asin", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AsinPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Asinh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2Pi", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2Pi", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan2Pi", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atan", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "AtanPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Atanh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "BitwiseAnd", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "BitwiseAnd", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "BitwiseOr", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "BitwiseOr", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Cbrt", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Ceiling", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ConvertChecked", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ConvertSaturating", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "ConvertToHalf", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "ConvertToSingle", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ConvertTruncating", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "CopySign", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "CopySign", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Cos", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "CosPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Cosh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Cosh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "CosineSimilarity", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "CosineSimilarity", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "DegreesToRadians", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Distance", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Distance", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Divide", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Divide", "(System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Divide", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Divide", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Divide", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Dot", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Dot", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Exp10", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Exp10M1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Exp2", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Exp2M1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Exp", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Exp", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ExpM1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Floor", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "FusedMultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "FusedMultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "FusedMultiplyAdd", "(System.ReadOnlySpan,T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "HammingBitDistance", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "HammingDistance", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Hypot", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ILogB", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Ieee754Remainder", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Ieee754Remainder", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Ieee754Remainder", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMax", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMax", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMaxMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMaxMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMin", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMin", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMinMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "IndexOfMinMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "LeadingZeroCount", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Lerp", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Lerp", "(System.ReadOnlySpan,System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Lerp", "(System.ReadOnlySpan,T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log10", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log10P1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Log2", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log2", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log2P1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Log", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Log", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "LogP1", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Max", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Max", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Max", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Max", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitude", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitude", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitude", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitudeNumber", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxMagnitudeNumber", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxNumber", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MaxNumber", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Min", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Min", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Min", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Min", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitude", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitude", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitude", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitude", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitudeNumber", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinMagnitudeNumber", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinNumber", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MinNumber", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Multiply", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Multiply", "(System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Multiply", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Multiply", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,System.Single,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAdd", "(System.ReadOnlySpan,T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAddEstimate", "(System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAddEstimate", "(System.ReadOnlySpan,System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "MultiplyAddEstimate", "(System.ReadOnlySpan,T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Negate", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Negate", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Norm", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Norm", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "OnesComplement", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "PopCount", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "PopCount", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Pow", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Pow", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Pow", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Product", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Product", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "ProductOfDifferences", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ProductOfDifferences", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "ProductOfSums", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ProductOfSums", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "RadiansToDegrees", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Reciprocal", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ReciprocalEstimate", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ReciprocalSqrt", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ReciprocalSqrtEstimate", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "RootN", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "RotateLeft", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "RotateRight", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Round", "(System.ReadOnlySpan,System.Int32,System.MidpointRounding,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Round", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Round", "(System.ReadOnlySpan,System.MidpointRounding,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Round", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ScaleB", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ShiftLeft", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ShiftRightArithmetic", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "ShiftRightLogical", "(System.ReadOnlySpan,System.Int32,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Sigmoid", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Sigmoid", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Sin", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SinCos", "(System.ReadOnlySpan,System.Span,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SinCosPi", "(System.ReadOnlySpan,System.Span,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SinPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Sinh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Sinh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "SoftMax", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SoftMax", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Sqrt", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Subtract", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Subtract", "(System.ReadOnlySpan,System.Single,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Subtract", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Subtract", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Subtract", "(T,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Sum", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Sum", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "SumOfMagnitudes", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SumOfMagnitudes", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "SumOfSquares", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "SumOfSquares", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Tan", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "TanPi", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Numerics.Tensors", "TensorPrimitives", "Tanh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Tanh", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "TrailingZeroCount", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Truncate", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Xor", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorPrimitives", "Xor", "(System.ReadOnlySpan,T,System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan+Enumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan+Enumerator", "get_Current", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "Clear", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "CopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "Fill", "(T)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "FlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "GetPinnableReference", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "Slice", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(System.Array)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(System.Array,System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(System.Array,System.ReadOnlySpan,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(System.Span,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(T*,System.IntPtr)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(T[])", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(T[],System.Index,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TensorSpan", "(T[],System.Int32,System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TryCopyTo", "(System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "TryFlattenTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_Empty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_IsEmpty", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_Item", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "get_Rank", "()", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "op_Equality", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "op_Inequality", "(System.Numerics.Tensors.TensorSpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] + - ["System.Numerics.Tensors", "TensorSpan", "set_Item", "(System.ReadOnlySpan,System.Numerics.Tensors.TensorSpan)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Numerics.model.yml b/csharp/ql/lib/ext/generated/System.Numerics.model.yml index d2e81180446..3d61627c65b 100644 --- a/csharp/ql/lib/ext/generated/System.Numerics.model.yml +++ b/csharp/ql/lib/ext/generated/System.Numerics.model.yml @@ -55,26 +55,44 @@ extensions: - ["System.Numerics", "Complex", False, "op_UnaryPlus", "(System.Numerics.Complex)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "IAdditionOperators", True, "op_CheckedAddition", "(TSelf,TOther)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Numerics", "IAdditionOperators", True, "op_CheckedAddition", "(TSelf,TOther)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Numerics", "IFloatingPoint", True, "ConvertToInteger", "(TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "IFloatingPoint", True, "ConvertToIntegerNative", "(TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Clamp", "(TSelf,TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Clamp", "(TSelf,TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Clamp", "(TSelf,TSelf,TSelf)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "ClampNative", "(TSelf,TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "ClampNative", "(TSelf,TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "ClampNative", "(TSelf,TSelf,TSelf)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "CopySign", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Max", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Max", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "MaxNative", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "MaxNative", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "MaxNumber", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "MaxNumber", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Min", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "Min", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "MinNative", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "INumber", True, "MinNative", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "MinNumber", "(TSelf,TSelf)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumber", True, "MinNumber", "(TSelf,TSelf)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumberBase", True, "CreateChecked", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumberBase", True, "CreateSaturating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "INumberBase", True, "CreateTruncating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["System.Numerics", "Plane", False, "Normalize", "(System.Numerics.Plane)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["System.Numerics", "Plane", False, "Plane", "(System.Numerics.Vector3,System.Single)", "", "Argument[0]", "Argument[this].Field[System.Numerics.Plane.Normal]", "value", "dfc-generated"] + - ["System.Numerics", "INumberBase", True, "MultiplyAddEstimate", "(TSelf,TSelf,TSelf)", "", "Argument[2]", "ReturnValue", "taint", "dfc-generated"] - ["System.Numerics", "Plane", False, "ToString", "()", "", "Argument[this].Field[System.Numerics.Plane.Normal]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Numerics", "Vector2", False, "op_UnaryPlus", "(System.Numerics.Vector2)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector3", False, "op_UnaryPlus", "(System.Numerics.Vector3)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector4", False, "op_UnaryPlus", "(System.Numerics.Vector4)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "Vector", False, "Abs", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "CopySign", "(System.Numerics.Vector,System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Round", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Round", "(System.Numerics.Vector,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Round", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Round", "(System.Numerics.Vector,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "Vector", False, "StoreUnsafe", "(System.Numerics.Vector,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Truncate", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Numerics", "Vector", False, "Truncate", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "Vector", False, "WithElement", "(System.Numerics.Vector,System.Int32,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Numerics", "Vector", False, "op_UnaryPlus", "(System.Numerics.Vector)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - addsTo: @@ -132,6 +150,7 @@ extensions: - ["System.Numerics", "BigInteger", "Log", "(System.Numerics.BigInteger,System.Double)", "summary", "df-generated"] - ["System.Numerics", "BigInteger", "ModPow", "(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger)", "summary", "df-generated"] - ["System.Numerics", "BigInteger", "Multiply", "(System.Numerics.BigInteger,System.Numerics.BigInteger)", "summary", "df-generated"] + - ["System.Numerics", "BigInteger", "MultiplyAddEstimate", "(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger)", "summary", "df-generated"] - ["System.Numerics", "BigInteger", "Negate", "(System.Numerics.BigInteger)", "summary", "df-generated"] - ["System.Numerics", "BigInteger", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System.Numerics", "BigInteger", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] @@ -295,6 +314,7 @@ extensions: - ["System.Numerics", "Complex", "Multiply", "(System.Double,System.Numerics.Complex)", "summary", "df-generated"] - ["System.Numerics", "Complex", "Multiply", "(System.Numerics.Complex,System.Double)", "summary", "df-generated"] - ["System.Numerics", "Complex", "Multiply", "(System.Numerics.Complex,System.Numerics.Complex)", "summary", "df-generated"] + - ["System.Numerics", "Complex", "MultiplyAddEstimate", "(System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex)", "summary", "df-generated"] - ["System.Numerics", "Complex", "Negate", "(System.Numerics.Complex)", "summary", "df-generated"] - ["System.Numerics", "Complex", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System.Numerics", "Complex", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] @@ -578,7 +598,9 @@ extensions: - ["System.Numerics", "Matrix3x2", "set_Item", "(System.Int32,System.Int32,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "Add", "(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "CreateBillboard", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Matrix4x4", "CreateBillboardLeftHanded", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "CreateConstrainedBillboard", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Matrix4x4", "CreateConstrainedBillboardLeftHanded", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "CreateFromAxisAngle", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "CreateFromQuaternion", "(System.Numerics.Quaternion)", "summary", "df-generated"] - ["System.Numerics", "Matrix4x4", "CreateFromYawPitchRoll", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] @@ -649,6 +671,8 @@ extensions: - ["System.Numerics", "Plane", "Equals", "(System.Numerics.Plane)", "summary", "df-generated"] - ["System.Numerics", "Plane", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Numerics", "Plane", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics", "Plane", "Normalize", "(System.Numerics.Plane)", "summary", "df-generated"] + - ["System.Numerics", "Plane", "Plane", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Plane", "Plane", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Plane", "Plane", "(System.Single,System.Single,System.Single,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Plane", "Transform", "(System.Numerics.Plane,System.Numerics.Matrix4x4)", "summary", "df-generated"] @@ -700,31 +724,111 @@ extensions: - ["System.Numerics", "TotalOrderIeee754Comparer", "GetHashCode", "(T)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Abs", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Add", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "All", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "AllWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "AndNot", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Any", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "AnyWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "BitwiseAnd", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "BitwiseOr", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Clamp", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "ClampNative", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "ConditionalSelect", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "CopySign", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "CopyTo", "(System.Single[])", "summary", "df-generated"] - ["System.Numerics", "Vector2", "CopyTo", "(System.Single[],System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "CopyTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Cos", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Count", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "CountWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Create", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Create", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Cross", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "DegreesToRadians", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Distance", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "DistanceSquared", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Divide", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Divide", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Dot", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Equals", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Equals", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "EqualsAll", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "EqualsAny", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Exp", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "FusedMultiplyAdd", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThan", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThanAll", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThanAny", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThanOrEqual", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThanOrEqualAll", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "GreaterThanOrEqualAny", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Hypot", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IndexOf", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IndexOfWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsEvenInteger", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsFinite", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsInfinity", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsInteger", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsNaN", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsNegative", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsNegativeInfinity", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsNormal", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsOddInteger", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsPositive", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsPositiveInfinity", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsSubnormal", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "IsZero", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LastIndexOf", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LastIndexOfWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Length", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "LengthSquared", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Lerp", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Lerp", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThan", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThanAll", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThanAny", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThanOrEqual", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThanOrEqualAll", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LessThanOrEqualAny", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Load", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LoadAligned", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LoadAlignedNonTemporal", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LoadUnsafe", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "LoadUnsafe", "(System.Single,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Log2", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Log", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Max", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MaxMagnitude", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MaxMagnitudeNumber", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MaxNative", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MaxNumber", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Min", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MinMagnitude", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MinMagnitudeNumber", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MinNative", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MinNumber", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Multiply", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Multiply", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Multiply", "(System.Single,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "MultiplyAddEstimate", "(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Negate", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "None", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "NoneWhereAllBitsSet", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Normalize", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "OnesComplement", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "RadiansToDegrees", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Reflect", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Round", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Round", "(System.Numerics.Vector2,System.MidpointRounding)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Shuffle", "(System.Numerics.Vector2,System.Byte,System.Byte)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Sin", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "SinCos", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "SquareRoot", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Subtract", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Sum", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "ToString", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "ToString", "(System.String)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Transform", "(System.Numerics.Vector2,System.Numerics.Matrix3x2)", "summary", "df-generated"] @@ -732,107 +836,305 @@ extensions: - ["System.Numerics", "Vector2", "Transform", "(System.Numerics.Vector2,System.Numerics.Quaternion)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "TransformNormal", "(System.Numerics.Vector2,System.Numerics.Matrix3x2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "TransformNormal", "(System.Numerics.Vector2,System.Numerics.Matrix4x4)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Truncate", "(System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "TryCopyTo", "(System.Span)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Vector2", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Vector2", "(System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "Vector2", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "Xor", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_AllBitsSet", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_E", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_Epsilon", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "get_Item", "(System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_NaN", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_NegativeInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_NegativeZero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "get_One", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_Pi", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_PositiveInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "get_Tau", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "get_UnitX", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "get_UnitY", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "get_Zero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Addition", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_BitwiseAnd", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_BitwiseOr", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Division", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Division", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Equality", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_ExclusiveOr", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Inequality", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_LeftShift", "(System.Numerics.Vector2,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Multiply", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Multiply", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Multiply", "(System.Single,System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_OnesComplement", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_RightShift", "(System.Numerics.Vector2,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_Subtraction", "(System.Numerics.Vector2,System.Numerics.Vector2)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "op_UnaryNegation", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector2", "op_UnsignedRightShift", "(System.Numerics.Vector2,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector2", "set_Item", "(System.Int32,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Abs", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Add", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "All", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "AllWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "AndNot", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Any", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "AnyWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "BitwiseAnd", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "BitwiseOr", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Clamp", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "ClampNative", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "ConditionalSelect", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "CopySign", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "CopyTo", "(System.Single[])", "summary", "df-generated"] - ["System.Numerics", "Vector3", "CopyTo", "(System.Single[],System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "CopyTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Cos", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Count", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "CountWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Create", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Create", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Create", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Cross", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "DegreesToRadians", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Distance", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "DistanceSquared", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Divide", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Divide", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Dot", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Equals", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Equals", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "EqualsAll", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "EqualsAny", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Exp", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "FusedMultiplyAdd", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThan", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThanAll", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThanAny", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThanOrEqual", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThanOrEqualAll", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "GreaterThanOrEqualAny", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Hypot", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IndexOf", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IndexOfWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsEvenInteger", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsFinite", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsInfinity", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsInteger", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsNaN", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsNegative", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsNegativeInfinity", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsNormal", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsOddInteger", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsPositive", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsPositiveInfinity", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsSubnormal", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "IsZero", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LastIndexOf", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LastIndexOfWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Length", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "LengthSquared", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Lerp", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Lerp", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThan", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThanAll", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThanAny", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThanOrEqual", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThanOrEqualAll", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LessThanOrEqualAny", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Load", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LoadAligned", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LoadAlignedNonTemporal", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LoadUnsafe", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "LoadUnsafe", "(System.Single,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Log2", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Log", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Max", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MaxMagnitude", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MaxMagnitudeNumber", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MaxNative", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MaxNumber", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Min", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MinMagnitude", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MinMagnitudeNumber", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MinNative", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MinNumber", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Multiply", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Multiply", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Multiply", "(System.Single,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "MultiplyAddEstimate", "(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Negate", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "None", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "NoneWhereAllBitsSet", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Normalize", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "OnesComplement", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "RadiansToDegrees", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Reflect", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Round", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Round", "(System.Numerics.Vector3,System.MidpointRounding)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Shuffle", "(System.Numerics.Vector3,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Sin", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "SinCos", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "SquareRoot", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Subtract", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Sum", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "ToString", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "ToString", "(System.String)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Transform", "(System.Numerics.Vector3,System.Numerics.Matrix4x4)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Transform", "(System.Numerics.Vector3,System.Numerics.Quaternion)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "TransformNormal", "(System.Numerics.Vector3,System.Numerics.Matrix4x4)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Truncate", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "TryCopyTo", "(System.Span)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Vector3", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Vector3", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Vector3", "(System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "Vector3", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "Xor", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_AllBitsSet", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_E", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_Epsilon", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_Item", "(System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_NaN", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_NegativeInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_NegativeZero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_One", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_Pi", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_PositiveInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "get_Tau", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_UnitX", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_UnitY", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_UnitZ", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "get_Zero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Addition", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_BitwiseAnd", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_BitwiseOr", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Division", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Division", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Equality", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_ExclusiveOr", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Inequality", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_LeftShift", "(System.Numerics.Vector3,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Multiply", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Multiply", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Multiply", "(System.Single,System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_OnesComplement", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_RightShift", "(System.Numerics.Vector3,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_Subtraction", "(System.Numerics.Vector3,System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "op_UnaryNegation", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector3", "op_UnsignedRightShift", "(System.Numerics.Vector3,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector3", "set_Item", "(System.Int32,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Abs", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Add", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "All", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "AllWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "AndNot", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Any", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "AnyWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "BitwiseAnd", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "BitwiseOr", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Clamp", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "ClampNative", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "ConditionalSelect", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "CopySign", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "CopyTo", "(System.Single[])", "summary", "df-generated"] - ["System.Numerics", "Vector4", "CopyTo", "(System.Single[],System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "CopyTo", "(System.Span)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Cos", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Count", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "CountWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Create", "(System.Numerics.Vector2,System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Create", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Create", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Create", "(System.Single,System.Single,System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Cross", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "DegreesToRadians", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Distance", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "DistanceSquared", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Divide", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Divide", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Dot", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Equals", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Equals", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "EqualsAll", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "EqualsAny", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Exp", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "FusedMultiplyAdd", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThan", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThanAll", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThanAny", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThanOrEqual", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThanOrEqualAll", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "GreaterThanOrEqualAny", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Hypot", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IndexOf", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IndexOfWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsEvenInteger", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsFinite", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsInfinity", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsInteger", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsNaN", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsNegative", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsNegativeInfinity", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsNormal", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsOddInteger", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsPositive", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsPositiveInfinity", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsSubnormal", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "IsZero", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LastIndexOf", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LastIndexOfWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Length", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "LengthSquared", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Lerp", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Lerp", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThan", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThanAll", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThanAny", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThanOrEqual", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThanOrEqualAll", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LessThanOrEqualAny", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Load", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LoadAligned", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LoadAlignedNonTemporal", "(System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LoadUnsafe", "(System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "LoadUnsafe", "(System.Single,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Log2", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Log", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Max", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MaxMagnitude", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MaxMagnitudeNumber", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MaxNative", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MaxNumber", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Min", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MinMagnitude", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MinMagnitudeNumber", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MinNative", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MinNumber", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Multiply", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Multiply", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Multiply", "(System.Single,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "MultiplyAddEstimate", "(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Negate", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "None", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "NoneWhereAllBitsSet", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Normalize", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "OnesComplement", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "RadiansToDegrees", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Round", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Round", "(System.Numerics.Vector4,System.MidpointRounding)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Shuffle", "(System.Numerics.Vector4,System.Byte,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Sin", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "SinCos", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "SquareRoot", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Subtract", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Sum", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "ToString", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "ToString", "(System.String)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Transform", "(System.Numerics.Vector2,System.Numerics.Matrix4x4)", "summary", "df-generated"] @@ -841,33 +1143,65 @@ extensions: - ["System.Numerics", "Vector4", "Transform", "(System.Numerics.Vector3,System.Numerics.Quaternion)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Transform", "(System.Numerics.Vector4,System.Numerics.Matrix4x4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Transform", "(System.Numerics.Vector4,System.Numerics.Quaternion)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Truncate", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "TryCopyTo", "(System.Span)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Vector4", "(System.Numerics.Vector2,System.Single,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Vector4", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Vector4", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Vector4", "(System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "Vector4", "(System.Single,System.Single,System.Single,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "Xor", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_AllBitsSet", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_E", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_Epsilon", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_Item", "(System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_NaN", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_NegativeInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_NegativeZero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_One", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_Pi", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_PositiveInfinity", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "get_Tau", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_UnitW", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_UnitX", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_UnitY", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_UnitZ", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "get_Zero", "()", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Addition", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_BitwiseAnd", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_BitwiseOr", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Division", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Division", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Equality", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_ExclusiveOr", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Inequality", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_LeftShift", "(System.Numerics.Vector4,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Multiply", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Multiply", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Multiply", "(System.Single,System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_OnesComplement", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_RightShift", "(System.Numerics.Vector4,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_Subtraction", "(System.Numerics.Vector4,System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "op_UnaryNegation", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector4", "op_UnsignedRightShift", "(System.Numerics.Vector4,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector4", "set_Item", "(System.Int32,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "All", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AllWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "AndNot", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Any", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AnyWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "As", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsPlane", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsQuaternion", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector2", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector3", "(System.Numerics.Vector4)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4", "(System.Numerics.Plane)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4", "(System.Numerics.Quaternion)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4Unsafe", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "AsVector4Unsafe", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Numerics", "Vector", "AsVectorByte", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "AsVectorDouble", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "AsVectorInt16", "(System.Numerics.Vector)", "summary", "df-generated"] @@ -884,17 +1218,32 @@ extensions: - ["System.Numerics", "Vector", "BitwiseOr", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Ceiling", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Ceiling", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Clamp", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ClampNative", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ConvertToInt32Native", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ConvertToInt64Native", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToUInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ConvertToUInt32Native", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ConvertToUInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ConvertToUInt64Native", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Cos", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Cos", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Count", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "CountWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Create", "(T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "CreateSequence", "(T,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "DegreesToRadians", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "DegreesToRadians", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Divide", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Divide", "(System.Numerics.Vector,T)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Dot", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] @@ -905,8 +1254,18 @@ extensions: - ["System.Numerics", "Vector", "Equals", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "EqualsAll", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "EqualsAny", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Exp", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Exp", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ExtractMostSignificantBits", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ExtractMostSignificantBits", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ExtractMostSignificantBits", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Floor", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Floor", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "FusedMultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "FusedMultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "GetElement", "(System.Numerics.Vector2,System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "GetElement", "(System.Numerics.Vector3,System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "GetElement", "(System.Numerics.Vector4,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "GetElement", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "GreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "GreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] @@ -922,6 +1281,27 @@ extensions: - ["System.Numerics", "Vector", "GreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "GreaterThanOrEqualAll", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "GreaterThanOrEqualAny", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Hypot", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Hypot", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IndexOf", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IndexOfWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsEvenInteger", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsFinite", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsInteger", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsNaN", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsNegative", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsNegativeInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsNormal", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsOddInteger", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsPositive", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsPositiveInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsSubnormal", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "IsZero", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "LastIndexOf", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "LastIndexOfWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Lerp", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Lerp", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "LessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "LessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "LessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] @@ -941,11 +1321,25 @@ extensions: - ["System.Numerics", "Vector", "LoadAlignedNonTemporal", "(T*)", "summary", "df-generated"] - ["System.Numerics", "Vector", "LoadUnsafe", "(T)", "summary", "df-generated"] - ["System.Numerics", "Vector", "LoadUnsafe", "(T,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Log2", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Log2", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Log", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Log", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MaxMagnitude", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MaxMagnitudeNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MaxNative", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MaxNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MinMagnitude", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MinMagnitudeNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MinNative", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MinNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Multiply", "(System.Numerics.Vector,T)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Multiply", "(T,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MultiplyAddEstimate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "MultiplyAddEstimate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Narrow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Narrow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Narrow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] @@ -954,7 +1348,11 @@ extensions: - ["System.Numerics", "Vector", "Narrow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Narrow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "None", "(System.Numerics.Vector,T)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "NoneWhereAllBitsSet", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "OnesComplement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "RadiansToDegrees", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "RadiansToDegrees", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ShiftLeft", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ShiftLeft", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ShiftLeft", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] @@ -980,13 +1378,35 @@ extensions: - ["System.Numerics", "Vector", "ShiftRightLogical", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ShiftRightLogical", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ShiftRightLogical", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Sin", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Sin", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "SinCos", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "SinCos", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "SquareRoot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Store", "(System.Numerics.Vector2,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Store", "(System.Numerics.Vector3,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "Store", "(System.Numerics.Vector4,System.Single*)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Store", "(System.Numerics.Vector,T*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAligned", "(System.Numerics.Vector2,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAligned", "(System.Numerics.Vector3,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAligned", "(System.Numerics.Vector4,System.Single*)", "summary", "df-generated"] - ["System.Numerics", "Vector", "StoreAligned", "(System.Numerics.Vector,T*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAlignedNonTemporal", "(System.Numerics.Vector2,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAlignedNonTemporal", "(System.Numerics.Vector3,System.Single*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreAlignedNonTemporal", "(System.Numerics.Vector4,System.Single*)", "summary", "df-generated"] - ["System.Numerics", "Vector", "StoreAlignedNonTemporal", "(System.Numerics.Vector,T*)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector2,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector2,System.Single,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector3,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector3,System.Single,System.UIntPtr)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector4,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector4,System.Single,System.UIntPtr)", "summary", "df-generated"] - ["System.Numerics", "Vector", "StoreUnsafe", "(System.Numerics.Vector,T,System.UIntPtr)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Sum", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ToScalar", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ToScalar", "(System.Numerics.Vector3)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "ToScalar", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Numerics", "Vector", "ToScalar", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Widen", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Widen", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] @@ -1009,6 +1429,9 @@ extensions: - ["System.Numerics", "Vector", "WidenUpper", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "WidenUpper", "(System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "WidenUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "WithElement", "(System.Numerics.Vector2,System.Int32,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "WithElement", "(System.Numerics.Vector3,System.Int32,System.Single)", "summary", "df-generated"] + - ["System.Numerics", "Vector", "WithElement", "(System.Numerics.Vector4,System.Int32,System.Single)", "summary", "df-generated"] - ["System.Numerics", "Vector", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_IsHardwareAccelerated", "()", "summary", "df-generated"] - ["System.Numerics", "Vector", "CopyTo", "(System.Span)", "summary", "df-generated"] @@ -1030,6 +1453,7 @@ extensions: - ["System.Numerics", "Vector", "Vector", "(T[],System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_AllBitsSet", "()", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_Count", "()", "summary", "df-generated"] + - ["System.Numerics", "Vector", "get_Indices", "()", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Numerics", "Vector", "get_One", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml index c17596ddc88..4f2071ef77c 100644 --- a/csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml +++ b/csharp/ql/lib/ext/generated/System.Reflection.Emit.model.yml @@ -6,8 +6,6 @@ extensions: data: - ["System.Reflection.Emit", "AssemblyBuilder", False, "DefineDynamicAssembly", "(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "AssemblyBuilder", False, "DefineDynamicAssembly", "(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Reflection.Emit", "AssemblyBuilder", False, "DefineDynamicModuleCore", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Reflection.Emit", "AssemblyBuilder", False, "DefineDynamicModuleCore", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "AssemblyBuilder", False, "DefineDynamicModuleCore", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "AssemblyBuilder", False, "GetDynamicModuleCore", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ConstructorBuilder", False, "DefineParameterCore", "(System.Int32,System.Reflection.ParameterAttributes,System.String)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] @@ -56,6 +54,7 @@ extensions: - ["System.Reflection.Emit", "GenericTypeParameterBuilder", False, "SetInterfaceConstraintsCore", "(System.Type[])", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", True, "DeclareLocal", "(System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", True, "DeclareLocal", "(System.Type,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "LocalBuilder", False, "SetLocalSymInfoCore", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", False, "DefineGenericParametersCore", "(System.String[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", False, "DefineGenericParametersCore", "(System.String[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", False, "DefineParameterCore", "(System.Int32,System.Reflection.ParameterAttributes,System.String)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] @@ -66,6 +65,10 @@ extensions: - ["System.Reflection.Emit", "MethodBuilder", False, "SetSignatureCore", "(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", False, "SetSignatureCore", "(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[4].Element", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", False, "SetSignatureCore", "(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[5].Element", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineDocument", "(System.String,System.Guid)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineDocument", "(System.String,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineDocument", "(System.String,System.Guid,System.Guid,System.Guid)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineDocument", "(System.String,System.Guid,System.Guid,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineEnum", "(System.String,System.Reflection.TypeAttributes,System.Type)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineEnum", "(System.String,System.Reflection.TypeAttributes,System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineInitializedData", "(System.String,System.Byte[],System.Reflection.FieldAttributes)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] @@ -85,6 +88,9 @@ extensions: - ["System.Reflection.Emit", "ModuleBuilder", False, "DefineType", "(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", False, "GetArrayMethod", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", False, "GetArrayMethod", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[4].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", False, "GetArrayMethod", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineDocumentCore", "(System.String,System.Guid)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineDocumentCore", "(System.String,System.Guid)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineEnumCore", "(System.String,System.Reflection.TypeAttributes,System.Type)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineEnumCore", "(System.String,System.Reflection.TypeAttributes,System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineInitializedDataCore", "(System.String,System.Byte[],System.Reflection.FieldAttributes)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"] @@ -92,12 +98,17 @@ extensions: - ["System.Reflection.Emit", "ModuleBuilder", True, "DefineTypeCore", "(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", True, "GetArrayMethodCore", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "ModuleBuilder", True, "GetArrayMethodCore", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[4].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "ModuleBuilder", True, "GetArrayMethodCore", "(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "OpCode", False, "ToString", "()", "", "Argument[this].Property[System.Reflection.Emit.OpCode.Name]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Emit", "ParameterBuilder", False, "SetCustomAttribute", "(System.Reflection.ConstructorInfo,System.Byte[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", False, "SetCustomAttribute", "(System.Reflection.Emit.CustomAttributeBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", True, "SetConstant", "(System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", True, "SetCustomAttributeCore", "(System.Reflection.ConstructorInfo,System.ReadOnlySpan)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", True, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", False, "DefineDynamicModuleCore", "(System.String)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Reflection.Emit.ModuleBuilderImpl._name]", "value", "dfc-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", False, "GenerateMetadata", "(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", False, "GenerateMetadata", "(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.MetadataBuilder)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", False, "PersistedAssemblyBuilder", "(System.Reflection.AssemblyName,System.Reflection.Assembly,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", False, "AddOtherMethodCore", "(System.Reflection.Emit.MethodBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", False, "SetConstantCore", "(System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", False, "SetGetMethodCore", "(System.Reflection.Emit.MethodBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -129,8 +140,14 @@ extensions: - ["System.Reflection.Emit", "TypeBuilder", False, "DefineMethodCore", "(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefineNestedTypeCore", "(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefineNestedTypeCore", "(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[10].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[6].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[7].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[9].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePInvokeMethodCore", "(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[4].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[5].Element", "ReturnValue", "taint", "df-generated"] @@ -138,6 +155,7 @@ extensions: - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[7].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[8].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "DefinePropertyCore", "(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Emit", "TypeBuilder", False, "DefineTypeInitializerCore", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "GetConstructor", "(System.Type,System.Reflection.ConstructorInfo)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "GetField", "(System.Type,System.Reflection.FieldInfo)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", False, "GetMethod", "(System.Type,System.Reflection.MethodInfo)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] @@ -224,7 +242,6 @@ extensions: - ["System.Reflection.Emit", "EnumBuilder", "GetEvents", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "EnumBuilder", "GetEvents", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "EnumBuilder", "GetFields", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - - ["System.Reflection.Emit", "EnumBuilder", "GetInterfaceMap", "(System.Type)", "summary", "df-generated"] - ["System.Reflection.Emit", "EnumBuilder", "GetMember", "(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "EnumBuilder", "GetMembers", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "EnumBuilder", "GetMethods", "(System.Reflection.BindingFlags)", "summary", "df-generated"] @@ -287,7 +304,6 @@ extensions: - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetEvents", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetFields", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetHashCode", "()", "summary", "df-generated"] - - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetInterfaceMap", "(System.Type)", "summary", "df-generated"] - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetMember", "(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetMembers", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "GenericTypeParameterBuilder", "GetMethods", "(System.Reflection.BindingFlags)", "summary", "df-generated"] @@ -358,6 +374,8 @@ extensions: - ["System.Reflection.Emit", "ILGenerator", "EndExceptionBlock", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", "EndScope", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", "MarkLabel", "(System.Reflection.Emit.Label)", "summary", "df-generated"] + - ["System.Reflection.Emit", "ILGenerator", "MarkSequencePoint", "(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Reflection.Emit", "ILGenerator", "MarkSequencePointCore", "(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", "ThrowException", "(System.Type)", "summary", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", "UsingNamespace", "(System.String)", "summary", "df-generated"] - ["System.Reflection.Emit", "ILGenerator", "get_ILOffset", "()", "summary", "df-generated"] @@ -367,6 +385,7 @@ extensions: - ["System.Reflection.Emit", "Label", "get_Id", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "Label", "op_Equality", "(System.Reflection.Emit.Label,System.Reflection.Emit.Label)", "summary", "df-generated"] - ["System.Reflection.Emit", "Label", "op_Inequality", "(System.Reflection.Emit.Label,System.Reflection.Emit.Label)", "summary", "df-generated"] + - ["System.Reflection.Emit", "LocalBuilder", "SetLocalSymInfo", "(System.String)", "summary", "df-generated"] - ["System.Reflection.Emit", "LocalBuilder", "get_IsPinned", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "LocalBuilder", "get_LocalIndex", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "MethodBuilder", "DefineGenericParameters", "(System.String[])", "summary", "df-generated"] @@ -453,6 +472,10 @@ extensions: - ["System.Reflection.Emit", "ParameterBuilder", "get_IsOptional", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", "get_IsOut", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "ParameterBuilder", "get_Position", "()", "summary", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", "GetName", "(System.Boolean)", "summary", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", "Save", "(System.IO.Stream)", "summary", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", "Save", "(System.String)", "summary", "df-generated"] + - ["System.Reflection.Emit", "PersistedAssemblyBuilder", "SetCustomAttributeCore", "(System.Reflection.ConstructorInfo,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", "AddOtherMethod", "(System.Reflection.Emit.MethodBuilder)", "summary", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", "GetCustomAttributes", "(System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Emit", "PropertyBuilder", "GetCustomAttributes", "(System.Type,System.Boolean)", "summary", "df-generated"] @@ -518,7 +541,6 @@ extensions: - ["System.Reflection.Emit", "TypeBuilder", "DefineProperty", "(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[])", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "DefineProperty", "(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][])", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "DefineTypeInitializer", "()", "summary", "df-generated"] - - ["System.Reflection.Emit", "TypeBuilder", "DefineTypeInitializerCore", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "DefineUninitializedData", "(System.String,System.Int32,System.Reflection.FieldAttributes)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "DefineUninitializedDataCore", "(System.String,System.Int32,System.Reflection.FieldAttributes)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetAttributeFlagsImpl", "()", "summary", "df-generated"] @@ -528,7 +550,6 @@ extensions: - ["System.Reflection.Emit", "TypeBuilder", "GetEvents", "()", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetEvents", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetFields", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - - ["System.Reflection.Emit", "TypeBuilder", "GetInterfaceMap", "(System.Type)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetMember", "(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetMembers", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection.Emit", "TypeBuilder", "GetMethods", "(System.Reflection.BindingFlags)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml index 9eaeb30bf78..4e738fbc341 100644 --- a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml +++ b/csharp/ql/lib/ext/generated/System.Reflection.Metadata.Ecma335.model.yml @@ -4,13 +4,29 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Reflection.Metadata.Ecma335", "ArrayShapeEncoder", False, "ArrayShapeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.ArrayShapeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "BlobEncoder", False, "BlobEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.BlobEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "CustomAttributeArrayTypeEncoder", False, "CustomAttributeArrayTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", False, "CustomAttributeElementTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeElementTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "CustomAttributeNamedArgumentsEncoder", False, "CustomAttributeNamedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder.Builder]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomModifiersEncoder", False, "AddModifier", "(System.Reflection.Metadata.EntityHandle,System.Boolean)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "CustomModifiersEncoder", False, "CustomModifiersEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomModifiersEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "EditAndContinueLogEntry", False, "EditAndContinueLogEntry", "(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.Ecma335.EditAndContinueOperation)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry.Handle]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", False, "Add", "(System.Reflection.Metadata.ExceptionRegionKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle,System.Int32)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", False, "AddCatch", "(System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", False, "AddFault", "(System.Int32,System.Int32,System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", False, "AddFilter", "(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", False, "AddFinally", "(System.Int32,System.Int32,System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", False, "FieldTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.FieldTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "FixedArgumentsEncoder", False, "FixedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "GenericTypeArgumentsEncoder", False, "GenericTypeArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.GenericTypeArgumentsEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", False, "InstructionEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.CodeBuilder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", False, "InstructionEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.ControlFlowBuilder]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", False, "Switch", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", False, "LiteralEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "LiteralsEncoder", False, "LiteralsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralsEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", False, "LocalVariableTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariableTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "LocalVariablesEncoder", False, "LocalVariablesEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariablesEncoder.Builder]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddAssembly", "(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddAssembly", "(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddAssembly", "(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] @@ -19,12 +35,27 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddModule", "(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddModule", "(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "AddModule", "(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle)", "", "Argument[4]", "Argument[this]", "taint", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MetadataRootBuilder", False, "MetadataRootBuilder", "(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "ReserveGuid", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", False, "ReserveUserString", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "MetadataRootBuilder", False, "MetadataRootBuilder", "(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.MetadataRootBuilder.MetadataVersion]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataRootBuilder", False, "get_Sizes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", False, "AddMethodBody", "(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes)", "", "Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder]", "ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", False, "AddMethodBody", "(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean)", "", "Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder]", "ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", False, "MethodBodyStreamEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", False, "MethodSignatureEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodSignatureEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "NameEncoder", False, "NameEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.NameEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", False, "NamedArgumentTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "NamedArgumentsEncoder", False, "NamedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentsEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", False, "ParameterTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.ParameterTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", False, "ParametersEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.ParametersEncoder.Builder]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "PermissionSetEncoder", False, "AddPermission", "(System.String,System.Collections.Immutable.ImmutableArray)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "PermissionSetEncoder", False, "AddPermission", "(System.String,System.Reflection.Metadata.BlobBuilder)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "PermissionSetEncoder", False, "PermissionSetEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.PermissionSetEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", False, "PortablePdbBuilder", "(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>)", "", "Argument[3]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.PortablePdbBuilder.IdProvider]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", False, "Serialize", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", False, "Serialize", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", False, "ReturnTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.ReturnTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", False, "ScalarEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.ScalarEncoder.Builder]", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureDecoder", False, "DecodeFieldSignature", "(System.Reflection.Metadata.BlobReader)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureDecoder", False, "DecodeLocalSignature", "(System.Reflection.Metadata.BlobReader)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureDecoder", False, "DecodeMethodSignature", "(System.Reflection.Metadata.BlobReader)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -37,14 +68,14 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", False, "Array", "(System.Reflection.Metadata.Ecma335.SignatureTypeEncoder,System.Reflection.Metadata.Ecma335.ArrayShapeEncoder)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", False, "Pointer", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", False, "SZArray", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", False, "SignatureTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.Builder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata.Ecma335", "VectorEncoder", False, "VectorEncoder", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.Ecma335.VectorEncoder.Builder]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Reflection.Metadata.Ecma335", "ArrayShapeEncoder", "ArrayShapeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ArrayShapeEncoder", "Shape", "(System.Int32,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ArrayShapeEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "BlobEncoder", "BlobEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "BlobEncoder", "CustomAttributeSignature", "(System.Action,System.Action)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "BlobEncoder", "CustomAttributeSignature", "(System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder,System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "BlobEncoder", "Field", "()", "summary", "df-generated"] @@ -77,14 +108,12 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "ControlFlowBuilder", "AddFilterRegion", "(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ControlFlowBuilder", "AddFinallyRegion", "(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ControlFlowBuilder", "Clear", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "CustomAttributeArrayTypeEncoder", "CustomAttributeArrayTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeArrayTypeEncoder", "ElementType", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeArrayTypeEncoder", "ObjectArray", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeArrayTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Boolean", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Byte", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Char", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "CustomAttributeElementTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Double", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Enum", "(System.String)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "Int16", "()", "summary", "df-generated"] @@ -100,11 +129,8 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "UInt64", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeElementTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeNamedArgumentsEncoder", "Count", "(System.Int32)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "CustomAttributeNamedArgumentsEncoder", "CustomAttributeNamedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomAttributeNamedArgumentsEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "CustomModifiersEncoder", "CustomModifiersEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "CustomModifiersEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "EditAndContinueLogEntry", "EditAndContinueLogEntry", "(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.Ecma335.EditAndContinueOperation)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "EditAndContinueLogEntry", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "EditAndContinueLogEntry", "Equals", "(System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "EditAndContinueLogEntry", "GetHashCode", "()", "summary", "df-generated"] @@ -116,15 +142,12 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "ExceptionRegionEncoder", "get_HasSmallFormat", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ExportedTypeExtensions", "GetTypeDefinitionId", "(System.Reflection.Metadata.ExportedType)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", "CustomModifiers", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", "FieldTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", "Type", "(System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", "TypedReference", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FieldTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FixedArgumentsEncoder", "AddArgument", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "FixedArgumentsEncoder", "FixedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "FixedArgumentsEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "GenericTypeArgumentsEncoder", "AddArgument", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "GenericTypeArgumentsEncoder", "GenericTypeArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "GenericTypeArgumentsEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "Branch", "(System.Reflection.Metadata.ILOpCode,System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "Call", "(System.Reflection.Metadata.EntityHandle)", "summary", "df-generated"] @@ -133,7 +156,6 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "Call", "(System.Reflection.Metadata.MethodSpecificationHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "CallIndirect", "(System.Reflection.Metadata.StandaloneSignatureHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "DefineLabel", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "InstructionEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "LoadArgument", "(System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "LoadArgumentAddress", "(System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "InstructionEncoder", "LoadConstantI4", "(System.Int32)", "summary", "df-generated"] @@ -159,7 +181,6 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "LabelHandle", "get_IsNil", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LabelHandle", "op_Equality", "(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LabelHandle", "op_Inequality", "(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "LiteralEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "Scalar", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "TaggedScalar", "(System.Action,System.Action)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "TaggedScalar", "(System.Reflection.Metadata.Ecma335.CustomAttributeElementTypeEncoder,System.Reflection.Metadata.Ecma335.ScalarEncoder)", "summary", "df-generated"] @@ -168,15 +189,12 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "Vector", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralsEncoder", "AddLiteral", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "LiteralsEncoder", "LiteralsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LiteralsEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", "CustomModifiers", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", "LocalVariableTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", "Type", "(System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", "TypedReference", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariableTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariablesEncoder", "AddVariable", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "LocalVariablesEncoder", "LocalVariablesEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "LocalVariablesEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataAggregator", "GetGenerationHandle", "(System.Reflection.Metadata.Handle,System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataAggregator", "MetadataAggregator", "(System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList)", "summary", "df-generated"] @@ -236,8 +254,6 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "GetRowCount", "(System.Reflection.Metadata.Ecma335.TableIndex)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "GetRowCounts", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "MetadataBuilder", "(System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "ReserveGuid", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "ReserveUserString", "(System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "SetCapacity", "(System.Reflection.Metadata.Ecma335.HeapIndex,System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataBuilder", "SetCapacity", "(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MetadataReaderExtensions", "GetEditAndContinueLogEntries", "(System.Reflection.Metadata.MetadataReader)", "summary", "df-generated"] @@ -316,54 +332,41 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder+MethodBody", "get_ExceptionRegions", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder+MethodBody", "get_Instructions", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder+MethodBody", "get_Offset", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "AddMethodBody", "(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "AddMethodBody", "(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "AddMethodBody", "(System.Reflection.Metadata.Ecma335.InstructionEncoder,System.Int32,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "AddMethodBody", "(System.Reflection.Metadata.Ecma335.InstructionEncoder,System.Int32,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "MethodBodyStreamEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodBodyStreamEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", "MethodSignatureEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", "Parameters", "(System.Int32,System.Action,System.Action)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", "Parameters", "(System.Int32,System.Reflection.Metadata.Ecma335.ReturnTypeEncoder,System.Reflection.Metadata.Ecma335.ParametersEncoder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "MethodSignatureEncoder", "get_HasVarArgs", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NameEncoder", "Name", "(System.String)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "NameEncoder", "NameEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NameEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", "NamedArgumentTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", "Object", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", "SZArray", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", "ScalarType", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentsEncoder", "AddArgument", "(System.Boolean,System.Action,System.Action,System.Action)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentsEncoder", "AddArgument", "(System.Boolean,System.Reflection.Metadata.Ecma335.NamedArgumentTypeEncoder,System.Reflection.Metadata.Ecma335.NameEncoder,System.Reflection.Metadata.Ecma335.LiteralEncoder)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "NamedArgumentsEncoder", "NamedArgumentsEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "NamedArgumentsEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", "CustomModifiers", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", "ParameterTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", "Type", "(System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", "TypedReference", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParameterTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", "AddParameter", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", "ParametersEncoder", "(System.Reflection.Metadata.BlobBuilder,System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", "StartVarArgs", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ParametersEncoder", "get_HasVarArgs", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "PermissionSetEncoder", "PermissionSetEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "PermissionSetEncoder", "get_Builder", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", "PortablePdbBuilder", "(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", "get_FormatVersion", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", "get_IdProvider", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "PortablePdbBuilder", "get_MetadataVersion", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "CustomModifiers", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "ReturnTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "Type", "(System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "TypedReference", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "Void", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ReturnTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", "Constant", "(System.Object)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", "NullArray", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", "ScalarEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", "SystemType", "(System.String)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "ScalarEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "Boolean", "()", "summary", "df-generated"] @@ -382,7 +385,6 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "Object", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "PrimitiveType", "(System.Reflection.Metadata.PrimitiveTypeCode)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "SByte", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "SignatureTypeEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "Single", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "String", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "Type", "(System.Reflection.Metadata.EntityHandle,System.Boolean)", "summary", "df-generated"] @@ -395,5 +397,4 @@ extensions: - ["System.Reflection.Metadata.Ecma335", "SignatureTypeEncoder", "get_Builder", "()", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "SwitchInstructionEncoder", "Branch", "(System.Reflection.Metadata.Ecma335.LabelHandle)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "VectorEncoder", "Count", "(System.Int32)", "summary", "df-generated"] - - ["System.Reflection.Metadata.Ecma335", "VectorEncoder", "VectorEncoder", "(System.Reflection.Metadata.BlobBuilder)", "summary", "df-generated"] - ["System.Reflection.Metadata.Ecma335", "VectorEncoder", "get_Builder", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml index be276ab8b42..1b5c45664a8 100644 --- a/csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml +++ b/csharp/ql/lib/ext/generated/System.Reflection.Metadata.model.yml @@ -8,6 +8,11 @@ extensions: - ["System.Reflection.Metadata", "AssemblyDefinition", False, "GetDeclarativeSecurityAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "AssemblyFile", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "AssemblyFileHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.AssemblyFileHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", False, "AssemblyNameInfo", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Name]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", False, "AssemblyNameInfo", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Version]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", False, "AssemblyNameInfo", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray)", "", "Argument[2]", "Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.CultureName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", False, "AssemblyNameInfo", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray)", "", "Argument[4]", "Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.PublicKeyOrToken]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", False, "get_FullName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "AssemblyReference", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "AssemblyReferenceHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.AssemblyReferenceHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "AssemblyReferenceHandleCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -34,6 +39,13 @@ extensions: - ["System.Reflection.Metadata", "BlobWriter", False, "get_Blob", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "CustomAttributeHandleCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", False, "CustomAttributeNamedArgument", "(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Name]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", False, "CustomAttributeNamedArgument", "(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object)", "", "Argument[2]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Type]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", False, "CustomAttributeNamedArgument", "(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object)", "", "Argument[3]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Value]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeTypedArgument", False, "CustomAttributeTypedArgument", "(TType,System.Object)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Type]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeTypedArgument", False, "CustomAttributeTypedArgument", "(TType,System.Object)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Value]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeValue", False, "CustomAttributeValue", "(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.FixedArguments]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "CustomAttributeValue", False, "CustomAttributeValue", "(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.NamedArguments]", "value", "dfc-generated"] - ["System.Reflection.Metadata", "CustomDebugInformationHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.CustomDebugInformationHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "CustomDebugInformationHandleCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "DeclarativeSecurityAttributeHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.DeclarativeSecurityAttributeHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] @@ -136,7 +148,8 @@ extensions: - ["System.Reflection.Metadata", "MetadataReaderProvider", False, "FromPortablePdbImage", "(System.Byte*,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "MetadataReaderProvider", False, "FromPortablePdbImage", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "MetadataReaderProvider", False, "FromPortablePdbStream", "(System.IO.Stream,System.Reflection.Metadata.MetadataStreamOptions,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Reflection.Metadata", "MetadataReaderProvider", False, "GetMetadataReader", "(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata", "MetadataReaderProvider", False, "GetMetadataReader", "(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)", "", "Argument[1]", "ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "MetadataStringDecoder", False, "MetadataStringDecoder", "(System.Text.Encoding)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.MetadataStringDecoder.Encoding]", "value", "dfc-generated"] - ["System.Reflection.Metadata", "MetadataStringDecoder", True, "GetString", "(System.Byte*,System.Int32)", "", "Argument[0].Element", "ReturnValue", "taint", "dfc-generated"] - ["System.Reflection.Metadata", "MethodBodyBlock", False, "Create", "(System.Reflection.Metadata.BlobReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "MethodBodyBlock", False, "GetILReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -154,6 +167,9 @@ extensions: - ["System.Reflection.Metadata", "MethodImplementationHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.MethodImplementationHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "MethodImport", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "MethodImport", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata", "MethodSignature", False, "MethodSignature", "(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.Header]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "MethodSignature", False, "MethodSignature", "(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ReturnType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "MethodSignature", False, "MethodSignature", "(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray)", "", "Argument[4]", "Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ParameterTypes]", "value", "dfc-generated"] - ["System.Reflection.Metadata", "MethodSpecification", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "ModuleDefinition", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "ModuleReference", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -164,7 +180,7 @@ extensions: - ["System.Reflection.Metadata", "NamespaceDefinition", False, "get_TypeDefinitions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "PEReaderExtensions", False, "GetMetadataReader", "(System.Reflection.PortableExecutable.PEReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "PEReaderExtensions", False, "GetMetadataReader", "(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Reflection.Metadata", "PEReaderExtensions", False, "GetMetadataReader", "(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata", "PEReaderExtensions", False, "GetMetadataReader", "(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder)", "", "Argument[2]", "ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder]", "value", "dfc-generated"] - ["System.Reflection.Metadata", "Parameter", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "ParameterHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.ParameterHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "ParameterHandleCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -183,6 +199,26 @@ extensions: - ["System.Reflection.Metadata", "TypeDefinition", False, "GetMethods", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "TypeDefinition", False, "GetProperties", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "TypeDefinitionHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.TypeDefinitionHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "GetElementType", "()", "", "Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "GetGenericArguments", "()", "", "Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._genericArguments]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "GetGenericTypeDefinition", "()", "", "Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeArrayTypeName", "(System.Int32)", "", "Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeArrayTypeName", "(System.Int32)", "", "Argument[this]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeByRefTypeName", "()", "", "Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeByRefTypeName", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeGenericTypeName", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._genericArguments]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeGenericTypeName", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeGenericTypeName", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeGenericTypeName", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[this]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakePointerTypeName", "()", "", "Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakePointerTypeName", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeSZArrayTypeName", "()", "", "Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "MakeSZArrayTypeName", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "WithAssemblyName", "(System.Reflection.Metadata.AssemblyNameInfo)", "", "Argument[0]", "ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "WithAssemblyName", "(System.Reflection.Metadata.AssemblyNameInfo)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType].Property[System.Reflection.Metadata.TypeName.AssemblyName]", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "get_DeclaringType", "()", "", "Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "get_FullName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.Metadata", "TypeReferenceHandleCollection+Enumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Reflection.Metadata.TypeReferenceHandleCollection+Enumerator.Current]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection.Metadata", "TypeSpecification", False, "GetCustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: @@ -222,6 +258,14 @@ extensions: - ["System.Reflection.Metadata", "AssemblyFileHandleCollection+Enumerator", "get_Current", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "AssemblyFileHandleCollection", "GetEnumerator", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "AssemblyFileHandleCollection", "get_Count", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "ToAssemblyName", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "TryParse", "(System.ReadOnlySpan,System.Reflection.Metadata.AssemblyNameInfo)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "get_CultureName", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "get_Flags", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "get_Name", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "get_PublicKeyOrToken", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "AssemblyNameInfo", "get_Version", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "AssemblyReference", "GetAssemblyName", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "AssemblyReference", "get_Culture", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "AssemblyReference", "get_Flags", "()", "summary", "df-generated"] @@ -418,15 +462,12 @@ extensions: - ["System.Reflection.Metadata", "CustomAttributeHandleCollection+Enumerator", "Reset", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeHandleCollection+Enumerator", "get_Current", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeHandleCollection", "get_Count", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", "CustomAttributeNamedArgument", "(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object)", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", "get_Kind", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", "get_Name", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", "get_Type", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeNamedArgument", "get_Value", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata", "CustomAttributeTypedArgument", "CustomAttributeTypedArgument", "(TType,System.Object)", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeTypedArgument", "get_Type", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeTypedArgument", "get_Value", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata", "CustomAttributeValue", "CustomAttributeValue", "(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>)", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeValue", "get_FixedArguments", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomAttributeValue", "get_NamedArguments", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "CustomDebugInformation", "get_Kind", "()", "summary", "df-generated"] @@ -778,7 +819,6 @@ extensions: - ["System.Reflection.Metadata", "MetadataStringComparer", "Equals", "(System.Reflection.Metadata.StringHandle,System.String,System.Boolean)", "summary", "df-generated"] - ["System.Reflection.Metadata", "MetadataStringComparer", "StartsWith", "(System.Reflection.Metadata.StringHandle,System.String)", "summary", "df-generated"] - ["System.Reflection.Metadata", "MetadataStringComparer", "StartsWith", "(System.Reflection.Metadata.StringHandle,System.String,System.Boolean)", "summary", "df-generated"] - - ["System.Reflection.Metadata", "MetadataStringDecoder", "MetadataStringDecoder", "(System.Text.Encoding)", "summary", "df-generated"] - ["System.Reflection.Metadata", "MetadataStringDecoder", "get_DefaultUTF8", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MetadataStringDecoder", "get_Encoding", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MetadataUpdateHandlerAttribute", "MetadataUpdateHandlerAttribute", "(System.Type)", "summary", "df-generated"] @@ -843,7 +883,6 @@ extensions: - ["System.Reflection.Metadata", "MethodImplementationHandleCollection", "GetEnumerator", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MethodImplementationHandleCollection", "get_Count", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MethodImport", "get_Attributes", "()", "summary", "df-generated"] - - ["System.Reflection.Metadata", "MethodSignature", "MethodSignature", "(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray)", "summary", "df-generated"] - ["System.Reflection.Metadata", "MethodSignature", "get_GenericParameterCount", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MethodSignature", "get_Header", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "MethodSignature", "get_ParameterTypes", "()", "summary", "df-generated"] @@ -992,6 +1031,23 @@ extensions: - ["System.Reflection.Metadata", "TypeLayout", "get_IsDefault", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "TypeLayout", "get_PackingSize", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "TypeLayout", "get_Size", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "GetArrayRank", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "GetGenericArguments", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "GetNodeCount", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "Parse", "(System.ReadOnlySpan,System.Nullable)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "Parse", "(System.ReadOnlySpan,System.Reflection.Metadata.TypeNameParseOptions)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "TryParse", "(System.ReadOnlySpan,System.Reflection.Metadata.TypeName,System.Nullable)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "TryParse", "(System.ReadOnlySpan,System.Reflection.Metadata.TypeName,System.Reflection.Metadata.TypeNameParseOptions)", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_AssemblyName", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_AssemblyQualifiedName", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsArray", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsByRef", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsConstructedGenericType", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsNested", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsPointer", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsSZArray", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsSimple", "()", "summary", "df-generated"] + - ["System.Reflection.Metadata", "TypeName", "get_IsVariableBoundArrayType", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "TypeReference", "get_Name", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "TypeReference", "get_Namespace", "()", "summary", "df-generated"] - ["System.Reflection.Metadata", "TypeReference", "get_ResolutionScope", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml index 762ad2ec3cc..7852d88d8a9 100644 --- a/csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml +++ b/csharp/ql/lib/ext/generated/System.Reflection.PortableExecutable.model.yml @@ -7,6 +7,8 @@ extensions: - ["System.Reflection.PortableExecutable", "DebugDirectoryBuilder", False, "AddEntry", "(System.Reflection.PortableExecutable.DebugDirectoryEntryType,System.UInt32,System.UInt32,TData,System.Action)", "", "Argument[3]", "Argument[4].Parameter[1]", "value", "dfc-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder+Section", False, "Section", "(System.String,System.Reflection.PortableExecutable.SectionCharacteristics)", "", "Argument[0]", "Argument[this].Field[System.Reflection.PortableExecutable.PEBuilder+Section.Name]", "value", "dfc-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", False, "GetSections", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection.PortableExecutable", "PEBuilder", False, "PEBuilder", "(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>)", "", "Argument[0]", "Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.Header]", "value", "dfc-generated"] + - ["System.Reflection.PortableExecutable", "PEBuilder", False, "PEBuilder", "(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>)", "", "Argument[1]", "Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.IdProvider]", "value", "dfc-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", False, "Serialize", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", False, "Serialize", "(System.Reflection.Metadata.BlobBuilder)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", True, "GetDirectories", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -71,7 +73,6 @@ extensions: - ["System.Reflection.PortableExecutable", "ManagedPEBuilder", "ManagedPEBuilder", "(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Reflection.Metadata.Ecma335.MetadataRootBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.PortableExecutable.ResourceSectionBuilder,System.Reflection.PortableExecutable.DebugDirectoryBuilder,System.Int32,System.Reflection.Metadata.MethodDefinitionHandle,System.Reflection.PortableExecutable.CorFlags,System.Func,System.Reflection.Metadata.BlobContentId>)", "summary", "df-generated"] - ["System.Reflection.PortableExecutable", "ManagedPEBuilder", "Sign", "(System.Reflection.Metadata.BlobBuilder,System.Func,System.Byte[]>)", "summary", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", "CreateSections", "()", "summary", "df-generated"] - - ["System.Reflection.PortableExecutable", "PEBuilder", "PEBuilder", "(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>)", "summary", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", "get_Header", "()", "summary", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", "get_IdProvider", "()", "summary", "df-generated"] - ["System.Reflection.PortableExecutable", "PEBuilder", "get_IsDeterministic", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.Runtime.TypeParsing.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.Runtime.TypeParsing.model.yml deleted file mode 100644 index 5032a7a3267..00000000000 --- a/csharp/ql/lib/ext/generated/System.Reflection.Runtime.TypeParsing.model.yml +++ /dev/null @@ -1,16 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: summaryModel - data: - - ["System.Reflection.Runtime.TypeParsing", "AssemblyQualifiedTypeName", False, "AssemblyQualifiedTypeName", "(System.Reflection.Runtime.TypeParsing.NonQualifiedTypeName,System.Reflection.RuntimeAssemblyName)", "", "Argument[0]", "Argument[this].Property[System.Reflection.Runtime.TypeParsing.AssemblyQualifiedTypeName.TypeName]", "value", "dfc-generated"] - - ["System.Reflection.Runtime.TypeParsing", "AssemblyQualifiedTypeName", False, "AssemblyQualifiedTypeName", "(System.Reflection.Runtime.TypeParsing.NonQualifiedTypeName,System.Reflection.RuntimeAssemblyName)", "", "Argument[1]", "Argument[this].Property[System.Reflection.Runtime.TypeParsing.AssemblyQualifiedTypeName.AssemblyName]", "value", "dfc-generated"] - - ["System.Reflection.Runtime.TypeParsing", "TypeName", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["System.Reflection.Runtime.TypeParsing", "AssemblyQualifiedTypeName", "get_AssemblyName", "()", "summary", "df-generated"] - - ["System.Reflection.Runtime.TypeParsing", "AssemblyQualifiedTypeName", "get_TypeName", "()", "summary", "df-generated"] - - ["System.Reflection.Runtime.TypeParsing", "TypeParser", "ParseTypeName", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Reflection.model.yml b/csharp/ql/lib/ext/generated/System.Reflection.model.yml index 229f1a5f091..43ee41799ad 100644 --- a/csharp/ql/lib/ext/generated/System.Reflection.model.yml +++ b/csharp/ql/lib/ext/generated/System.Reflection.model.yml @@ -43,17 +43,23 @@ extensions: - ["System.Reflection", "Binder", True, "ReorderArgumentArray", "(System.Object[],System.Object)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "Binder", True, "SelectMethod", "(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[])", "", "Argument[1].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "Binder", True, "SelectProperty", "(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[])", "", "Argument[1].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object,System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object,System.Object)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object,System.Object)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Object,System.Object,System.Object,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Span)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Reflection", "ConstructorInvoker", False, "Invoke", "(System.Span)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "CustomAttributeData", True, "get_Constructor", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "CustomAttributeData", True, "get_ConstructorArguments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "CustomAttributeData", True, "get_NamedArguments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -66,8 +72,7 @@ extensions: - ["System.Reflection", "CustomAttributeNamedArgument", False, "get_TypedValue", "()", "", "Argument[this].SyntheticField[System.Reflection.CustomAttributeNamedArgument._value]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "CustomAttributeTypedArgument", False, "CustomAttributeTypedArgument", "(System.Object)", "", "Argument[0]", "Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value]", "value", "dfc-generated"] - ["System.Reflection", "CustomAttributeTypedArgument", False, "CustomAttributeTypedArgument", "(System.Type,System.Object)", "", "Argument[1]", "Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value]", "value", "dfc-generated"] - - ["System.Reflection", "CustomAttributeTypedArgument", False, "ToString", "()", "", "Argument[this].Property[System.Reflection.CustomAttributeTypedArgument.Value]", "ReturnValue", "taint", "dfc-generated"] - - ["System.Reflection", "CustomAttributeTypedArgument", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Reflection", "CustomAttributeTypedArgument", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "CustomAttributeTypedArgument", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "EventInfo", False, "GetAddMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "EventInfo", False, "GetRaiseMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -84,6 +89,8 @@ extensions: - ["System.Reflection", "EventInfoExtensions", False, "GetRemoveMethod", "(System.Reflection.EventInfo,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ExceptionHandlingClause", True, "get_CatchType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "FieldInfo", True, "GetModifiedFieldType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection", "FieldInfo", True, "GetOptionalCustomModifiers", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection", "FieldInfo", True, "GetRequiredCustomModifiers", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "FieldInfo", True, "get_FieldHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "FieldInfo", True, "get_FieldType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "IReflect", True, "GetField", "(System.String,System.Reflection.BindingFlags)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -167,7 +174,7 @@ extensions: - ["System.Reflection", "Module", True, "get_ModuleVersionId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "Module", True, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "Module", True, "get_ScopeName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Reflection", "ModuleExtensions", False, "GetModuleVersionId", "(System.Reflection.Module)", "", "Argument[0].Property[System.Reflection.Module.ModuleVersionId]", "ReturnValue", "value", "dfc-generated"] + - ["System.Reflection", "ModuleExtensions", False, "GetModuleVersionId", "(System.Reflection.Module)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ParameterInfo", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ParameterInfo", True, "GetModifiedParameterType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "ParameterInfo", True, "get_CustomAttributes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -200,12 +207,9 @@ extensions: - ["System.Reflection", "ReflectionContext", True, "MapAssembly", "(System.Reflection.Assembly)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "ReflectionContext", True, "MapType", "(System.Reflection.TypeInfo)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "ReflectionTypeLoadException", False, "get_Message", "()", "", "Argument[this].Property[System.Exception.Message]", "ReturnValue", "value", "dfc-generated"] - - ["System.Reflection", "RuntimeAssemblyName", False, "RuntimeAssemblyName", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Byte[])", "", "Argument[0]", "Argument[this].Property[System.Reflection.RuntimeAssemblyName.Name]", "value", "dfc-generated"] - - ["System.Reflection", "RuntimeAssemblyName", False, "RuntimeAssemblyName", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Byte[])", "", "Argument[1]", "Argument[this].Property[System.Reflection.RuntimeAssemblyName.Version]", "value", "dfc-generated"] - - ["System.Reflection", "RuntimeAssemblyName", False, "RuntimeAssemblyName", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Byte[])", "", "Argument[2]", "Argument[this].Property[System.Reflection.RuntimeAssemblyName.CultureName]", "value", "dfc-generated"] - - ["System.Reflection", "RuntimeAssemblyName", False, "RuntimeAssemblyName", "(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Byte[])", "", "Argument[4]", "Argument[this].Property[System.Reflection.RuntimeAssemblyName.PublicKeyOrToken]", "value", "dfc-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", False, "GetMethodInfo", "(System.Delegate)", "", "Argument[0].Property[System.Delegate.Method]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", False, "GetRuntimeBaseDefinition", "(System.Reflection.MethodInfo)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Reflection", "RuntimeReflectionExtensions", False, "GetRuntimeInterfaceMap", "(System.Reflection.TypeInfo,System.Type)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "TypeInfo", True, "AsType", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Reflection", "TypeInfo", True, "GetDeclaredEvent", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Reflection", "TypeInfo", True, "GetDeclaredField", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -253,6 +257,7 @@ extensions: - ["System.Reflection", "Assembly", "ReflectionOnlyLoad", "(System.Byte[])", "summary", "df-generated"] - ["System.Reflection", "Assembly", "ReflectionOnlyLoad", "(System.String)", "summary", "df-generated"] - ["System.Reflection", "Assembly", "ReflectionOnlyLoadFrom", "(System.String)", "summary", "df-generated"] + - ["System.Reflection", "Assembly", "SetEntryAssembly", "(System.Reflection.Assembly)", "summary", "df-generated"] - ["System.Reflection", "Assembly", "UnsafeLoadFrom", "(System.String)", "summary", "df-generated"] - ["System.Reflection", "Assembly", "add_ModuleResolve", "(System.Reflection.ModuleResolveEventHandler)", "summary", "df-generated"] - ["System.Reflection", "Assembly", "get_DefinedTypes", "()", "summary", "df-generated"] @@ -309,8 +314,6 @@ extensions: - ["System.Reflection", "AssemblyName", "OnDeserialization", "(System.Object)", "summary", "df-generated"] - ["System.Reflection", "AssemblyName", "ReferenceMatchesDefinition", "(System.Reflection.AssemblyName,System.Reflection.AssemblyName)", "summary", "df-generated"] - ["System.Reflection", "AssemblyName", "get_FullName", "()", "summary", "df-generated"] - - ["System.Reflection", "AssemblyNameHelpers", "ComputePublicKeyToken", "(System.Byte[])", "summary", "df-generated"] - - ["System.Reflection", "AssemblyNameHelpers", "ExtractAssemblyNameFlags", "(System.Reflection.AssemblyNameFlags)", "summary", "df-generated"] - ["System.Reflection", "AssemblyNameProxy", "GetAssemblyName", "(System.String)", "summary", "df-generated"] - ["System.Reflection", "AssemblyProductAttribute", "AssemblyProductAttribute", "(System.String)", "summary", "df-generated"] - ["System.Reflection", "AssemblyProductAttribute", "get_Product", "()", "summary", "df-generated"] @@ -332,7 +335,6 @@ extensions: - ["System.Reflection", "ConstructorInfo", "op_Equality", "(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)", "summary", "df-generated"] - ["System.Reflection", "ConstructorInfo", "op_Inequality", "(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)", "summary", "df-generated"] - ["System.Reflection", "ConstructorInvoker", "Create", "(System.Reflection.ConstructorInfo)", "summary", "df-generated"] - - ["System.Reflection", "ConstructorInvoker", "Invoke", "()", "summary", "df-generated"] - ["System.Reflection", "CustomAttributeData", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Reflection", "CustomAttributeData", "GetCustomAttributes", "(System.Reflection.Assembly)", "summary", "df-generated"] - ["System.Reflection", "CustomAttributeData", "GetCustomAttributes", "(System.Reflection.MemberInfo)", "summary", "df-generated"] @@ -423,9 +425,7 @@ extensions: - ["System.Reflection", "FieldInfo", "GetFieldFromHandle", "(System.RuntimeFieldHandle)", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "GetFieldFromHandle", "(System.RuntimeFieldHandle,System.RuntimeTypeHandle)", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "GetHashCode", "()", "summary", "df-generated"] - - ["System.Reflection", "FieldInfo", "GetOptionalCustomModifiers", "()", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "GetRawConstantValue", "()", "summary", "df-generated"] - - ["System.Reflection", "FieldInfo", "GetRequiredCustomModifiers", "()", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "GetValue", "(System.Object)", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "GetValueDirect", "(System.TypedReference)", "summary", "df-generated"] - ["System.Reflection", "FieldInfo", "SetValue", "(System.Object,System.Object)", "summary", "df-generated"] @@ -616,20 +616,10 @@ extensions: - ["System.Reflection", "ReflectionTypeLoadException", "ReflectionTypeLoadException", "(System.Type[],System.Exception[],System.String)", "summary", "df-generated"] - ["System.Reflection", "ReflectionTypeLoadException", "get_LoaderExceptions", "()", "summary", "df-generated"] - ["System.Reflection", "ReflectionTypeLoadException", "get_Types", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "Equals", "(System.Object)", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "Equals", "(System.Reflection.RuntimeAssemblyName)", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "GetHashCode", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_CultureName", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_Flags", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_FullName", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_Name", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_PublicKeyOrToken", "()", "summary", "df-generated"] - - ["System.Reflection", "RuntimeAssemblyName", "get_Version", "()", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeEvent", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeEvents", "(System.Type)", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeField", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeFields", "(System.Type)", "summary", "df-generated"] - - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeInterfaceMap", "(System.Reflection.TypeInfo,System.Type)", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeMethod", "(System.Type,System.String,System.Type[])", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeMethods", "(System.Type)", "summary", "df-generated"] - ["System.Reflection", "RuntimeReflectionExtensions", "GetRuntimeProperties", "(System.Type)", "summary", "df-generated"] @@ -655,7 +645,6 @@ extensions: - ["System.Reflection", "TypeDelegator", "GetEvents", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection", "TypeDelegator", "GetFields", "(System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection", "TypeDelegator", "GetFunctionPointerCallingConventions", "()", "summary", "df-generated"] - - ["System.Reflection", "TypeDelegator", "GetInterfaceMap", "(System.Type)", "summary", "df-generated"] - ["System.Reflection", "TypeDelegator", "GetMember", "(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System.Reflection", "TypeDelegator", "GetMemberWithSameMetadataDefinitionAs", "(System.Reflection.MemberInfo)", "summary", "df-generated"] - ["System.Reflection", "TypeDelegator", "GetMembers", "(System.Reflection.BindingFlags)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml index 9173e86d1be..5a5eb2fa860 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Caching.model.yml @@ -16,6 +16,9 @@ extensions: - ["System.Runtime.Caching", "CacheEntryUpdateArguments", False, "get_Key", "()", "", "Argument[this].SyntheticField[System.Runtime.Caching.CacheEntryUpdateArguments._key]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Caching", "CacheEntryUpdateArguments", False, "get_RegionName", "()", "", "Argument[this].SyntheticField[System.Runtime.Caching.CacheEntryUpdateArguments._regionName]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Caching", "CacheEntryUpdateArguments", False, "get_Source", "()", "", "Argument[this].SyntheticField[System.Runtime.Caching.CacheEntryUpdateArguments._source]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Caching", "CacheItem", False, "CacheItem", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Runtime.Caching.CacheItem.Key]", "value", "dfc-generated"] + - ["System.Runtime.Caching", "CacheItem", False, "CacheItem", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Property[System.Runtime.Caching.CacheItem.Value]", "value", "dfc-generated"] + - ["System.Runtime.Caching", "CacheItem", False, "CacheItem", "(System.String,System.Object,System.String)", "", "Argument[2]", "Argument[this].Property[System.Runtime.Caching.CacheItem.RegionName]", "value", "dfc-generated"] - ["System.Runtime.Caching", "ChangeMonitor", True, "get_UniqueId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Caching", "FileChangeMonitor", True, "get_LastModified", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Caching", "HostFileChangeMonitor", False, "HostFileChangeMonitor", "(System.Collections.Generic.IList)", "", "Argument[0].Element", "Argument[this].SyntheticField[System.Runtime.Caching.HostFileChangeMonitor._filePaths].Element", "value", "dfc-generated"] @@ -34,9 +37,6 @@ extensions: - ["System.Runtime.Caching", "CacheEntryChangeMonitor", "get_CacheKeys", "()", "summary", "df-generated"] - ["System.Runtime.Caching", "CacheEntryRemovedArguments", "get_RemovedReason", "()", "summary", "df-generated"] - ["System.Runtime.Caching", "CacheEntryUpdateArguments", "get_RemovedReason", "()", "summary", "df-generated"] - - ["System.Runtime.Caching", "CacheItem", "CacheItem", "(System.String)", "summary", "df-generated"] - - ["System.Runtime.Caching", "CacheItem", "CacheItem", "(System.String,System.Object)", "summary", "df-generated"] - - ["System.Runtime.Caching", "CacheItem", "CacheItem", "(System.String,System.Object,System.String)", "summary", "df-generated"] - ["System.Runtime.Caching", "CacheItemPolicy", "get_ChangeMonitors", "()", "summary", "df-generated"] - ["System.Runtime.Caching", "ChangeMonitor", "Dispose", "()", "summary", "df-generated"] - ["System.Runtime.Caching", "ChangeMonitor", "Dispose", "(System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml index 80f68fcf6e0..b707827561c 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.CompilerServices.model.yml @@ -45,6 +45,12 @@ extensions: - ["System.Runtime.CompilerServices", "CallSiteOps", False, "GetRules", "(System.Runtime.CompilerServices.CallSite)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.CompilerServices", "Closure", False, "Closure", "(System.Object[],System.Object[])", "", "Argument[0]", "Argument[this].Field[System.Runtime.CompilerServices.Closure.Constants]", "value", "dfc-generated"] - ["System.Runtime.CompilerServices", "Closure", False, "Closure", "(System.Object[],System.Object[])", "", "Argument[1]", "Argument[this].Field[System.Runtime.CompilerServices.Closure.Locals]", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,System.Func)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,System.Func)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,TValue)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetOrAdd", "(TKey,System.Func,TArg)", "", "Argument[2]", "Argument[1].Parameter[1]", "value", "dfc-generated"] - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetValue", "(TKey,System.Runtime.CompilerServices.ConditionalWeakTable+CreateValueCallback)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System.Runtime.CompilerServices", "ConditionalWeakTable", False, "GetValue", "(TKey,System.Runtime.CompilerServices.ConditionalWeakTable+CreateValueCallback)", "", "Argument[1].ReturnValue", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.CompilerServices", "ConfiguredCancelableAsyncEnumerable+Enumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -220,8 +226,6 @@ extensions: - ["System.Runtime.CompilerServices", "FixedBufferAttribute", "get_Length", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "IAsyncStateMachine", "MoveNext", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "IAsyncStateMachine", "SetStateMachine", "(System.Runtime.CompilerServices.IAsyncStateMachine)", "summary", "df-generated"] - - ["System.Runtime.CompilerServices", "ICastable", "GetImplType", "(System.RuntimeTypeHandle)", "summary", "df-generated"] - - ["System.Runtime.CompilerServices", "ICastable", "IsInstanceOfInterface", "(System.RuntimeTypeHandle,System.Exception)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "ICriticalNotifyCompletion", "UnsafeOnCompleted", "(System.Action)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "IDispatchConstantAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "INotifyCompletion", "OnCompleted", "(System.Action)", "summary", "df-generated"] @@ -232,7 +236,7 @@ extensions: - ["System.Runtime.CompilerServices", "IndexerNameAttribute", "IndexerNameAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "InlineArrayAttribute", "InlineArrayAttribute", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "InlineArrayAttribute", "get_Length", "()", "summary", "df-generated"] - - ["System.Runtime.CompilerServices", "InterceptsLocationAttribute", "InterceptsLocationAttribute", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "InterceptsLocationAttribute", "InterceptsLocationAttribute", "(System.Int32,System.String)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "InternalsVisibleToAttribute", "InternalsVisibleToAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "InternalsVisibleToAttribute", "get_AssemblyName", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "InterpolatedStringHandlerArgumentAttribute", "InterpolatedStringHandlerArgumentAttribute", "(System.String)", "summary", "df-generated"] @@ -247,6 +251,8 @@ extensions: - ["System.Runtime.CompilerServices", "NullableAttribute", "NullableAttribute", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "NullableContextAttribute", "NullableContextAttribute", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "NullablePublicOnlyAttribute", "NullablePublicOnlyAttribute", "(System.Boolean)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "OverloadResolutionPriorityAttribute", "OverloadResolutionPriorityAttribute", "(System.Int32)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "OverloadResolutionPriorityAttribute", "get_Priority", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "PoolingAsyncValueTaskMethodBuilder", "Create", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "PoolingAsyncValueTaskMethodBuilder", "SetException", "(System.Exception)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "PoolingAsyncValueTaskMethodBuilder", "SetResult", "()", "summary", "df-generated"] @@ -281,6 +287,7 @@ extensions: - ["System.Runtime.CompilerServices", "RuntimeFeature", "get_IsDynamicCodeCompiled", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeFeature", "get_IsDynamicCodeSupported", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "AllocateTypeAssociatedMemory", "(System.Type,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "RuntimeHelpers", "Box", "(System.Byte,System.RuntimeTypeHandle)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "CreateSpan", "(System.RuntimeFieldHandle)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "EnsureSufficientExecutionStack", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "Equals", "(System.Object,System.Object)", "summary", "df-generated"] @@ -299,12 +306,14 @@ extensions: - ["System.Runtime.CompilerServices", "RuntimeHelpers", "ProbeForSufficientStack", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "RunClassConstructor", "(System.RuntimeTypeHandle)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "RunModuleConstructor", "(System.ModuleHandle)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "RuntimeHelpers", "SizeOf", "(System.RuntimeTypeHandle)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "TryEnsureSufficientExecutionStack", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeHelpers", "get_OffsetToStringData", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeOps", "CreateRuntimeVariables", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeOps", "ExpandoCheckVersion", "(System.Dynamic.ExpandoObject,System.Object)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "RuntimeOps", "ExpandoTryDeleteValue", "(System.Dynamic.ExpandoObject,System.Object,System.Int32,System.String,System.Boolean)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "StateMachineAttribute", "StateMachineAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.Runtime.CompilerServices", "StateMachineAttribute", "get_StateMachineType", "()", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "SwitchExpressionException", "SwitchExpressionException", "(System.Exception)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "SwitchExpressionException", "SwitchExpressionException", "(System.Object)", "summary", "df-generated"] - ["System.Runtime.CompilerServices", "SwitchExpressionException", "SwitchExpressionException", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml index 7eac5a4a81c..aecefcb0357 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.ExceptionServices.model.yml @@ -16,5 +16,6 @@ extensions: data: - ["System.Runtime.ExceptionServices", "ExceptionDispatchInfo", "Throw", "()", "summary", "df-generated"] - ["System.Runtime.ExceptionServices", "ExceptionDispatchInfo", "Throw", "(System.Exception)", "summary", "df-generated"] + - ["System.Runtime.ExceptionServices", "ExceptionHandling", "SetUnhandledExceptionHandler", "(System.Func)", "summary", "df-generated"] - ["System.Runtime.ExceptionServices", "FirstChanceExceptionEventArgs", "FirstChanceExceptionEventArgs", "(System.Exception)", "summary", "df-generated"] - ["System.Runtime.ExceptionServices", "FirstChanceExceptionEventArgs", "get_Exception", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml index 4ec869949b0..ca567ebf807 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Marshalling.model.yml @@ -21,6 +21,9 @@ extensions: - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", False, "FromManaged", "(System.ReadOnlySpan,System.Span)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray]", "value", "dfc-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", False, "GetManagedValuesSource", "()", "", "Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", False, "GetUnmanagedValuesDestination", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedOut", False, "FromUnmanaged", "(TUnmanagedElement*)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedOut", False, "GetManagedValuesDestination", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedOut", False, "ToManaged", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+UnmanagedToManagedOut", False, "GetManagedValuesSource", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices.Marshalling", "SafeHandleMarshaller+ManagedToUnmanagedIn", False, "FromManaged", "(T)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices.Marshalling", "SafeHandleMarshaller+ManagedToUnmanagedIn", False, "ToUnmanaged", "()", "", "Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle].Field[System.Runtime.InteropServices.SafeHandle.handle]", "ReturnValue", "value", "dfc-generated"] @@ -41,6 +44,8 @@ extensions: - ["System.Runtime.InteropServices.Marshalling", "Utf8StringMarshaller+ManagedToUnmanagedIn", False, "ToUnmanaged", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", False, "Deconstruct", "(System.Void*,System.Void**)", "", "Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", False, "Deconstruct", "(System.Void*,System.Void**)", "", "Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", False, "VirtualMethodTableInfo", "(System.Void*,System.Void**)", "", "Argument[0]", "Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer]", "value", "dfc-generated"] + - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", False, "VirtualMethodTableInfo", "(System.Void*,System.Void**)", "", "Argument[1]", "Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -135,6 +140,8 @@ extensions: - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", "GetPinnableReference", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", "ToUnmanaged", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedIn", "get_BufferSize", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedOut", "Free", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+ManagedToUnmanagedOut", "GetUnmanagedValuesSource", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+UnmanagedToManagedOut", "AllocateContainerForUnmanagedElements", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "ReadOnlySpanMarshaller+UnmanagedToManagedOut", "GetUnmanagedValuesDestination", "(TUnmanagedElement*,System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "SafeHandleMarshaller+ManagedToUnmanagedIn", "Free", "()", "summary", "df-generated"] @@ -156,7 +163,6 @@ extensions: - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "ComputeVtables", "(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags,System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "CreateCacheStrategy", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "CreateDefaultCacheStrategy", "()", "summary", "df-generated"] - - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "CreateObject", "(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "GetOrCreateIUnknownStrategy", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "GetOrCreateInterfaceDetailsStrategy", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "StrategyBasedComWrappers", "ReleaseObjects", "(System.Collections.IEnumerable)", "summary", "df-generated"] @@ -175,6 +181,5 @@ extensions: - ["System.Runtime.InteropServices.Marshalling", "Utf8StringMarshaller", "ConvertToManaged", "(System.Byte*)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "Utf8StringMarshaller", "ConvertToUnmanaged", "(System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "Utf8StringMarshaller", "Free", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", "VirtualMethodTableInfo", "(System.Void*,System.Void**)", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", "get_ThisPointer", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices.Marshalling", "VirtualMethodTableInfo", "get_VirtualMethodTable", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Swift.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Swift.model.yml new file mode 100644 index 00000000000..8c8ff7e07be --- /dev/null +++ b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.Swift.model.yml @@ -0,0 +1,14 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["System.Runtime.InteropServices.Swift", "SwiftError", "SwiftError", "(System.Void*)", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftError", "get_Value", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftIndirectResult", "SwiftIndirectResult", "(System.Void*)", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftIndirectResult", "get_Value", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftSelf", "SwiftSelf", "(System.Void*)", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftSelf", "get_Value", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftSelf", "SwiftSelf", "(T)", "summary", "df-generated"] + - ["System.Runtime.InteropServices.Swift", "SwiftSelf", "get_Value", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml index 7934e8a4c0e..8c1b8232a5c 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.InteropServices.model.yml @@ -10,11 +10,13 @@ extensions: - ["System.Runtime.InteropServices", "CLong", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Runtime.InteropServices.CLong._value]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "CULong", False, "CULong", "(System.UIntPtr)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "CULong", False, "get_Value", "()", "", "Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value]", "ReturnValue", "value", "dfc-generated"] - - ["System.Runtime.InteropServices", "CollectionsMarshal", False, "AsSpan", "(System.Collections.Generic.List)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.InteropServices", "ComAliasNameAttribute", False, "ComAliasNameAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Runtime.InteropServices.ComAliasNameAttribute.Value]", "value", "dfc-generated"] + - ["System.Runtime.InteropServices", "ComWrappers", True, "CreateObject", "(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices", "CriticalHandle", False, "CriticalHandle", "(System.IntPtr)", "", "Argument[0]", "Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "CriticalHandle", False, "SetHandle", "(System.IntPtr)", "", "Argument[0]", "Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "GCHandle", False, "FromIntPtr", "(System.IntPtr)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Runtime.InteropServices.GCHandle._handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "GCHandle", False, "ToIntPtr", "(System.Runtime.InteropServices.GCHandle)", "", "Argument[0].SyntheticField[System.Runtime.InteropServices.GCHandle._handle]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.InteropServices", "HandleCollector", False, "HandleCollector", "(System.String,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this].Property[System.Runtime.InteropServices.HandleCollector.Name]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "HandleRef", False, "HandleRef", "(System.Object,System.IntPtr)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "HandleRef", False, "HandleRef", "(System.Object,System.IntPtr)", "", "Argument[1]", "Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "HandleRef", False, "ToIntPtr", "(System.Runtime.InteropServices.HandleRef)", "", "Argument[0].SyntheticField[System.Runtime.InteropServices.HandleRef._handle]", "ReturnValue", "value", "dfc-generated"] @@ -22,6 +24,9 @@ extensions: - ["System.Runtime.InteropServices", "HandleRef", False, "get_Wrapper", "()", "", "Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "ImmutableCollectionsMarshal", False, "AsArray", "(System.Collections.Immutable.ImmutableArray)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices", "ImmutableCollectionsMarshal", False, "AsImmutableArray", "(T[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.InteropServices", "ImportedFromTypeLibAttribute", False, "ImportedFromTypeLibAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Runtime.InteropServices.ImportedFromTypeLibAttribute.Value]", "value", "dfc-generated"] + - ["System.Runtime.InteropServices", "JsonMarshal", False, "GetRawUtf8PropertyName", "(System.Text.Json.JsonProperty)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.InteropServices", "ManagedToNativeComInteropStubAttribute", False, "ManagedToNativeComInteropStubAttribute", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].Property[System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.MethodName]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "Marshal", False, "InitHandle", "(System.Runtime.InteropServices.SafeHandle,System.IntPtr)", "", "Argument[1]", "Argument[0].Field[System.Runtime.InteropServices.SafeHandle.handle]", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "MemoryMarshal", False, "CreateFromPinnedArray", "(T[],System.Int32,System.Int32)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices", "MemoryMarshal", False, "CreateSpan", "(T,System.Int32)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -29,6 +34,8 @@ extensions: - ["System.Runtime.InteropServices", "MemoryMarshal", False, "TryGetMemoryManager", "(System.ReadOnlyMemory,TManager)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices", "MemoryMarshal", False, "TryGetMemoryManager", "(System.ReadOnlyMemory,TManager,System.Int32,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.InteropServices", "MemoryMarshal", False, "TryGetString", "(System.ReadOnlyMemory,System.String,System.Int32,System.Int32)", "", "Argument[0].SyntheticField[System.ReadOnlyMemory`1._object]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.InteropServices", "NFloat", False, "ConvertToInteger", "(System.Runtime.InteropServices.NFloat)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.InteropServices", "NFloat", False, "ConvertToIntegerNative", "(System.Runtime.InteropServices.NFloat)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "NFloat", False, "CreateChecked", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "NFloat", False, "CreateSaturating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.InteropServices", "NFloat", False, "CreateTruncating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -79,10 +86,12 @@ extensions: - ["System.Runtime.InteropServices", "ClassInterfaceAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "CoClassAttribute", "CoClassAttribute", "(System.Type)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "CoClassAttribute", "get_CoClass", "()", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "CollectionsMarshal", "AsSpan", "(System.Collections.Generic.List)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "CollectionsMarshal", "GetValueRefOrAddDefault", "(System.Collections.Generic.Dictionary+AlternateLookup,TAlternateKey,System.Boolean)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "CollectionsMarshal", "GetValueRefOrAddDefault", "(System.Collections.Generic.Dictionary,TKey,System.Boolean)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "CollectionsMarshal", "GetValueRefOrNullRef", "(System.Collections.Generic.Dictionary+AlternateLookup,TAlternateKey)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "CollectionsMarshal", "GetValueRefOrNullRef", "(System.Collections.Generic.Dictionary,TKey)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "CollectionsMarshal", "SetCount", "(System.Collections.Generic.List,System.Int32)", "summary", "df-generated"] - - ["System.Runtime.InteropServices", "ComAliasNameAttribute", "ComAliasNameAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComAliasNameAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComAwareEventInfo", "AddEventHandler", "(System.Object,System.Delegate)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComAwareEventInfo", "ComAwareEventInfo", "(System.Type,System.String)", "summary", "df-generated"] @@ -116,7 +125,6 @@ extensions: - ["System.Runtime.InteropServices", "ComVisibleAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComWrappers+ComInterfaceDispatch", "GetInstance", "(System.Runtime.InteropServices.ComWrappers+ComInterfaceDispatch*)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComWrappers", "ComputeVtables", "(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags,System.Int32)", "summary", "df-generated"] - - ["System.Runtime.InteropServices", "ComWrappers", "CreateObject", "(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComWrappers", "GetIUnknownImpl", "(System.IntPtr,System.IntPtr,System.IntPtr)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComWrappers", "GetOrCreateComInterfaceForObject", "(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ComWrappers", "GetOrCreateObjectForComInstance", "(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags)", "summary", "df-generated"] @@ -174,7 +182,6 @@ extensions: - ["System.Runtime.InteropServices", "GuidAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "HandleCollector", "Add", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "HandleCollector", "HandleCollector", "(System.String,System.Int32)", "summary", "df-generated"] - - ["System.Runtime.InteropServices", "HandleCollector", "HandleCollector", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "HandleCollector", "Remove", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "HandleCollector", "get_Count", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "HandleCollector", "get_InitialThreshold", "()", "summary", "df-generated"] @@ -190,7 +197,6 @@ extensions: - ["System.Runtime.InteropServices", "ICustomQueryInterface", "GetInterface", "(System.Guid,System.IntPtr)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "IDynamicInterfaceCastable", "GetInterfaceImplementation", "(System.RuntimeTypeHandle)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "IDynamicInterfaceCastable", "IsInterfaceImplemented", "(System.RuntimeTypeHandle,System.Boolean)", "summary", "df-generated"] - - ["System.Runtime.InteropServices", "ImportedFromTypeLibAttribute", "ImportedFromTypeLibAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ImportedFromTypeLibAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "InterfaceTypeAttribute", "InterfaceTypeAttribute", "(System.Int16)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "InterfaceTypeAttribute", "InterfaceTypeAttribute", "(System.Runtime.InteropServices.ComInterfaceType)", "summary", "df-generated"] @@ -201,11 +207,11 @@ extensions: - ["System.Runtime.InteropServices", "InvalidOleVariantTypeException", "InvalidOleVariantTypeException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "InvalidOleVariantTypeException", "InvalidOleVariantTypeException", "(System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "InvalidOleVariantTypeException", "InvalidOleVariantTypeException", "(System.String,System.Exception)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "JsonMarshal", "GetRawUtf8Value", "(System.Text.Json.JsonElement)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "LCIDConversionAttribute", "LCIDConversionAttribute", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "LCIDConversionAttribute", "get_Value", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "LibraryImportAttribute", "LibraryImportAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "LibraryImportAttribute", "get_LibraryName", "()", "summary", "df-generated"] - - ["System.Runtime.InteropServices", "ManagedToNativeComInteropStubAttribute", "ManagedToNativeComInteropStubAttribute", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ManagedToNativeComInteropStubAttribute", "get_ClassType", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "ManagedToNativeComInteropStubAttribute", "get_MethodName", "()", "summary", "df-generated"] - ["System.Runtime.InteropServices", "Marshal", "AddRef", "(System.IntPtr)", "summary", "df-generated"] @@ -410,6 +416,7 @@ extensions: - ["System.Runtime.InteropServices", "NFloat", "Cbrt", "(System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "Ceiling", "(System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "Clamp", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "NFloat", "ClampNative", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "CompareTo", "(System.Object)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "CompareTo", "(System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "CopySign", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] @@ -464,11 +471,14 @@ extensions: - ["System.Runtime.InteropServices", "NFloat", "Max", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MaxMagnitude", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MaxMagnitudeNumber", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "NFloat", "MaxNative", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MaxNumber", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "Min", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MinMagnitude", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MinMagnitudeNumber", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "NFloat", "MinNative", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "MinNumber", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] + - ["System.Runtime.InteropServices", "NFloat", "MultiplyAddEstimate", "(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "NFloat", "(System.Double)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "NFloat", "(System.Single)", "summary", "df-generated"] - ["System.Runtime.InteropServices", "NFloat", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml index d315c84346a..6b508617908 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.Arm.model.yml @@ -236,6 +236,66 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "InsertSelectedScalar", "(System.Runtime.Intrinsics.Vector64,System.Byte,System.Runtime.Intrinsics.Vector64,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "InsertSelectedScalar", "(System.Runtime.Intrinsics.Vector64,System.Byte,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "InsertSelectedScalar", "(System.Runtime.Intrinsics.Vector64,System.Byte,System.Runtime.Intrinsics.Vector64,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load2xVector128AndUnzip", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load3xVector128AndUnzip", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Load4xVector128AndUnzip", "(System.UInt64*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadAndInsertScalar", "(System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadAndInsertScalar", "(System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadAndInsertScalar", "(System.ValueTuple,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*)", "summary", "df-generated"] @@ -345,66 +405,6 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadPairVector64NonTemporal", "(System.UInt16*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadPairVector64NonTemporal", "(System.UInt32*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadPairVector64NonTemporal", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x2AndUnzip", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x3AndUnzip", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Double*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Int64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "LoadVector128x4AndUnzip", "(System.UInt64*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "MaxAcross", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "MaxAcross", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -600,6 +600,36 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Sqrt", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Sqrt", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Sqrt", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Store", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StorePair", "(System.Byte*,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StorePair", "(System.Byte*,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StorePair", "(System.Double*,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -676,66 +706,36 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreSelectedScalar", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreSelectedScalar", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreSelectedScalar", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>,System.Byte)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x2AndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x3AndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVector128x4AndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "StoreVectorAndZip", "(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "Subtract", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "SubtractSaturateScalar", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd+Arm64", "SubtractSaturateScalar", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] @@ -1433,6 +1433,48 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load2xVector64AndUnzip", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load3xVector64AndUnzip", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Load4xVector64AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadAndInsertScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte,System.Byte*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadAndInsertScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte,System.Double*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadAndInsertScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte,System.Int16*)", "summary", "df-generated"] @@ -1526,48 +1568,6 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64", "(System.UInt16*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64", "(System.UInt32*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64", "(System.UInt64*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x2AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x3AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4", "(System.UInt32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.Byte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.Int16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.Int32*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.SByte*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.Single*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.UInt16*)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "LoadVector64x4AndUnzip", "(System.UInt32*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -2403,22 +2403,43 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "SqrtScalar", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Byte*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Byte*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Double*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Double*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int16*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int16*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int32*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int32*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int64*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Int64*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.SByte*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.SByte*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Single*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Single*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt16*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt16*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt32*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt32*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt64*,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Store", "(System.UInt64*,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreSelectedScalar", "(System.Byte*,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] @@ -2459,48 +2480,27 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreSelectedScalar", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreSelectedScalar", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreSelectedScalar", "(System.UInt64*,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x2AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x3AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVector64x4AndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "StoreVectorAndZip", "(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Subtract", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Subtract", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "AdvSimd", "Subtract", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -2735,3 +2735,1479 @@ extensions: - ["System.Runtime.Intrinsics.Arm", "Sha256", "ScheduleUpdate0", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "Sha256", "ScheduleUpdate1", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.Arm", "Sha256", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve+Arm64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Abs", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteCompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AbsoluteDifference", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Add", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddRotateComplex", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddRotateComplex", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSequentialAcross", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AddSequentialAcross", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "And", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "AndAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BitwiseClear", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "BooleanNot", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compact", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareGreaterThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThan", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareLessThanOrEqual", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareNotEqualTo", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareUnordered", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CompareUnordered", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute16BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute16BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute16BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute16BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute32BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute32BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute32BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute32BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute64BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute64BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute64BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute64BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute8BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute8BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute8BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Compute8BitAddresses", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Byte,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Double,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Int16,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.SByte,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Single,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.UInt16,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElement", "(System.Numerics.Vector,System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractAfterLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Byte,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Double,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Int16,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.SByte,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Single,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.UInt16,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElement", "(System.Numerics.Vector,System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalExtractLastActiveElementAndReplicate", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConditionalSelect", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToDouble", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToSingle", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToUInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToUInt32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToUInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ConvertToUInt64", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Count16BitElements", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Count32BitElements", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Count64BitElements", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Count8BitElements", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakAfterPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforeMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakBeforePropagateMask", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateBreakPropagateMask", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskByte", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskDouble", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskInt16", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskInt32", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskInt64", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskSByte", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskSingle", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskUInt16", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskUInt32", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateFalseMaskUInt64", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForFirstActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForNextActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForNextActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForNextActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateMaskForNextActiveElement", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskByte", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskDouble", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskInt16", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskInt32", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskInt64", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskSByte", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskSingle", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskUInt16", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskUInt32", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateTrueMaskUInt64", "(System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask16Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask16Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask16Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask16Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask32Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask32Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask32Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask32Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask64Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask64Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask64Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask64Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask8Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask8Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask8Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanMask8Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask16Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask16Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask16Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask16Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask32Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask32Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask32Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask32Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask64Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask64Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask64Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask64Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask8Bit", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask8Bit", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask8Bit", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "CreateWhileLessThanOrEqualMask8Bit", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Divide", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Divide", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProduct", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProduct", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProduct", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProduct", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProductBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProductBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProductBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DotProductBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "DuplicateSelectedScalarToVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ExtractVector", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FloatingPointExponentialAccelerator", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FloatingPointExponentialAccelerator", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAddBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAddBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAddNegated", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplyAddNegated", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtractBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtractBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtractNegated", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "FusedMultiplySubtractNegated", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch16Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch32Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch64Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherPrefetch8Bit", "(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVector", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorFirstFaulting", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtend", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtend", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtend", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtend", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsetFirstFaulting", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GatherVectorWithByteOffsets", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrByte", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrInt16", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrInt32", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrInt64", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrSByte", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrUInt16", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrUInt32", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "GetFfrUInt64", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Double)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Int16)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Int64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.SByte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.Single)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.UInt16)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "InsertIntoShiftedVector", "(System.Numerics.Vector,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingSignCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingSignCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingSignCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingSignCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LeadingZeroCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load2xVectorAndUnzip", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load3xVectorAndUnzip", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Load4xVectorAndUnzip", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector128AndReplicateToVector", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVector", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToInt16", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToInt32", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToInt64", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToUInt16", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToUInt32", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteNonFaultingZeroExtendToUInt64", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToInt16", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToInt32", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToInt64", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToUInt16", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToUInt32", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorByteZeroExtendToUInt64", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorFirstFaulting", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16NonFaultingSignExtendToInt32", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16NonFaultingSignExtendToInt64", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16NonFaultingSignExtendToUInt32", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16NonFaultingSignExtendToUInt64", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendToInt32", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendToInt64", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendToUInt32", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt16SignExtendToUInt64", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32NonFaultingSignExtendToInt64", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32NonFaultingSignExtendToUInt64", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32SignExtendFirstFaulting", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32SignExtendToInt64", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorInt32SignExtendToUInt64", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonFaulting", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Byte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Int16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorNonTemporal", "(System.Numerics.Vector,System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToInt16", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToInt32", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToInt64", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToUInt16", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToUInt32", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteNonFaultingSignExtendToUInt64", "(System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendFirstFaulting", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToInt16", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToInt32", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToInt64", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToUInt16", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToUInt32", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorSByteSignExtendToUInt64", "(System.Numerics.Vector,System.SByte*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16NonFaultingZeroExtendToInt32", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16NonFaultingZeroExtendToInt64", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16NonFaultingZeroExtendToUInt32", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16NonFaultingZeroExtendToUInt64", "(System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendToInt32", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendToInt64", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendToUInt32", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt16ZeroExtendToUInt64", "(System.Numerics.Vector,System.UInt16*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32NonFaultingZeroExtendToInt64", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32NonFaultingZeroExtendToUInt64", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32ZeroExtendFirstFaulting", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32ZeroExtendToInt64", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "LoadVectorUInt32ZeroExtendToUInt64", "(System.Numerics.Vector,System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Max", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxNumberAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MaxNumberAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Min", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinNumber", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinNumberAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MinNumberAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Multiply", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAdd", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAddRotateComplex", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAddRotateComplex", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyAddRotateComplexBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyBySelectedScalar", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyExtended", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplyExtended", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "MultiplySubtract", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Negate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Not", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Or", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "OrAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PopCount", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PrefetchBytes", "(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PrefetchInt16", "(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PrefetchInt32", "(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "PrefetchInt64", "(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalEstimate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalEstimate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalExponent", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalExponent", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalSqrtEstimate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalSqrtEstimate", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalSqrtStep", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalSqrtStep", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalStep", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReciprocalStep", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseBits", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ReverseElement", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundAwayFromZero", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundAwayFromZero", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToNearest", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToNearest", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToNegativeInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToNegativeInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToPositiveInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToPositiveInfinity", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToZero", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "RoundToZero", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy16BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy32BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy64BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy8BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy8BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy8BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementBy8BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingDecrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy16BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy32BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy64BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy8BitElementCount", "(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy8BitElementCount", "(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy8BitElementCount", "(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementBy8BitElementCount", "(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Int64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt32,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SaturatingIncrementByActiveElementCount", "(System.UInt64,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scale", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scale", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter16BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter32BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitNarrowing", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter8BitWithByteOffsetsNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Scatter", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SetFfr", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftLeftLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmetic", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmeticForDivide", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmeticForDivide", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmeticForDivide", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightArithmeticForDivide", "(System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ShiftRightLogical", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SignExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Splice", "(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Sqrt", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Sqrt", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreAndZip", "(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector>)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNarrowing", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Byte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Double*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Int16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Int32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Int64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.SByte*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.Single*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "StoreNonTemporal", "(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Subtract", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "SubtractSaturate", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestAnyTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestFirstTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TestLastTrue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TransposeOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricMultiplyAddCoefficient", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricMultiplyAddCoefficient", "(System.Numerics.Vector,System.Numerics.Vector,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricSelectCoefficient", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricSelectCoefficient", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricStartingValue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "TrigonometricStartingValue", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipEven", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "UnzipOdd", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "VectorTableLookup", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "Xor", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "XorAcross", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend16", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend32", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtend8", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningLower", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZeroExtendWideningUpper", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipHigh", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "ZipLow", "(System.Numerics.Vector,System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.Arm", "Sve", "get_IsSupported", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml index cc084fcd0f0..7527c1164c2 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.X86.model.yml @@ -13,6 +13,584 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Aes", "KeygenAssist", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Aes", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "And", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "And", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "AndNot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "AndNot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastPairScalarToVector512", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastPairScalarToVector512", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastPairScalarToVector512", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector128ToVector512", "(System.Double*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector128ToVector512", "(System.Int64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector128ToVector512", "(System.UInt64*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector256ToVector512", "(System.Int32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector256ToVector512", "(System.Single*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "BroadcastVector256ToVector512", "(System.UInt32*)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512Int64WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ConvertToVector512UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "DetectConflicts", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "DetectConflicts", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "DetectConflicts", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "DetectConflicts", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector128", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector128", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector128", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector256", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector256", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "ExtractVector256", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector128", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector128", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector128", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector256", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector256", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "InsertVector256", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "MultiShift", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "MultiShift", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "MultiplyLow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "MultiplyLow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Or", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Or", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "PermuteVar64x8", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "PermuteVar64x8", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "PermuteVar64x8x2", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "PermuteVar64x8x2", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Range", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Range", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Reduce", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Reduce", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Xor", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "Xor", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+V512", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "ConvertToUInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Abs", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Abs", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "AlignRight64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "BroadcastPairScalarToVector128", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "BroadcastPairScalarToVector128", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "BroadcastPairScalarToVector256", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "BroadcastPairScalarToVector256", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "BroadcastPairScalarToVector256", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareGreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareLessThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "CompareNotEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Int32,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt32,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToUInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128ByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Double", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Double", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Double", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int16WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int32WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Int64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128SByteWithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt16WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32WithSaturation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32WithSaturation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt32WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector128UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Double", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Double", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Double", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Int64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Int64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Int64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Int64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt32WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ConvertToVector256UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DetectConflicts", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DivideScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "DivideScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Fixup", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Fixup", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Fixup", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Fixup", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FixupScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FixupScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplyAddNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplyAddNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplyAddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplyAddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplySubtractNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplySubtractNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "FusedMultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponent", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponent", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponent", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponent", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponentScalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponentScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponentScalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetExponentScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissa", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissa", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissa", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissa", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissaScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissaScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissaScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "GetMantissaScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "LeadingZeroCount", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Max", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Max", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Min", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Min", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Min", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Min", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiShift", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiShift", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiShift", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiShift", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyLow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyLow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyLow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyLow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "MultiplyScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x16", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x16", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x16x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x16x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x8", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x8", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x8x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar16x8x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar2x64x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar2x64x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar2x64x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar32x8", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar32x8", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar32x8x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar32x8x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x32x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x32x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x32x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar4x64x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x16", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x16", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x16x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x16x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x32x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x32x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "PermuteVar8x32x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Range", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Range", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Range", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Range", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RangeScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RangeScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14Scalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14Scalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14Scalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reciprocal14Scalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14Scalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14Scalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14Scalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReciprocalSqrt14Scalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reduce", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reduce", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reduce", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Reduce", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReduceScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReduceScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReduceScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ReduceScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeft", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateLeftVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRight", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RotateRightVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScale", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScale", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScale", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScale", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Scale", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Scale", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Scale", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Scale", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftLeftLogicalVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftLeftLogicalVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftLeftLogicalVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftLeftLogicalVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmetic", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmetic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmetic", "(System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmetic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmeticVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmeticVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmeticVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightArithmeticVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightLogicalVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightLogicalVariable", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightLogicalVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "ShiftRightLogicalVariable", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "Shuffle2x128", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SqrtScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SqrtScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SumAbsoluteDifferencesInBlock32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "SumAbsoluteDifferencesInBlock32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v1", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToSByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToSByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "ConvertToSByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "MinMax", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "MinMax", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "MultipleSumAbsoluteDifferences", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+V512", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Add", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Add", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToSByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToSByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToSByteWithSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToSByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToSByteWithTruncatedSaturationAndZeroExtendToInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128Int32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128Single", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128UInt16", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector128UInt32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Double", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Double", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Int32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Int64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Int64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256UInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "ConvertToVector256UInt64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Divide", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Divide", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMax", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMax", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMax", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMax", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMaxScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "MinMaxScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Multiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Multiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Scale", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Scale", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Sqrt", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Sqrt", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Subtract", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "Subtract", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx10v2", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx2+X64", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx2", "Abs", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx2", "Abs", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] @@ -693,15 +1271,23 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "BroadcastVector256ToVector512", "(System.Single*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "BroadcastVector256ToVector512", "(System.UInt32*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Double", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512Int64WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ConvertToVector512UInt64WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512DQ", "ExtractVector128", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] @@ -967,21 +1553,33 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F+VL", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+VL", "TernaryLogic", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+VL", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "ConvertToUInt64WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F+X64", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Abs", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Abs", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "AddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "AddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "AlignRight32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "AlignRight32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "AlignRight64", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] @@ -1071,9 +1669,16 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "CompareUnordered", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "CompareUnordered", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertScalarToVector128Double", "(System.Runtime.Intrinsics.Vector128,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Int32,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertScalarToVector128Single", "(System.Runtime.Intrinsics.Vector128,System.UInt32,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToUInt32WithTruncation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector128Byte", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1098,15 +1703,18 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int16", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int16WithSaturation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32WithSaturation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Int32WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt16", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt16", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt16WithSaturation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector256UInt32WithSaturation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1119,6 +1727,7 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int32WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -1127,12 +1736,15 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Int64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Single", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512Single", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt32WithTruncation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -1141,7 +1753,11 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ConvertToVector512UInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Divide", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Divide", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Divide", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Divide", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "DivideScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "DivideScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "DuplicateEvenIndexed", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "DuplicateEvenIndexed", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "DuplicateOddIndexed", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1170,17 +1786,37 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "FixupScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FixupScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddSubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddSubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddSubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplyAddSubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegated", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractNegatedScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "FusedMultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "GetExponent", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "GetExponent", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "GetExponentScalar", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -1254,11 +1890,15 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "Min", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Min", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "MultiplyLow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "MultiplyLow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "MultiplyScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "MultiplyScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Or", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Or", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Or", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1321,9 +1961,13 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "RoundScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Scale", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Scale", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Scale", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Scale", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "ScaleScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ShiftLeftLogical", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ShiftLeftLogical", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "ShiftLeftLogical", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] @@ -1365,7 +2009,11 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "Shuffle", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Shuffle", "(System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Sqrt", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Sqrt", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Sqrt", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Sqrt", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "SqrtScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "SqrtScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Store", "(System.Byte*,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Store", "(System.Double*,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Store", "(System.Int16*,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1397,11 +2045,15 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "StoreAlignedNonTemporal", "(System.UInt32*,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "StoreAlignedNonTemporal", "(System.UInt64*,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Subtract", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "SubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512F", "SubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "TernaryLogic", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "TernaryLogic", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "TernaryLogic", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] @@ -1433,6 +2085,10 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512F", "Xor", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "Xor", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512F", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "MultiShift", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "MultiShift", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "MultiShift", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "MultiShift", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "PermuteVar16x8", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "PermuteVar16x8", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "PermuteVar16x8x2", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -1443,6 +2099,8 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "PermuteVar32x8x2", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+VL", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi", "MultiShift", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi", "MultiShift", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi", "PermuteVar64x8", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi", "PermuteVar64x8", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Avx512Vbmi", "PermuteVar64x8x2", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -1764,10 +2422,29 @@ extensions: - ["System.Runtime.Intrinsics.X86", "Fma", "MultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Fma", "MultiplySubtractScalar", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Fma", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V256", "GaloisFieldAffineTransform", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V256", "GaloisFieldAffineTransformInverse", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V256", "GaloisFieldMultiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V256", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V512", "GaloisFieldAffineTransform", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V512", "GaloisFieldAffineTransformInverse", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V512", "GaloisFieldMultiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+V512", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni+X64", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni", "GaloisFieldAffineTransform", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni", "GaloisFieldAffineTransformInverse", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni", "GaloisFieldMultiply", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Gfni", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Lzcnt+X64", "LeadingZeroCount", "(System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Lzcnt+X64", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Lzcnt", "LeadingZeroCount", "(System.UInt32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Lzcnt", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V256", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V256", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V256", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V512", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V512", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+V512", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Pclmulqdq+X64", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Pclmulqdq", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics.X86", "Pclmulqdq", "CarrylessMultiply", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml index 4e6658c2762..c5f3e8f56ed 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Intrinsics.model.yml @@ -4,23 +4,59 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Runtime.Intrinsics", "Vector128", False, "Abs", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Ceiling", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Ceiling", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "CopySign", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Floor", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Floor", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "GetLower", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "GetUpper", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Round", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Round", "(System.Runtime.Intrinsics.Vector128,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Round", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Round", "(System.Runtime.Intrinsics.Vector128,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "StoreUnsafe", "(System.Runtime.Intrinsics.Vector128,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Truncate", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector128", False, "Truncate", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "WithElement", "(System.Runtime.Intrinsics.Vector128,System.Int32,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "WithLower", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "WithUpper", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector128", False, "op_UnaryPlus", "(System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Abs", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Ceiling", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Ceiling", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "CopySign", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Floor", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Floor", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "GetLower", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "GetUpper", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Round", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Round", "(System.Runtime.Intrinsics.Vector256,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Round", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Round", "(System.Runtime.Intrinsics.Vector256,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "StoreUnsafe", "(System.Runtime.Intrinsics.Vector256,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Truncate", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector256", False, "Truncate", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "WithElement", "(System.Runtime.Intrinsics.Vector256,System.Int32,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "WithLower", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "WithUpper", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector256", False, "op_UnaryPlus", "(System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Abs", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Ceiling", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Ceiling", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "CopySign", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Floor", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Floor", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "GetLower", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "GetUpper", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Round", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Round", "(System.Runtime.Intrinsics.Vector512,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Round", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Round", "(System.Runtime.Intrinsics.Vector512,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "StoreUnsafe", "(System.Runtime.Intrinsics.Vector512,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Truncate", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector512", False, "Truncate", "(System.Runtime.Intrinsics.Vector512)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "WithElement", "(System.Runtime.Intrinsics.Vector512,System.Int32,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "WithLower", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector512", False, "WithUpper", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -28,18 +64,28 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", False, "Abs", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "Ceiling", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "Ceiling", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "CopySign", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "Floor", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "Floor", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Round", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Round", "(System.Runtime.Intrinsics.Vector64,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Round", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Round", "(System.Runtime.Intrinsics.Vector64,System.MidpointRounding)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "StoreUnsafe", "(System.Runtime.Intrinsics.Vector64,T)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Truncate", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Intrinsics", "Vector64", False, "Truncate", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "WithElement", "(System.Runtime.Intrinsics.Vector64,System.Int32,T)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Intrinsics", "Vector64", False, "op_UnaryPlus", "(System.Runtime.Intrinsics.Vector64)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Runtime.Intrinsics", "Vector128", "Abs", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Add", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "All", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "AllWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AndNot", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Any", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "AnyWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "As", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsByte", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsDouble", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -57,26 +103,36 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "AsVector128", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector128", "(System.Numerics.Vector4)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector128", "(System.Numerics.Vector)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "AsVector128Unsafe", "(System.Numerics.Vector2)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "AsVector128Unsafe", "(System.Numerics.Vector3)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector2", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector3", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector4", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "AsVector", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "BitwiseAnd", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "BitwiseOr", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector128", "Ceiling", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector128", "Ceiling", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Clamp", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "ClampNative", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConditionalSelect", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "ConvertToInt32Native", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "ConvertToInt64Native", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "ConvertToUInt32Native", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "ConvertToUInt64Native", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "CopyTo", "(System.Runtime.Intrinsics.Vector128,System.Span)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "CopyTo", "(System.Runtime.Intrinsics.Vector128,T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "CopyTo", "(System.Runtime.Intrinsics.Vector128,T[],System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Cos", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Cos", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Count", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "CountWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.Double)", "summary", "df-generated"] @@ -112,6 +168,7 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Create", "(T[])", "summary", "df-generated"] @@ -142,15 +199,20 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "CreateScalarUnsafe", "(System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "CreateScalarUnsafe", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "CreateScalarUnsafe", "(T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "CreateSequence", "(T,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Divide", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Divide", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Dot", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Equals", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "EqualsAll", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "EqualsAny", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Exp", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Exp", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ExtractMostSignificantBits", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector128", "Floor", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector128", "Floor", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "GetElement", "(System.Runtime.Intrinsics.Vector128,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "GreaterThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "GreaterThanAll", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -158,6 +220,27 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "GreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "GreaterThanOrEqualAll", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "GreaterThanOrEqualAny", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Hypot", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Hypot", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IndexOf", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsEvenInteger", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsFinite", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsInfinity", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsInteger", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsNaN", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsNegative", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsNegativeInfinity", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsNormal", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsOddInteger", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsPositive", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsPositiveInfinity", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsSubnormal", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "IsZero", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "LastIndexOf", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "LastIndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Lerp", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Lerp", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "LessThan", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "LessThanAll", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "LessThanAny", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -169,11 +252,25 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "LoadAlignedNonTemporal", "(T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "LoadUnsafe", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "LoadUnsafe", "(T,System.UIntPtr)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Log2", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Log2", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Log", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Log", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Max", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MaxMagnitude", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MaxMagnitudeNumber", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MaxNative", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MaxNumber", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Min", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MinMagnitude", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MinMagnitudeNumber", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MinNative", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MinNumber", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Multiply", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Multiply", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Multiply", "(T,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Narrow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Narrow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Narrow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] @@ -182,7 +279,11 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "Narrow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Narrow", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Negate", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "None", "(System.Runtime.Intrinsics.Vector128,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "NoneWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "OnesComplement", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ShiftLeft", "(System.Runtime.Intrinsics.Vector128,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ShiftLeft", "(System.Runtime.Intrinsics.Vector128,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "ShiftLeft", "(System.Runtime.Intrinsics.Vector128,System.Int32)", "summary", "df-generated"] @@ -218,6 +319,10 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "Shuffle", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Shuffle", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Shuffle", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Sin", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "Sin", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "SinCos", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "SinCos", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Sqrt", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "Store", "(System.Runtime.Intrinsics.Vector128,T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "StoreAligned", "(System.Runtime.Intrinsics.Vector128,T*)", "summary", "df-generated"] @@ -258,6 +363,7 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "ToString", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "get_AllBitsSet", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "get_Count", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector128", "get_Indices", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "get_One", "()", "summary", "df-generated"] @@ -279,9 +385,12 @@ extensions: - ["System.Runtime.Intrinsics", "Vector128", "op_Subtraction", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "op_UnaryNegation", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector128", "op_UnsignedRightShift", "(System.Runtime.Intrinsics.Vector128,System.Int32)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector256", "Abs", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Add", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "All", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "AllWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "AndNot", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Any", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "AnyWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "As", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "AsByte", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "AsDouble", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] @@ -299,20 +408,28 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "AsVector", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "BitwiseAnd", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "BitwiseOr", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector256", "Ceiling", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector256", "Ceiling", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Clamp", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "ClampNative", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConditionalSelect", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "ConvertToInt32Native", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "ConvertToInt64Native", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "ConvertToUInt32Native", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "ConvertToUInt64Native", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "CopyTo", "(System.Runtime.Intrinsics.Vector256,System.Span)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "CopyTo", "(System.Runtime.Intrinsics.Vector256,T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "CopyTo", "(System.Runtime.Intrinsics.Vector256,T[],System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Cos", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Cos", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Count", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "CountWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Double)", "summary", "df-generated"] @@ -348,7 +465,9 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.UInt64,System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Create", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Create", "(T[],System.Int32)", "summary", "df-generated"] @@ -378,15 +497,20 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "CreateScalarUnsafe", "(System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "CreateScalarUnsafe", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "CreateScalarUnsafe", "(T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "CreateSequence", "(T,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Divide", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Divide", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Dot", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Equals", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "EqualsAll", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "EqualsAny", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Exp", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Exp", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ExtractMostSignificantBits", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector256", "Floor", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector256", "Floor", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "GetElement", "(System.Runtime.Intrinsics.Vector256,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "GreaterThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "GreaterThanAll", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] @@ -394,6 +518,27 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "GreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "GreaterThanOrEqualAll", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "GreaterThanOrEqualAny", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Hypot", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Hypot", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IndexOf", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsEvenInteger", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsFinite", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsInfinity", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsInteger", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsNaN", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsNegative", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsNegativeInfinity", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsNormal", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsOddInteger", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsPositive", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsPositiveInfinity", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsSubnormal", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "IsZero", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "LastIndexOf", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "LastIndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Lerp", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Lerp", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "LessThan", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "LessThanAll", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "LessThanAny", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] @@ -405,11 +550,25 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "LoadAlignedNonTemporal", "(T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "LoadUnsafe", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "LoadUnsafe", "(T,System.UIntPtr)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Log2", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Log2", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Log", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Log", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Max", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MaxMagnitude", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MaxMagnitudeNumber", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MaxNative", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MaxNumber", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Min", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MinMagnitude", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MinMagnitudeNumber", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MinNative", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MinNumber", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Multiply", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Multiply", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Multiply", "(T,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Narrow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Narrow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Narrow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] @@ -418,7 +577,11 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "Narrow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Narrow", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Negate", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "None", "(System.Runtime.Intrinsics.Vector256,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "NoneWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "OnesComplement", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ShiftLeft", "(System.Runtime.Intrinsics.Vector256,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ShiftLeft", "(System.Runtime.Intrinsics.Vector256,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "ShiftLeft", "(System.Runtime.Intrinsics.Vector256,System.Int32)", "summary", "df-generated"] @@ -454,6 +617,10 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "Shuffle", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Shuffle", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Shuffle", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Sin", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "Sin", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "SinCos", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "SinCos", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Sqrt", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "Store", "(System.Runtime.Intrinsics.Vector256,T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "StoreAligned", "(System.Runtime.Intrinsics.Vector256,T*)", "summary", "df-generated"] @@ -494,6 +661,7 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "ToString", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "get_AllBitsSet", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "get_Count", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector256", "get_Indices", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "get_One", "()", "summary", "df-generated"] @@ -515,9 +683,12 @@ extensions: - ["System.Runtime.Intrinsics", "Vector256", "op_Subtraction", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "op_UnaryNegation", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector256", "op_UnsignedRightShift", "(System.Runtime.Intrinsics.Vector256,System.Int32)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector512", "Abs", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Add", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "All", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "AllWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "AndNot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Any", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "AnyWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "As", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "AsByte", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "AsDouble", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -535,20 +706,28 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "AsVector", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "BitwiseAnd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "BitwiseOr", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector512", "Ceiling", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector512", "Ceiling", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Clamp", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "ClampNative", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConditionalSelect", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "ConvertToInt32Native", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "ConvertToInt64Native", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "ConvertToUInt32Native", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "ConvertToUInt64Native", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "CopyTo", "(System.Runtime.Intrinsics.Vector512,System.Span)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "CopyTo", "(System.Runtime.Intrinsics.Vector512,T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "CopyTo", "(System.Runtime.Intrinsics.Vector512,T[],System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Cos", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Cos", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Count", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "CountWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Double)", "summary", "df-generated"] @@ -584,7 +763,10 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Runtime.Intrinsics.Vector128)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Create", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Create", "(T[],System.Int32)", "summary", "df-generated"] @@ -614,15 +796,20 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "CreateScalarUnsafe", "(System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "CreateScalarUnsafe", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "CreateScalarUnsafe", "(T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "CreateSequence", "(T,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Divide", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Divide", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Dot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Equals", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "EqualsAll", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "EqualsAny", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Exp", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Exp", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ExtractMostSignificantBits", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector512", "Floor", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - - ["System.Runtime.Intrinsics", "Vector512", "Floor", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "GetElement", "(System.Runtime.Intrinsics.Vector512,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "GreaterThan", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "GreaterThanAll", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -630,6 +817,27 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "GreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "GreaterThanOrEqualAll", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "GreaterThanOrEqualAny", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Hypot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Hypot", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IndexOf", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsEvenInteger", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsFinite", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsInfinity", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsInteger", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsNaN", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsNegative", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsNegativeInfinity", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsNormal", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsOddInteger", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsPositive", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsPositiveInfinity", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsSubnormal", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "IsZero", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "LastIndexOf", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "LastIndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Lerp", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Lerp", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "LessThan", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "LessThanAll", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "LessThanAny", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -641,11 +849,25 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "LoadAlignedNonTemporal", "(T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "LoadUnsafe", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "LoadUnsafe", "(T,System.UIntPtr)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Log2", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Log2", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Log", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Log", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Max", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MaxMagnitude", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MaxMagnitudeNumber", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MaxNative", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MaxNumber", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Min", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MinMagnitude", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MinMagnitudeNumber", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MinNative", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MinNumber", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Multiply", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Multiply", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Multiply", "(T,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Narrow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Narrow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Narrow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] @@ -654,7 +876,11 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "Narrow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Narrow", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Negate", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "None", "(System.Runtime.Intrinsics.Vector512,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "NoneWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "OnesComplement", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ShiftLeft", "(System.Runtime.Intrinsics.Vector512,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ShiftLeft", "(System.Runtime.Intrinsics.Vector512,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "ShiftLeft", "(System.Runtime.Intrinsics.Vector512,System.Int32)", "summary", "df-generated"] @@ -690,6 +916,10 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "Shuffle", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Shuffle", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Shuffle", "(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Sin", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "Sin", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "SinCos", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "SinCos", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Sqrt", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "Store", "(System.Runtime.Intrinsics.Vector512,T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "StoreAligned", "(System.Runtime.Intrinsics.Vector512,T*)", "summary", "df-generated"] @@ -728,6 +958,7 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "ToString", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "get_AllBitsSet", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "get_Count", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector512", "get_Indices", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "get_One", "()", "summary", "df-generated"] @@ -750,7 +981,11 @@ extensions: - ["System.Runtime.Intrinsics", "Vector512", "op_UnaryNegation", "(System.Runtime.Intrinsics.Vector512)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector512", "op_UnsignedRightShift", "(System.Runtime.Intrinsics.Vector512,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Add", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "All", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "AllWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "AndNot", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Any", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "AnyWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "As", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "AsByte", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "AsDouble", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] @@ -766,18 +1001,28 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "AsUInt64", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "BitwiseAnd", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "BitwiseOr", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Clamp", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "ClampNative", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConditionalSelect", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToDouble", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToInt32", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "ConvertToInt32Native", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToInt64", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "ConvertToInt64Native", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToSingle", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToUInt32", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "ConvertToUInt32Native", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ConvertToUInt64", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "ConvertToUInt64Native", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "CopyTo", "(System.Runtime.Intrinsics.Vector64,System.Span)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "CopyTo", "(System.Runtime.Intrinsics.Vector64,T[])", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "CopyTo", "(System.Runtime.Intrinsics.Vector64,T[],System.Int32)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Cos", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Cos", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Count", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "CountWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Create", "(System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Create", "(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Create", "(System.Double)", "summary", "df-generated"] @@ -827,13 +1072,20 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "CreateScalarUnsafe", "(System.UInt64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "CreateScalarUnsafe", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "CreateScalarUnsafe", "(T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "CreateSequence", "(T,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "DegreesToRadians", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Divide", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Divide", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Dot", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Equals", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "EqualsAll", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "EqualsAny", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Exp", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Exp", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ExtractMostSignificantBits", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "FusedMultiplyAdd", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "GetElement", "(System.Runtime.Intrinsics.Vector64,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "GreaterThan", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "GreaterThanAll", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] @@ -841,6 +1093,27 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "GreaterThanOrEqual", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "GreaterThanOrEqualAll", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "GreaterThanOrEqualAny", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Hypot", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Hypot", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IndexOf", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsEvenInteger", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsFinite", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsInfinity", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsInteger", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsNaN", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsNegative", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsNegativeInfinity", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsNormal", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsOddInteger", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsPositive", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsPositiveInfinity", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsSubnormal", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "IsZero", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "LastIndexOf", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "LastIndexOfWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Lerp", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Lerp", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "LessThan", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "LessThanAll", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "LessThanAny", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] @@ -852,11 +1125,25 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "LoadAlignedNonTemporal", "(T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "LoadUnsafe", "(T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "LoadUnsafe", "(T,System.UIntPtr)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Log2", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Log2", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Log", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Log", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Max", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MaxMagnitude", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MaxMagnitudeNumber", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MaxNative", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MaxNumber", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Min", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MinMagnitude", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MinMagnitudeNumber", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MinNative", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MinNumber", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Multiply", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Multiply", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Multiply", "(T,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "MultiplyAddEstimate", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Narrow", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Narrow", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Narrow", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] @@ -865,7 +1152,11 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "Narrow", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Narrow", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Negate", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "None", "(System.Runtime.Intrinsics.Vector64,T)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "NoneWhereAllBitsSet", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "OnesComplement", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "RadiansToDegrees", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ShiftLeft", "(System.Runtime.Intrinsics.Vector64,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ShiftLeft", "(System.Runtime.Intrinsics.Vector64,System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "ShiftLeft", "(System.Runtime.Intrinsics.Vector64,System.Int32)", "summary", "df-generated"] @@ -898,6 +1189,10 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "Shuffle", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Shuffle", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Shuffle", "(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Sin", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "Sin", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "SinCos", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "SinCos", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Sqrt", "(System.Runtime.Intrinsics.Vector64)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "Store", "(System.Runtime.Intrinsics.Vector64,T*)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "StoreAligned", "(System.Runtime.Intrinsics.Vector64,T*)", "summary", "df-generated"] @@ -938,6 +1233,7 @@ extensions: - ["System.Runtime.Intrinsics", "Vector64", "ToString", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "get_AllBitsSet", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "get_Count", "()", "summary", "df-generated"] + - ["System.Runtime.Intrinsics", "Vector64", "get_Indices", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "get_Item", "(System.Int32)", "summary", "df-generated"] - ["System.Runtime.Intrinsics", "Vector64", "get_One", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml index 54431cf7dca..eaec4dfe170 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Loader.model.yml @@ -4,9 +4,11 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Runtime.Loader", "AssemblyDependencyResolver", False, "AssemblyDependencyResolver", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element", "value", "dfc-generated"] - ["System.Runtime.Loader", "AssemblyDependencyResolver", False, "ResolveAssemblyToPath", "(System.Reflection.AssemblyName)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Loader", "AssemblyDependencyResolver", False, "ResolveAssemblyToPath", "(System.Reflection.AssemblyName)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Loader", "AssemblyDependencyResolver", False, "ResolveUnmanagedDllToPath", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Runtime.Loader", "AssemblyDependencyResolver", False, "ResolveUnmanagedDllToPath", "(System.String)", "", "Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext", False, "EnterContextualReflection", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext", False, "ToString", "()", "", "Argument[this].Property[System.Runtime.Loader.AssemblyLoadContext.Name]", "ReturnValue", "taint", "dfc-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -14,7 +16,6 @@ extensions: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Runtime.Loader", "AssemblyDependencyResolver", "AssemblyDependencyResolver", "(System.String)", "summary", "df-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext+ContextualReflectionScope", "Dispose", "()", "summary", "df-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext", "AssemblyLoadContext", "(System.Boolean)", "summary", "df-generated"] - ["System.Runtime.Loader", "AssemblyLoadContext", "AssemblyLoadContext", "(System.String,System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml index 85b0fd28ad9..89dad8fa14d 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Serialization.Json.model.yml @@ -34,6 +34,11 @@ extensions: - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "DataContractJsonSerializer", "(System.Type,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "IsStartObject", "(System.Xml.XmlDictionaryReader)", "summary", "df-generated"] - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "IsStartObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "ReadObject", "(System.IO.Stream)", "summary", "df-generated"] + - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean)", "summary", "df-generated"] + - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "ReadObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "ReadObject", "(System.Xml.XmlReader,System.Boolean)", "summary", "df-generated"] - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "WriteEndObject", "(System.Xml.XmlDictionaryWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "WriteEndObject", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization.Json", "DataContractJsonSerializer", "WriteObject", "(System.IO.Stream,System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml b/csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml index fbe9b4b8f14..9c4f73b489f 100644 --- a/csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml +++ b/csharp/ql/lib/ext/generated/System.Runtime.Serialization.model.yml @@ -4,10 +4,10 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Runtime.Serialization", "ContractNamespaceAttribute", False, "ContractNamespaceAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Runtime.Serialization.ContractNamespaceAttribute.ContractNamespace]", "value", "dfc-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", False, "DataContractSerializer", "(System.Type,System.Runtime.Serialization.DataContractSerializerSettings)", "", "Argument[1].Property[System.Runtime.Serialization.DataContractSerializerSettings.DataContractResolver]", "Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver]", "value", "dfc-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", False, "DataContractSerializer", "(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", False, "DataContractSerializer", "(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - - ["System.Runtime.Serialization", "DataContractSerializer", False, "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", False, "get_DataContractResolver", "()", "", "Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Serialization", "DataContractSerializerExtensions", False, "GetSerializationSurrogateProvider", "(System.Runtime.Serialization.DataContractSerializer)", "", "Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Serialization", "DataContractSerializerExtensions", False, "SetSerializationSurrogateProvider", "(System.Runtime.Serialization.DataContractSerializer,System.Runtime.Serialization.ISerializationSurrogateProvider)", "", "Argument[1]", "Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider]", "value", "dfc-generated"] @@ -23,6 +23,7 @@ extensions: - ["System.Runtime.Serialization", "IObjectReference", True, "GetRealObject", "(System.Runtime.Serialization.StreamingContext)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Serialization", "ISerializable", True, "GetObjectData", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Runtime.Serialization", "ISurrogateSelector", True, "GetSurrogate", "(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Runtime.Serialization", "KnownTypeAttribute", False, "KnownTypeAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Runtime.Serialization.KnownTypeAttribute.MethodName]", "value", "dfc-generated"] - ["System.Runtime.Serialization", "ObjectIDGenerator", True, "GetId", "(System.Object,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Runtime.Serialization", "ObjectManager", False, "ObjectManager", "(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Runtime.Serialization", "ObjectManager", False, "ObjectManager", "(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -64,11 +65,6 @@ extensions: - ["System.Runtime.Serialization", "SurrogateSelector", True, "GetNextSelector", "()", "", "Argument[this].SyntheticField[System.Runtime.Serialization.SurrogateSelector._nextSelector]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Serialization", "SurrogateSelector", True, "GetSurrogate", "(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector)", "", "Argument[this].SyntheticField[System.Runtime.Serialization.SurrogateSelector._nextSelector]", "ReturnValue", "value", "dfc-generated"] - ["System.Runtime.Serialization", "XPathQueryGenerator", False, "CreateFromDataContractSerializer", "(System.Type,System.Reflection.MemberInfo[],System.Text.StringBuilder,System.Xml.XmlNamespaceManager)", "", "Argument[2]", "ReturnValue", "taint", "dfc-generated"] - - ["System.Runtime.Serialization", "XmlObjectSerializer", True, "ReadObject", "(System.IO.Stream)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Runtime.Serialization", "XmlObjectSerializer", True, "ReadObject", "(System.Xml.XmlDictionaryReader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Runtime.Serialization", "XmlObjectSerializer", True, "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Runtime.Serialization", "XmlObjectSerializer", True, "ReadObject", "(System.Xml.XmlReader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Runtime.Serialization", "XmlObjectSerializer", True, "ReadObject", "(System.Xml.XmlReader,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Runtime.Serialization", "XmlSerializableServices", False, "WriteNodes", "(System.Xml.XmlWriter,System.Xml.XmlNode[])", "", "Argument[1].Element", "Argument[0]", "taint", "df-generated"] - ["System.Runtime.Serialization", "XsdDataContractExporter", False, "XsdDataContractExporter", "(System.Xml.Schema.XmlSchemaSet)", "", "Argument[0]", "Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas]", "value", "dfc-generated"] - ["System.Runtime.Serialization", "XsdDataContractExporter", False, "get_Schemas", "()", "", "Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas]", "ReturnValue", "value", "dfc-generated"] @@ -86,7 +82,6 @@ extensions: - ["System.Runtime.Serialization", "CollectionDataContractAttribute", "get_IsNamespaceSetExplicitly", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "CollectionDataContractAttribute", "get_IsReferenceSetExplicitly", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "CollectionDataContractAttribute", "get_IsValueNameSetExplicitly", "()", "summary", "df-generated"] - - ["System.Runtime.Serialization", "ContractNamespaceAttribute", "ContractNamespaceAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.Serialization", "ContractNamespaceAttribute", "get_ContractNamespace", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractAttribute", "get_IsNameSetExplicitly", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractAttribute", "get_IsNamespaceSetExplicitly", "()", "summary", "df-generated"] @@ -100,6 +95,10 @@ extensions: - ["System.Runtime.Serialization", "DataContractSerializer", "DataContractSerializer", "(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString)", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", "IsStartObject", "(System.Xml.XmlDictionaryReader)", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", "IsStartObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "DataContractSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "DataContractSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "DataContractSerializer", "ReadObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "DataContractSerializer", "ReadObject", "(System.Xml.XmlReader,System.Boolean)", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", "WriteEndObject", "(System.Xml.XmlDictionaryWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", "WriteEndObject", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization", "DataContractSerializer", "WriteObject", "(System.Xml.XmlDictionaryWriter,System.Object,System.Runtime.Serialization.DataContractResolver)", "summary", "df-generated"] @@ -234,7 +233,6 @@ extensions: - ["System.Runtime.Serialization", "JsonFormatGeneratorStatics", "get_WriteJsonValueMethod", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "JsonFormatGeneratorStatics", "get_WriteStartElementMethod", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "JsonFormatGeneratorStatics", "get_WriteStartElementStringMethod", "()", "summary", "df-generated"] - - ["System.Runtime.Serialization", "KnownTypeAttribute", "KnownTypeAttribute", "(System.String)", "summary", "df-generated"] - ["System.Runtime.Serialization", "KnownTypeAttribute", "KnownTypeAttribute", "(System.Type)", "summary", "df-generated"] - ["System.Runtime.Serialization", "KnownTypeAttribute", "get_MethodName", "()", "summary", "df-generated"] - ["System.Runtime.Serialization", "KnownTypeAttribute", "get_Type", "()", "summary", "df-generated"] @@ -291,6 +289,11 @@ extensions: - ["System.Runtime.Serialization", "XPathQueryGenerator", "CreateFromDataContractSerializer", "(System.Type,System.Reflection.MemberInfo[],System.Xml.XmlNamespaceManager)", "summary", "df-generated"] - ["System.Runtime.Serialization", "XmlObjectSerializer", "IsStartObject", "(System.Xml.XmlDictionaryReader)", "summary", "df-generated"] - ["System.Runtime.Serialization", "XmlObjectSerializer", "IsStartObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "XmlObjectSerializer", "ReadObject", "(System.IO.Stream)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "XmlObjectSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "XmlObjectSerializer", "ReadObject", "(System.Xml.XmlDictionaryReader,System.Boolean)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "XmlObjectSerializer", "ReadObject", "(System.Xml.XmlReader)", "summary", "df-generated"] + - ["System.Runtime.Serialization", "XmlObjectSerializer", "ReadObject", "(System.Xml.XmlReader,System.Boolean)", "summary", "df-generated"] - ["System.Runtime.Serialization", "XmlObjectSerializer", "WriteEndObject", "(System.Xml.XmlDictionaryWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization", "XmlObjectSerializer", "WriteEndObject", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.Runtime.Serialization", "XmlObjectSerializer", "WriteObject", "(System.IO.Stream,System.Object)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Security.Claims.model.yml b/csharp/ql/lib/ext/generated/System.Security.Claims.model.yml index 3dc907cd1ab..7b26409bded 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Claims.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Claims.model.yml @@ -4,12 +4,12 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["System.Security.Claims", "Claim", False, "Claim", "(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Claims", "Claim", False, "Claim", "(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Claims", "Claim", False, "Claim", "(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Claims", "Claim", False, "Claim", "(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity)", "", "Argument[1]", "Argument[this].SyntheticField[System.Security.Claims.Claim._subject]", "value", "dfc-generated"] + - ["System.Security.Claims", "Claim", False, "Claim", "(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity)", "", "Argument[1]", "Argument[this].SyntheticField[System.Security.Claims.Claim._subject]", "value", "dfc-generated"] - ["System.Security.Claims", "Claim", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Claims", "Claim", False, "get_Issuer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Claims", "Claim", False, "get_OriginalIssuer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Claims", "Claim", False, "get_Subject", "()", "", "Argument[this].SyntheticField[System.Security.Claims.Claim._subject]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Claims", "Claim", False, "get_Type", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Claims", "Claim", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Claims", "Claim", False, "get_ValueType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml index 57e6aa1f4d6..807c3005431 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Cose.model.yml @@ -13,10 +13,11 @@ extensions: - ["System.Security.Cryptography.Cose", "CoseHeaderMap", False, "get_Values", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Cose", "CoseMessage", False, "get_ProtectedHeaders", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Cose", "CoseMessage", False, "get_UnprotectedHeaders", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[4].Element", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Cose.CoseSigner.Key]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Cose.CoseSigner.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Cose.CoseSigner.Key]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Cose.CoseSigner.RSASignaturePadding]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Cose", "CoseSigner", False, "CoseSigner", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.Cose.CoseHeaderMap,System.Security.Cryptography.Cose.CoseHeaderMap)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.Cose.CoseSigner.HashAlgorithm]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml index a349bfae145..90f36107f3a 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Pkcs.model.yml @@ -4,13 +4,21 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Security.Cryptography.Pkcs", "AlgorithmIdentifier", False, "AlgorithmIdentifier", "(System.Security.Cryptography.Oid,System.Int32)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Pkcs.AlgorithmIdentifier.Oid]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsRecipient", False, "CmsRecipient", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.CmsRecipient.Certificate]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsRecipient", False, "CmsRecipient", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.Pkcs.CmsRecipient.RSAEncryptionPadding]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsRecipient", False, "CmsRecipient", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.CmsRecipient.RSAEncryptionPadding]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientCollection", False, "Add", "(System.Security.Cryptography.Pkcs.CmsRecipient)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.CmsRecipientCollection._recipients].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientCollection", False, "CmsRecipientCollection", "(System.Security.Cryptography.Pkcs.CmsRecipient)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.CmsRecipientCollection._recipients].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientCollection", False, "CopyTo", "(System.Security.Cryptography.Pkcs.CmsRecipient[],System.Int32)", "", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.CmsRecipientCollection._recipients].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.CmsRecipientCollection._recipients].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipientEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "ContentInfo", False, "ContentInfo", "(System.Security.Cryptography.Oid,System.Byte[])", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Pkcs.ContentInfo.ContentType]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "ContentInfo", False, "ContentInfo", "(System.Security.Cryptography.Oid,System.Byte[])", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.ContentInfo.Content]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", False, "Encode", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", False, "EnvelopedCms", "(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Pkcs.EnvelopedCms.ContentInfo]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", False, "EnvelopedCms", "(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.EnvelopedCms.ContentEncryptionAlgorithm]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", False, "get_RecipientInfos", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12Builder", False, "TryEncode", "(System.Span,System.Int32)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12CertBag", False, "GetCertificateType", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.Pkcs12CertBag._certTypeOid]", "ReturnValue", "value", "dfc-generated"] @@ -18,12 +26,15 @@ extensions: - ["System.Security.Cryptography.Pkcs", "Pkcs12CertBag", False, "get_EncodedCertificate", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12KeyBag", False, "get_Pkcs8PrivateKey", "()", "", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12SafeBag", False, "GetBagId", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "Pkcs12SafeBag", False, "Pkcs12SafeBag", "(System.String,System.ReadOnlyMemory,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "Pkcs12SafeBag", False, "Pkcs12SafeBag", "(System.String,System.ReadOnlyMemory,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12SafeContents", False, "AddSafeBag", "(System.Security.Cryptography.Pkcs.Pkcs12SafeBag)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.Pkcs12SafeContents._bags].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12SafeContents", False, "GetBags", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.Pkcs.Pkcs12SafeContents._bags].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12SecretBag", False, "GetSecretType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12SecretBag", False, "get_SecretValue", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs12ShroudedKeyBag", False, "get_EncryptedPkcs8PrivateKey", "()", "", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs12SafeBag.EncodedBagValue]", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", False, "Pkcs8PrivateKeyInfo", "(System.Security.Cryptography.Oid,System.Nullable>,System.ReadOnlyMemory,System.Boolean)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmId]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", False, "Pkcs8PrivateKeyInfo", "(System.Security.Cryptography.Oid,System.Nullable>,System.ReadOnlyMemory,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.AlgorithmParameters]", "value", "dfc-generated"] + - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", False, "Pkcs8PrivateKeyInfo", "(System.Security.Cryptography.Oid,System.Nullable>,System.ReadOnlyMemory,System.Boolean)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo.PrivateKeyBytes]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs9AttributeObject", False, "get_Oid", "()", "", "Argument[this].Property[System.Security.Cryptography.AsnEncodedData.Oid]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs9DocumentDescription", False, "Pkcs9DocumentDescription", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs9DocumentName", False, "Pkcs9DocumentName", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -45,6 +56,7 @@ extensions: - ["System.Security.Cryptography.Pkcs", "Rfc3161TimestampTokenInfo", False, "GetSerialNumber", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Rfc3161TimestampTokenInfo", False, "GetTimestampAuthorityName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Rfc3161TimestampTokenInfo", False, "get_Timestamp", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "SignedCms", False, "SignedCms", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.Pkcs.SignedCms.ContentInfo]", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "SignerInfoCollection", False, "CopyTo", "(System.Security.Cryptography.Pkcs.SignerInfo[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Pkcs", "SignerInfoCollection", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignerInfoCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -54,11 +66,7 @@ extensions: extensible: neutralModel data: - ["System.Security.Cryptography.Pkcs", "AlgorithmIdentifier", "AlgorithmIdentifier", "(System.Security.Cryptography.Oid)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "AlgorithmIdentifier", "AlgorithmIdentifier", "(System.Security.Cryptography.Oid,System.Int32)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "CmsRecipient", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "CmsRecipient", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "CmsRecipient", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "CmsRecipient", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSAEncryptionPadding)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "get_Certificate", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "get_RSAEncryptionPadding", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsRecipient", "get_RecipientIdentifierType", "()", "summary", "df-generated"] @@ -74,8 +82,10 @@ extensions: - ["System.Security.Cryptography.Pkcs", "CmsSigner", "CmsSigner", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsSigner", "CmsSigner", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "CmsSigner", "CmsSigner", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsSigner", "get_Certificates", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsSigner", "get_SignedAttributes", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.Pkcs", "CmsSigner", "get_UnsignedAttributes", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "ContentInfo", "ContentInfo", "(System.Byte[])", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "ContentInfo", "ContentInfo", "(System.Security.Cryptography.Oid,System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "ContentInfo", "GetContentType", "(System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "ContentInfo", "GetContentType", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "ContentInfo", "get_Content", "()", "summary", "df-generated"] @@ -90,7 +100,6 @@ extensions: - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", "Encrypt", "(System.Security.Cryptography.Pkcs.CmsRecipient)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", "Encrypt", "(System.Security.Cryptography.Pkcs.CmsRecipientCollection)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", "EnvelopedCms", "(System.Security.Cryptography.Pkcs.ContentInfo)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "EnvelopedCms", "EnvelopedCms", "(System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "KeyAgreeRecipientInfo", "get_Date", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "KeyAgreeRecipientInfo", "get_EncryptedKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "KeyAgreeRecipientInfo", "get_KeyEncryptionAlgorithm", "()", "summary", "df-generated"] @@ -142,7 +151,6 @@ extensions: - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "Encode", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "Encrypt", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "Encrypt", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "Pkcs8PrivateKeyInfo", "(System.Security.Cryptography.Oid,System.Nullable>,System.ReadOnlyMemory,System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "TryEncode", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "TryEncrypt", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "Pkcs8PrivateKeyInfo", "TryEncrypt", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32)", "summary", "df-generated"] @@ -218,7 +226,6 @@ extensions: - ["System.Security.Cryptography.Pkcs", "SignedCms", "SignedCms", "(System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignedCms", "SignedCms", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignedCms", "SignedCms", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo)", "summary", "df-generated"] - - ["System.Security.Cryptography.Pkcs", "SignedCms", "SignedCms", "(System.Security.Cryptography.Pkcs.SubjectIdentifierType,System.Security.Cryptography.Pkcs.ContentInfo,System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignedCms", "get_Certificates", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignedCms", "get_SignerInfos", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Pkcs", "SignerInfo", "AddUnsignedAttribute", "(System.Security.Cryptography.AsnEncodedData)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml b/csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml index bab54dd9f91..9b10a3579f3 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Cryptography.X509Certificates.model.yml @@ -4,16 +4,21 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "PublicKey", False, "PublicKey", "(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", False, "CertificateRequest", "(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoaderLimits", False, "Pkcs12LoaderLimits", "(System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", False, "get_Key", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "PublicKey", False, "get_Oid", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid]", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "PublicKey", False, "get_Oid", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X500DistinguishedName", False, "X500DistinguishedName", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X500DistinguishedName", False, "X500DistinguishedName", "(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X500RelativeDistinguishedName", False, "GetSingleElementType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -25,9 +30,18 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", False, "ToString", "()", "", "Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject]", "ReturnValue", "taint", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", False, "get_Extensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", False, "get_PublicKey", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", False, "get_RawDataMemory", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan)", "", "Argument[this].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan)", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan)", "", "Argument[this].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan)", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.String)", "", "Argument[this].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "FindByThumbprint", "(System.Security.Cryptography.HashAlgorithmName,System.String)", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "RemoveRange", "(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "RemoveRange", "(System.Security.Cryptography.X509Certificates.X509Certificate2[])", "", "Argument[0].Element", "Argument[this].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "RemoveRange", "(System.Security.Cryptography.X509Certificates.X509Certificate2[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "", "Argument[0]", "Argument[this].Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "", "Argument[0]", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2[])", "", "Argument[0].Element", "Argument[this].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", False, "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] @@ -36,14 +50,13 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Certificate", False, "get_Handle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "GetIssuerName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "GetName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "GetRawCertData", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "GetRawCertDataString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "ToString", "(System.Boolean)", "", "Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Issuer]", "ReturnValue", "taint", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", True, "ToString", "(System.Boolean)", "", "Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject]", "ReturnValue", "taint", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection+X509CertificateEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", False, "X509CertificateCollection", "(System.Security.Cryptography.X509Certificates.X509CertificateCollection)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", False, "X509CertificateCollection", "(System.Security.Cryptography.X509Certificates.X509Certificate[])", "", "Argument[0].Element", "Argument[this].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", False, "X509CertificateCollection", "(System.Security.Cryptography.X509Certificates.X509Certificate[])", "", "Argument[0].Element", "Argument[this].Property[System.Collections.CollectionBase.List].Element", "value", "dfc-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Chain", False, "Build", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", False, "get_SafeHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509ChainElementCollection", False, "get_Item", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509ChainElementEnumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.Current]", "ReturnValue", "value", "dfc-generated"] @@ -59,12 +72,12 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509SignatureGenerator", False, "CreateForECDsa", "(System.Security.Cryptography.ECDsa)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509SignatureGenerator", False, "CreateForRSA", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509SignatureGenerator", False, "CreateForRSA", "(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Store", False, "X509Store", "(System.String,System.Security.Cryptography.X509Certificates.StoreLocation)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Store.Name]", "value", "dfc-generated"] - ["System.Security.Cryptography.X509Certificates", "X509SubjectKeyIdentifierExtension", False, "get_SubjectKeyIdentifier", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel data: - - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", "CertificateRequest", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", "Create", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", "Create", "(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "CertificateRequest", "Create", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.DateTimeOffset,System.DateTimeOffset,System.Byte[])", "summary", "df-generated"] @@ -101,6 +114,11 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "ECDsaCertificateExtensions", "CopyWithPrivateKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.ECDsa)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "ECDsaCertificateExtensions", "GetECDsaPrivateKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "ECDsaCertificateExtensions", "GetECDsaPublicKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoadLimitExceededException", "Pkcs12LoadLimitExceededException", "(System.String)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoaderLimits", "MakeReadOnly", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoaderLimits", "get_DangerousNoLimits", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoaderLimits", "get_Defaults", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "Pkcs12LoaderLimits", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "CreateFromSubjectPublicKeyInfo", "(System.ReadOnlySpan,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "ExportSubjectPublicKeyInfo", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "GetDSAPublicKey", "()", "summary", "df-generated"] @@ -108,7 +126,10 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "PublicKey", "GetECDsaPublicKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "GetRSAPublicKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "PublicKey", "(System.Security.Cryptography.AsymmetricAlgorithm)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "PublicKey", "PublicKey", "(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "PublicKey", "TryExportSubjectPublicKeyInfo", "(System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "PublicKey", "get_EncodedKeyValue", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "PublicKey", "get_EncodedParameters", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "RSACertificateExtensions", "CopyWithPrivateKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "RSACertificateExtensions", "GetRSAPrivateKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "RSACertificateExtensions", "GetRSAPublicKey", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] @@ -207,7 +228,6 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_NotAfter", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_NotBefore", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_RawData", "()", "summary", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_RawDataMemory", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_SerialNumber", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_SignatureAlgorithm", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2", "get_SubjectName", "()", "summary", "df-generated"] @@ -231,7 +251,6 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", "Remove", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", "TryExportCertificatePems", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", "TryExportPkcs7Pem", "(System.Span,System.Int32)", "summary", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Collection", "X509Certificate2Collection", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Enumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate2Enumerator", "Reset", "()", "summary", "df-generated"] @@ -262,6 +281,8 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetKeyAlgorithmParametersString", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetPublicKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetPublicKeyString", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetRawCertData", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetRawCertDataString", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetSerialNumber", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "GetSerialNumberString", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Certificate", "Import", "(System.Byte[])", "summary", "df-generated"] @@ -297,7 +318,17 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", "IndexOf", "(System.Security.Cryptography.X509Certificates.X509Certificate)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", "OnValidate", "(System.Object)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509CertificateCollection", "Remove", "(System.Security.Cryptography.X509Certificates.X509Certificate)", "summary", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Chain", "Build", "(System.Security.Cryptography.X509Certificates.X509Certificate2)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadCertificate", "(System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadCertificate", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadCertificateFromFile", "(System.String)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12", "(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12Collection", "(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12Collection", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12CollectionFromFile", "(System.String,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12CollectionFromFile", "(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12FromFile", "(System.String,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509CertificateLoader", "LoadPkcs12FromFile", "(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", "Create", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", "Dispose", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", "Dispose", "(System.Boolean)", "summary", "df-generated"] @@ -307,6 +338,9 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Chain", "get_ChainContext", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", "get_ChainElements", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Chain", "get_ChainStatus", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509ChainElement", "get_Certificate", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509ChainElement", "get_ChainElementStatus", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509ChainElement", "get_Information", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509ChainElementCollection", "get_Count", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509ChainElementCollection", "get_IsSynchronized", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509ChainElementEnumerator", "Dispose", "()", "summary", "df-generated"] @@ -349,10 +383,11 @@ extensions: - ["System.Security.Cryptography.X509Certificates", "X509Store", "X509Store", "(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "X509Store", "(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "X509Store", "(System.String)", "summary", "df-generated"] - - ["System.Security.Cryptography.X509Certificates", "X509Store", "X509Store", "(System.String,System.Security.Cryptography.X509Certificates.StoreLocation)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "X509Store", "(System.String,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags)", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "get_Certificates", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "get_IsOpen", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Store", "get_Location", "()", "summary", "df-generated"] + - ["System.Security.Cryptography.X509Certificates", "X509Store", "get_Name", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509Store", "get_StoreHandle", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509SubjectAlternativeNameExtension", "EnumerateDnsNames", "()", "summary", "df-generated"] - ["System.Security.Cryptography.X509Certificates", "X509SubjectAlternativeNameExtension", "EnumerateIPAddresses", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml index f238a45abd5..eceeb0c2f5c 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Cryptography.Xml.model.yml @@ -69,6 +69,7 @@ extensions: - ["System.Security.Cryptography.Xml", "Reference", False, "Reference", "(System.IO.Stream)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.Xml", "Reference", False, "Reference", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", False, "Item", "(System.Int32)", "", "Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography.Xml", "ReferenceList", False, "get_ItemOf", "(System.Int32)", "", "Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", False, "get_SyncRoot", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Property[System.Collections.ArrayList.SyncRoot]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", False, "set_ItemOf", "(System.Int32,System.Security.Cryptography.Xml.EncryptedReference)", "", "Argument[1]", "Argument[this].Element", "value", "dfc-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", False, "set_ItemOf", "(System.Int32,System.Security.Cryptography.Xml.EncryptedReference)", "", "Argument[1]", "Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element", "value", "dfc-generated"] @@ -198,7 +199,6 @@ extensions: - ["System.Security.Cryptography.Xml", "ReferenceList", "get_IsFixedSize", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Xml", "ReferenceList", "get_IsSynchronized", "()", "summary", "df-generated"] - - ["System.Security.Cryptography.Xml", "ReferenceList", "get_ItemOf", "(System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography.Xml", "Signature", "GetXml", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Xml", "SignedInfo", "get_Count", "()", "summary", "df-generated"] - ["System.Security.Cryptography.Xml", "SignedInfo", "get_IsReadOnly", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml b/csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml index 47a63e5c882..a828f2c9039 100644 --- a/csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml +++ b/csharp/ql/lib/ext/generated/System.Security.Cryptography.model.yml @@ -35,6 +35,7 @@ extensions: - ["System.Security.Cryptography", "CngKeyBlobFormat", False, "CngKeyBlobFormat", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngKeyBlobFormat", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngKeyBlobFormat", False, "get_Format", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format]", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CngProperty", False, "CngProperty", "(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions)", "", "Argument[0]", "Argument[this].Property[System.Security.Cryptography.CngProperty.Name]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngProperty", False, "CngProperty", "(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions)", "", "Argument[1].Element", "Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngProperty", False, "CngProperty", "(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions)", "", "Argument[1]", "Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngProperty", False, "GetValue", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element", "ReturnValue.Element", "value", "dfc-generated"] @@ -42,9 +43,14 @@ extensions: - ["System.Security.Cryptography", "CngProvider", False, "CngProvider", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngProvider", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography", "CngProvider", False, "get_Provider", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider]", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", False, "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.CngUIPolicy.FriendlyName]", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", False, "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.Security.Cryptography.CngUIPolicy.Description]", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", False, "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)", "", "Argument[3]", "Argument[this].Property[System.Security.Cryptography.CngUIPolicy.UseContext]", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", False, "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)", "", "Argument[4]", "Argument[this].Property[System.Security.Cryptography.CngUIPolicy.CreationTitle]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CryptoStream", False, "CryptoStream", "(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", False, "CryptoStream", "(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode,System.Boolean)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "CryptographicAttributeObject", False, "CryptographicAttributeObject", "(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedDataCollection)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.CryptographicAttributeObject._oid]", "value", "dfc-generated"] + - ["System.Security.Cryptography", "CryptographicAttributeObject", False, "CryptographicAttributeObject", "(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedDataCollection)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.CryptographicAttributeObject.Values]", "value", "dfc-generated"] - ["System.Security.Cryptography", "CryptographicAttributeObject", False, "get_Oid", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.CryptographicAttributeObject._oid]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography", "CryptographicAttributeObjectCollection", False, "Add", "(System.Security.Cryptography.CryptographicAttributeObject)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.CryptographicAttributeObjectCollection._list].Element", "value", "dfc-generated"] - ["System.Security.Cryptography", "CryptographicAttributeObjectCollection", False, "CopyTo", "(System.Security.Cryptography.CryptographicAttributeObject[],System.Int32)", "", "Argument[this].SyntheticField[System.Security.Cryptography.CryptographicAttributeObjectCollection._list].Element", "Argument[0].Element", "value", "dfc-generated"] @@ -56,8 +62,10 @@ extensions: - ["System.Security.Cryptography", "DSASignatureDeformatter", False, "DSASignatureDeformatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "DSASignatureFormatter", False, "DSASignatureFormatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellman", True, "get_PublicKey", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", False, "DuplicateKeyHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanPublicKey", False, "ECDiffieHellmanPublicKey", "(System.Byte[])", "", "Argument[0].Element", "Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element", "value", "dfc-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanPublicKey", True, "ToByteArray", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Security.Cryptography", "ECDsaOpenSsl", False, "DuplicateKeyHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "HMACMD5", False, "HMACMD5", "(System.Byte[])", "", "Argument[0].Element", "Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue].Element", "value", "dfc-generated"] - ["System.Security.Cryptography", "HMACMD5", False, "HMACMD5", "(System.Byte[])", "", "Argument[0]", "Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue]", "value", "dfc-generated"] - ["System.Security.Cryptography", "HMACMD5", False, "HMACMD5", "(System.Byte[])", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.HMACMD5._hMacCommon].SyntheticField[System.Security.Cryptography.HMACCommon.ActualKey]", "value", "dfc-generated"] @@ -98,6 +106,7 @@ extensions: - ["System.Security.Cryptography", "HashAlgorithmName", False, "HashAlgorithmName", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name]", "value", "dfc-generated"] - ["System.Security.Cryptography", "HashAlgorithmName", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography", "HashAlgorithmName", False, "get_Name", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name]", "ReturnValue", "value", "dfc-generated"] + - ["System.Security.Cryptography", "IncrementalHash", False, "Clone", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName]", "ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName]", "value", "dfc-generated"] - ["System.Security.Cryptography", "IncrementalHash", False, "CreateHMAC", "(System.Security.Cryptography.HashAlgorithmName,System.Byte[])", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "IncrementalHash", False, "CreateHMAC", "(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "IncrementalHash", False, "CreateHash", "(System.Security.Cryptography.HashAlgorithmName)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName]", "value", "dfc-generated"] @@ -116,17 +125,21 @@ extensions: - ["System.Security.Cryptography", "PasswordDeriveBytes", False, "PasswordDeriveBytes", "(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "PasswordDeriveBytes", False, "PasswordDeriveBytes", "(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "PasswordDeriveBytes", False, "PasswordDeriveBytes", "(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)", "", "Argument[4]", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Cryptography", "PbeParameters", False, "PbeParameters", "(System.Security.Cryptography.PbeEncryptionAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Int32)", "", "Argument[1]", "Argument[this].Property[System.Security.Cryptography.PbeParameters.HashAlgorithm]", "value", "dfc-generated"] - ["System.Security.Cryptography", "RSAEncryptionPadding", False, "CreateOaep", "(System.Security.Cryptography.HashAlgorithmName)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm]", "value", "dfc-generated"] - ["System.Security.Cryptography", "RSAEncryptionPadding", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm].Property[System.Security.Cryptography.HashAlgorithmName.Name]", "ReturnValue", "taint", "dfc-generated"] - ["System.Security.Cryptography", "RSAEncryptionPadding", False, "get_OaepHashAlgorithm", "()", "", "Argument[this].SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm]", "ReturnValue", "value", "dfc-generated"] - ["System.Security.Cryptography", "RSAOAEPKeyExchangeDeformatter", False, "RSAOAEPKeyExchangeDeformatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "RSAOAEPKeyExchangeFormatter", False, "RSAOAEPKeyExchangeFormatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Cryptography", "RSAOpenSsl", False, "DuplicateKeyHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "RSAPKCS1KeyExchangeDeformatter", False, "RSAPKCS1KeyExchangeDeformatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "RSAPKCS1KeyExchangeFormatter", False, "RSAPKCS1KeyExchangeFormatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "RSAPKCS1SignatureDeformatter", False, "RSAPKCS1SignatureDeformatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Security.Cryptography", "RSAPKCS1SignatureFormatter", False, "RSAPKCS1SignatureFormatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography", "SP800108HmacCounterKdf", False, "SP800108HmacCounterKdf", "(System.Byte[],System.Security.Cryptography.HashAlgorithmName)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - - ["System.Security.Cryptography", "SP800108HmacCounterKdf", False, "SP800108HmacCounterKdf", "(System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Security.Cryptography", "Rfc2898DeriveBytes", False, "Rfc2898DeriveBytes", "(System.String,System.Int32,System.Int32,System.Security.Cryptography.HashAlgorithmName)", "", "Argument[3]", "Argument[this].Property[System.Security.Cryptography.Rfc2898DeriveBytes.HashAlgorithm]", "value", "dfc-generated"] + - ["System.Security.Cryptography", "SafeEvpPKeyHandle", False, "DuplicateHandle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography", "Shake128", False, "Clone", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Security.Cryptography", "Shake256", False, "Clone", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "SignatureDescription", True, "CreateDeformatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "SignatureDescription", True, "CreateFormatter", "(System.Security.Cryptography.AsymmetricAlgorithm)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Security.Cryptography", "SymmetricAlgorithm", False, "EncryptCbc", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.Security.Cryptography.PaddingMode)", "", "Argument[0].Element", "Argument[2].Element", "value", "dfc-generated"] @@ -306,7 +319,9 @@ extensions: - ["System.Security.Cryptography", "CngKey", "SetProperty", "(System.Security.Cryptography.CngProperty)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_Algorithm", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_AlgorithmGroup", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngKey", "get_ExportPolicy", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_Handle", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngKey", "get_IsEphemeral", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_IsMachineKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_KeyName", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKey", "get_KeySize", "()", "summary", "df-generated"] @@ -328,9 +343,11 @@ extensions: - ["System.Security.Cryptography", "CngKeyBlobFormat", "get_Pkcs8PrivateBlob", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKeyBlobFormat", "op_Equality", "(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngKeyBlobFormat", "op_Inequality", "(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat)", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngKeyCreationParameters", "get_Parameters", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProperty", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProperty", "Equals", "(System.Security.Cryptography.CngProperty)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProperty", "GetHashCode", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngProperty", "get_Options", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProperty", "op_Equality", "(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProperty", "op_Inequality", "(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngProvider", "Equals", "(System.Object)", "summary", "df-generated"] @@ -345,7 +362,11 @@ extensions: - ["System.Security.Cryptography", "CngUIPolicy", "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngUIPolicy", "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "CngUIPolicy", "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String)", "summary", "df-generated"] - - ["System.Security.Cryptography", "CngUIPolicy", "CngUIPolicy", "(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String)", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", "get_CreationTitle", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", "get_Description", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", "get_FriendlyName", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", "get_ProtectionLevel", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "CngUIPolicy", "get_UseContext", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoConfig", "AddAlgorithm", "(System.Type,System.String[])", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoConfig", "AddOID", "(System.String,System.String[])", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoConfig", "CreateFromName", "(System.String)", "summary", "df-generated"] @@ -364,7 +385,6 @@ extensions: - ["System.Security.Cryptography", "CryptoStream", "ReadByte", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", "Seek", "(System.Int64,System.IO.SeekOrigin)", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", "SetLength", "(System.Int64)", "summary", "df-generated"] - - ["System.Security.Cryptography", "CryptoStream", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", "WriteByte", "(System.Byte)", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", "get_CanRead", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "CryptoStream", "get_CanSeek", "()", "summary", "df-generated"] @@ -506,6 +526,7 @@ extensions: - ["System.Security.Cryptography", "DSACng", "TryExportPkcs8PrivateKey", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "DSACng", "VerifySignature", "(System.Byte[],System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography", "DSACng", "VerifySignatureCore", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.DSASignatureFormat)", "summary", "df-generated"] + - ["System.Security.Cryptography", "DSACng", "get_Key", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "DSACryptoServiceProvider", "CreateSignature", "(System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography", "DSACryptoServiceProvider", "DSACryptoServiceProvider", "(System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "DSACryptoServiceProvider", "DSACryptoServiceProvider", "(System.Int32,System.Security.Cryptography.CspParameters)", "summary", "df-generated"] @@ -644,6 +665,7 @@ extensions: - ["System.Security.Cryptography", "ECDiffieHellmanCng", "TryExportEncryptedPkcs8PrivateKey", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanCng", "TryExportEncryptedPkcs8PrivateKey", "(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanCng", "TryExportPkcs8PrivateKey", "(System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ECDiffieHellmanCng", "get_Key", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanCng", "get_UseSecretAgreementAsHmacKey", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanCngPublicKey", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanCngPublicKey", "ExportExplicitParameters", "()", "summary", "df-generated"] @@ -659,7 +681,6 @@ extensions: - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "DeriveKeyTls", "(System.Security.Cryptography.ECDiffieHellmanPublicKey,System.Byte[],System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "DeriveRawSecretAgreement", "(System.Security.Cryptography.ECDiffieHellmanPublicKey)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "DuplicateKeyHandle", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "ECDiffieHellmanOpenSsl", "(System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "ECDiffieHellmanOpenSsl", "(System.IntPtr)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDiffieHellmanOpenSsl", "ECDiffieHellmanOpenSsl", "(System.Security.Cryptography.ECCurve)", "summary", "df-generated"] @@ -757,8 +778,8 @@ extensions: - ["System.Security.Cryptography", "ECDsaCng", "VerifyHash", "(System.Byte[],System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaCng", "VerifyHash", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaCng", "VerifyHashCore", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.DSASignatureFormat)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ECDsaCng", "get_Key", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaOpenSsl", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["System.Security.Cryptography", "ECDsaOpenSsl", "DuplicateKeyHandle", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaOpenSsl", "ECDsaOpenSsl", "(System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaOpenSsl", "ECDsaOpenSsl", "(System.IntPtr)", "summary", "df-generated"] - ["System.Security.Cryptography", "ECDsaOpenSsl", "ECDsaOpenSsl", "(System.Security.Cryptography.ECCurve)", "summary", "df-generated"] @@ -986,9 +1007,92 @@ extensions: - ["System.Security.Cryptography", "IncrementalHash", "TryGetHashAndReset", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "IncrementalHash", "get_HashLengthInBytes", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "KeySizes", "KeySizes", "(System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KeySizes", "get_MaxSize", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KeySizes", "get_MinSize", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KeySizes", "get_SkipSize", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "KeyedHashAlgorithm", "Create", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "KeyedHashAlgorithm", "Create", "(System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "KeyedHashAlgorithm", "Dispose", "(System.Boolean)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "AppendData", "(System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "AppendData", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "Clone", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "Dispose", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "GetCurrentHash", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "GetCurrentHash", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "GetHashAndReset", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "GetHashAndReset", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.Byte[],System.Byte[],System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashDataAsync", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "Kmac128", "(System.Byte[],System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "Kmac128", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac128", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "AppendData", "(System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "AppendData", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "Clone", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "Dispose", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "GetCurrentHash", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "GetCurrentHash", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "GetHashAndReset", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "GetHashAndReset", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.Byte[],System.Byte[],System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashDataAsync", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "Kmac256", "(System.Byte[],System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "Kmac256", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Kmac256", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "AppendData", "(System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "AppendData", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "Clone", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "Dispose", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "GetCurrentHash", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "GetCurrentHash", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "GetHashAndReset", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "GetHashAndReset", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.Byte[],System.Byte[],System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashDataAsync", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "KmacXof128", "(System.Byte[],System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "KmacXof128", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof128", "get_IsSupported", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "AppendData", "(System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "AppendData", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "Clone", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "Dispose", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "GetCurrentHash", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "GetCurrentHash", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "GetHashAndReset", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "GetHashAndReset", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.Byte[],System.Byte[],System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashData", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashDataAsync", "(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "HashDataAsync", "(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "KmacXof256", "(System.Byte[],System.Byte[])", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "KmacXof256", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "KmacXof256", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "MD5", "Create", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "MD5", "Create", "(System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "MD5", "HashData", "(System.Byte[])", "summary", "df-generated"] @@ -1022,22 +1126,31 @@ extensions: - ["System.Security.Cryptography", "PasswordDeriveBytes", "PasswordDeriveBytes", "(System.String,System.Byte[],System.String,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "PasswordDeriveBytes", "PasswordDeriveBytes", "(System.String,System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters)", "summary", "df-generated"] - ["System.Security.Cryptography", "PasswordDeriveBytes", "Reset", "()", "summary", "df-generated"] - - ["System.Security.Cryptography", "PbeParameters", "PbeParameters", "(System.Security.Cryptography.PbeEncryptionAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "PbeParameters", "get_EncryptionAlgorithm", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PbeParameters", "get_HashAlgorithm", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PbeParameters", "get_IterationCount", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "Find", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "PemEncoding", "FindUtf8", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "GetEncodedSize", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "TryFind", "(System.ReadOnlySpan,System.Security.Cryptography.PemFields)", "summary", "df-generated"] + - ["System.Security.Cryptography", "PemEncoding", "TryFindUtf8", "(System.ReadOnlySpan,System.Security.Cryptography.PemFields)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "TryWrite", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "PemEncoding", "TryWriteUtf8", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "Write", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemEncoding", "WriteString", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "PemEncoding", "WriteUtf8", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "PemFields", "get_Base64Data", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PemFields", "get_DecodedDataLength", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PemFields", "get_Label", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "PemFields", "get_Location", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "ProtectedData", "Protect", "(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "Protect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "Protect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "TryProtect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.Span,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "TryUnprotect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.Span,System.Int32,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "ProtectedData", "Unprotect", "(System.Byte[],System.Byte[],System.Security.Cryptography.DataProtectionScope)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "Unprotect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Security.Cryptography", "ProtectedData", "Unprotect", "(System.ReadOnlySpan,System.Security.Cryptography.DataProtectionScope,System.Span,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Security.Cryptography", "RC2", "Create", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "RC2", "Create", "(System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "RC2CryptoServiceProvider", "CreateDecryptor", "()", "summary", "df-generated"] @@ -1136,6 +1249,7 @@ extensions: - ["System.Security.Cryptography", "RSACng", "TrySignHash", "(System.ReadOnlySpan,System.Span,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSACng", "VerifyHash", "(System.Byte[],System.Byte[],System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSACng", "VerifyHash", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding)", "summary", "df-generated"] + - ["System.Security.Cryptography", "RSACng", "get_Key", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "RSACryptoServiceProvider", "Decrypt", "(System.Byte[],System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSACryptoServiceProvider", "Decrypt", "(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSACryptoServiceProvider", "DecryptValue", "(System.Byte[])", "summary", "df-generated"] @@ -1193,7 +1307,6 @@ extensions: - ["System.Security.Cryptography", "RSAOAEPKeyExchangeFormatter", "get_Parameters", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "RSAOpenSsl", "Decrypt", "(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSAOpenSsl", "Dispose", "(System.Boolean)", "summary", "df-generated"] - - ["System.Security.Cryptography", "RSAOpenSsl", "DuplicateKeyHandle", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "RSAOpenSsl", "Encrypt", "(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSAOpenSsl", "ExportParameters", "(System.Boolean)", "summary", "df-generated"] - ["System.Security.Cryptography", "RSAOpenSsl", "ExportPkcs8PrivateKey", "()", "summary", "df-generated"] @@ -1272,7 +1385,6 @@ extensions: - ["System.Security.Cryptography", "Rfc2898DeriveBytes", "Rfc2898DeriveBytes", "(System.String,System.Byte[],System.Int32,System.Security.Cryptography.HashAlgorithmName)", "summary", "df-generated"] - ["System.Security.Cryptography", "Rfc2898DeriveBytes", "Rfc2898DeriveBytes", "(System.String,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "Rfc2898DeriveBytes", "Rfc2898DeriveBytes", "(System.String,System.Int32,System.Int32)", "summary", "df-generated"] - - ["System.Security.Cryptography", "Rfc2898DeriveBytes", "Rfc2898DeriveBytes", "(System.String,System.Int32,System.Int32,System.Security.Cryptography.HashAlgorithmName)", "summary", "df-generated"] - ["System.Security.Cryptography", "Rfc2898DeriveBytes", "get_HashAlgorithm", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "Rijndael", "Create", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "Rijndael", "Create", "(System.String)", "summary", "df-generated"] @@ -1414,7 +1526,9 @@ extensions: - ["System.Security.Cryptography", "SP800108HmacCounterKdf", "DeriveKey", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Security.Cryptography", "SP800108HmacCounterKdf", "DeriveKey", "(System.String,System.String,System.Int32)", "summary", "df-generated"] - ["System.Security.Cryptography", "SP800108HmacCounterKdf", "Dispose", "()", "summary", "df-generated"] - - ["System.Security.Cryptography", "SafeEvpPKeyHandle", "DuplicateHandle", "()", "summary", "df-generated"] + - ["System.Security.Cryptography", "SP800108HmacCounterKdf", "SP800108HmacCounterKdf", "(System.Byte[],System.Security.Cryptography.HashAlgorithmName)", "summary", "df-generated"] + - ["System.Security.Cryptography", "SP800108HmacCounterKdf", "SP800108HmacCounterKdf", "(System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName)", "summary", "df-generated"] + - ["System.Security.Cryptography", "SafeEvpPKeyHandle", "OpenKeyFromProvider", "(System.String,System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "SafeEvpPKeyHandle", "OpenPrivateKeyFromEngine", "(System.String,System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "SafeEvpPKeyHandle", "OpenPublicKeyFromEngine", "(System.String,System.String)", "summary", "df-generated"] - ["System.Security.Cryptography", "SafeEvpPKeyHandle", "ReleaseHandle", "()", "summary", "df-generated"] @@ -1435,6 +1549,9 @@ extensions: - ["System.Security.Cryptography", "Shake128", "HashData", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake128", "HashDataAsync", "(System.IO.Stream,System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake128", "HashDataAsync", "(System.IO.Stream,System.Memory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake128", "Read", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake128", "Read", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake128", "Reset", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake128", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake256", "AppendData", "(System.Byte[])", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake256", "AppendData", "(System.ReadOnlySpan)", "summary", "df-generated"] @@ -1450,6 +1567,9 @@ extensions: - ["System.Security.Cryptography", "Shake256", "HashData", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake256", "HashDataAsync", "(System.IO.Stream,System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake256", "HashDataAsync", "(System.IO.Stream,System.Memory,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake256", "Read", "(System.Int32)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake256", "Read", "(System.Span)", "summary", "df-generated"] + - ["System.Security.Cryptography", "Shake256", "Reset", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "Shake256", "get_IsSupported", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "SignatureDescription", "CreateDigest", "()", "summary", "df-generated"] - ["System.Security.Cryptography", "SignatureDescription", "SignatureDescription", "(System.Security.SecurityElement)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml b/csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml index ddaeda1ac9a..0c9697edaa8 100644 --- a/csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml +++ b/csharp/ql/lib/ext/generated/System.ServiceModel.Syndication.model.yml @@ -4,29 +4,47 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", True, "ReadItem", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", "", "Argument[1].Property[System.ServiceModel.Syndication.SyndicationFeed.BaseUri]", "ReturnValue.Property[System.ServiceModel.Syndication.SyndicationItem.BaseUri]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", True, "ReadItems", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "", "Argument[1].Property[System.ServiceModel.Syndication.SyndicationFeed.BaseUri]", "ReturnValue.Element.Property[System.ServiceModel.Syndication.SyndicationItem.BaseUri]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", True, "WriteItem", "(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", True, "WriteItems", "(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable,System.Uri)", "", "Argument[1].Element", "Argument[0]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "CategoriesDocument", False, "Create", "(System.Uri)", "", "Argument[0]", "ReturnValue.Property[System.ServiceModel.Syndication.ReferencedCategoriesDocument.Link]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "CategoriesDocument", False, "Load", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", False, "CategoriesDocumentFormatter", "(System.ServiceModel.Syndication.CategoriesDocument)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.CategoriesDocumentFormatter._document]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", False, "get_Document", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.CategoriesDocumentFormatter._document]", "ReturnValue", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", True, "ReadFrom", "(System.Xml.XmlReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", True, "SetDocument", "(System.ServiceModel.Syndication.CategoriesDocument)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.CategoriesDocumentFormatter._document]", "value", "dfc-generated"] - - ["System.ServiceModel.Syndication", "InlineCategoriesDocument", False, "InlineCategoriesDocument", "(System.Collections.Generic.IEnumerable,System.Boolean,System.String)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "ResourceCollectionInfo", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"] - - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "ResourceCollectionInfo", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "InlineCategoriesDocument", False, "InlineCategoriesDocument", "(System.Collections.Generic.IEnumerable,System.Boolean,System.String)", "", "Argument[2]", "Argument[this].Property[System.ServiceModel.Syndication.InlineCategoriesDocument.Scheme]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "ReferencedCategoriesDocument", False, "ReferencedCategoriesDocument", "(System.Uri)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.ReferencedCategoriesDocument.Link]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "ResourceCollectionInfo", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.ResourceCollectionInfo.Title]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "ResourceCollectionInfo", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.ResourceCollectionInfo.Link]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", True, "ReadItem", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", "", "Argument[1].Property[System.ServiceModel.Syndication.SyndicationFeed.BaseUri]", "ReturnValue.Property[System.ServiceModel.Syndication.SyndicationItem.BaseUri]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", True, "ReadItems", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "", "Argument[1].Property[System.ServiceModel.Syndication.SyndicationFeed.BaseUri]", "ReturnValue.Element.Property[System.ServiceModel.Syndication.SyndicationItem.BaseUri]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", True, "SetFeed", "(System.ServiceModel.Syndication.SyndicationFeed)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationFeedFormatter._feed]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", True, "WriteItem", "(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationItem,System.Uri)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", True, "WriteItems", "(System.Xml.XmlWriter,System.Collections.Generic.IEnumerable,System.Uri)", "", "Argument[1].Element", "Argument[0]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "ServiceDocument", False, "Load", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "ServiceDocument", False, "Load", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", False, "ServiceDocument", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", False, "ServiceDocumentFormatter", "(System.ServiceModel.Syndication.ServiceDocument)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.ServiceDocumentFormatter._document]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", False, "get_Document", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.ServiceDocumentFormatter._document]", "ReturnValue", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", True, "ReadFrom", "(System.Xml.XmlReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", True, "SetDocument", "(System.ServiceModel.Syndication.ServiceDocument)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.ServiceDocumentFormatter._document]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.ServiceModel.Syndication.SyndicationCategory)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationCategory.Label]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Label]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.ServiceModel.Syndication.SyndicationCategory)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationCategory.Name]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Name]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.ServiceModel.Syndication.SyndicationCategory)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationCategory.Scheme]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Scheme]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Name]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Scheme]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "SyndicationCategory", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationCategory.Label]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationContent", False, "CreateUrlContent", "(System.Uri,System.String)", "", "Argument[0]", "ReturnValue.Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationContent", False, "CreateUrlContent", "(System.Uri,System.String)", "", "Argument[1]", "ReturnValue.SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationContent", False, "WriteTo", "(System.Xml.XmlWriter,System.String,System.String)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationContent", True, "WriteContentsTo", "(System.Xml.XmlWriter)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] @@ -45,18 +63,22 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationElementExtensionCollection", False, "ReadElementExtensions", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationElementExtensionCollection", False, "ReadElementExtensions", "(System.String,System.String,System.Runtime.Serialization.XmlObjectSerializer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationElementExtensionCollection", False, "ReadElementExtensions", "(System.String,System.String,System.Xml.Serialization.XmlSerializer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "Load", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "Load", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "SyndicationFeed", "(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "SyndicationFeed", "(System.String,System.String,System.Uri,System.String,System.DateTimeOffset,System.Collections.Generic.IEnumerable)", "", "Argument[4]", "Argument[this]", "taint", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "SyndicationFeed", "(System.String,System.String,System.Uri,System.String,System.DateTimeOffset,System.Collections.Generic.IEnumerable)", "", "Argument[5].Element", "Argument[this]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "SyndicationFeed", "(System.String,System.String,System.Uri,System.String,System.DateTimeOffset,System.Collections.Generic.IEnumerable)", "", "Argument[3]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationFeed.Id]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", False, "get_SkipDays", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", False, "SyndicationFeedFormatter", "(System.ServiceModel.Syndication.SyndicationFeed)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationFeedFormatter._feed]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", False, "ToString", "()", "", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationFeedFormatter.Version]", "ReturnValue", "taint", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", False, "get_Feed", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationFeedFormatter._feed]", "ReturnValue", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", True, "ReadFrom", "(System.Xml.XmlReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", True, "SetFeed", "(System.ServiceModel.Syndication.SyndicationFeed)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationFeedFormatter._feed]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationItem", False, "AddPermalink", "(System.Uri)", "", "Argument[0].Property[System.Uri.AbsoluteUri]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationItem.Id]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", False, "SyndicationItem", "(System.ServiceModel.Syndication.SyndicationItem)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationItem", False, "SyndicationItem", "(System.String,System.ServiceModel.Syndication.SyndicationContent,System.Uri,System.String,System.DateTimeOffset)", "", "Argument[4]", "Argument[this]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationItem", False, "SyndicationItem", "(System.String,System.ServiceModel.Syndication.SyndicationContent,System.Uri,System.String,System.DateTimeOffset)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationItem.Content]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationItem", False, "SyndicationItem", "(System.String,System.ServiceModel.Syndication.SyndicationContent,System.Uri,System.String,System.DateTimeOffset)", "", "Argument[3]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationItem.Id]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationItemFormatter", False, "SyndicationItemFormatter", "(System.ServiceModel.Syndication.SyndicationItem)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationItemFormatter._item]", "value", "dfc-generated"] @@ -64,27 +86,51 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationItemFormatter", False, "get_Item", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationItemFormatter._item]", "ReturnValue", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationItemFormatter", True, "SetItem", "(System.ServiceModel.Syndication.SyndicationItem)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.SyndicationItemFormatter._item]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", False, "GetAbsoluteUri", "()", "", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationLink.Uri]", "ReturnValue", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationLink", False, "SyndicationLink", "(System.ServiceModel.Syndication.SyndicationLink)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationLink", False, "SyndicationLink", "(System.Uri,System.String,System.String,System.String,System.Int64)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationLink.Uri]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationLink", False, "SyndicationLink", "(System.Uri,System.String,System.String,System.String,System.Int64)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationLink.RelationshipType]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationLink", False, "SyndicationLink", "(System.Uri,System.String,System.String,System.String,System.Int64)", "", "Argument[2]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationLink.Title]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationLink", False, "SyndicationLink", "(System.Uri,System.String,System.String,System.String,System.Int64)", "", "Argument[3]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationLink.MediaType]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.ServiceModel.Syndication.SyndicationPerson)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationPerson.Email]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Email]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.ServiceModel.Syndication.SyndicationPerson)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationPerson.Name]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Name]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.ServiceModel.Syndication.SyndicationPerson)", "", "Argument[0].Property[System.ServiceModel.Syndication.SyndicationPerson.Uri]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Uri]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Email]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Name]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "SyndicationPerson", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this].Property[System.ServiceModel.Syndication.SyndicationPerson.Uri]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "TextSyndicationContent", False, "TextSyndicationContent", "(System.ServiceModel.Syndication.TextSyndicationContent)", "", "Argument[0].Property[System.ServiceModel.Syndication.TextSyndicationContent.Text]", "Argument[this].Property[System.ServiceModel.Syndication.TextSyndicationContent.Text]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "TextSyndicationContent", False, "TextSyndicationContent", "(System.String,System.ServiceModel.Syndication.TextSyndicationContentKind)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.TextSyndicationContent.Text]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "TextSyndicationContent", True, "Clone", "()", "", "Argument[this].Property[System.ServiceModel.Syndication.TextSyndicationContent.Text]", "ReturnValue.Property[System.ServiceModel.Syndication.TextSyndicationContent.Text]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "UrlSyndicationContent", False, "UrlSyndicationContent", "(System.ServiceModel.Syndication.UrlSyndicationContent)", "", "Argument[0].Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "Argument[this].Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "UrlSyndicationContent", False, "UrlSyndicationContent", "(System.ServiceModel.Syndication.UrlSyndicationContent)", "", "Argument[0].SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "UrlSyndicationContent", False, "UrlSyndicationContent", "(System.Uri,System.String)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "UrlSyndicationContent", False, "UrlSyndicationContent", "(System.Uri,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "UrlSyndicationContent", True, "Clone", "()", "", "Argument[this].Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "ReturnValue.Property[System.ServiceModel.Syndication.UrlSyndicationContent.Url]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "UrlSyndicationContent", True, "Clone", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "ReturnValue.SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "UrlSyndicationContent", True, "get_Type", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.UrlSyndicationContent._mediaType]", "ReturnValue", "value", "dfc-generated"] - - ["System.ServiceModel.Syndication", "Workspace", False, "Workspace", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Collections.Generic.IEnumerable)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "Workspace", False, "Workspace", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Collections.Generic.IEnumerable)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.Workspace.Title]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "Workspace", False, "get_AttributeExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "Workspace", False, "get_ElementExtensions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "XmlDateTimeData", False, "XmlDateTimeData", "(System.String,System.Xml.XmlQualifiedName)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.XmlDateTimeData.DateTimeString]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "XmlDateTimeData", False, "XmlDateTimeData", "(System.String,System.Xml.XmlQualifiedName)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.XmlDateTimeData.ElementQualifiedName]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "ReadContent", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "ReadContent", "(System.Runtime.Serialization.XmlObjectSerializer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "ReadContent", "(System.Xml.Serialization.XmlSerializer)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.ServiceModel.Syndication.XmlSyndicationContent)", "", "Argument[0].Property[System.ServiceModel.Syndication.XmlSyndicationContent.Extension]", "Argument[this].Property[System.ServiceModel.Syndication.XmlSyndicationContent.Extension]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.ServiceModel.Syndication.XmlSyndicationContent)", "", "Argument[0].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.String,System.Object,System.Runtime.Serialization.XmlObjectSerializer)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.String,System.Object,System.Xml.Serialization.XmlSerializer)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.String,System.ServiceModel.Syndication.SyndicationElementExtension)", "", "Argument[0]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.String,System.ServiceModel.Syndication.SyndicationElementExtension)", "", "Argument[1]", "Argument[this].Property[System.ServiceModel.Syndication.XmlSyndicationContent.Extension]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", False, "XmlSyndicationContent", "(System.Xml.XmlReader)", "", "Argument[0].Property[System.Xml.XmlReader.Value]", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "XmlSyndicationContent", True, "Clone", "()", "", "Argument[this].Property[System.ServiceModel.Syndication.XmlSyndicationContent.Extension]", "ReturnValue.Property[System.ServiceModel.Syndication.XmlSyndicationContent.Extension]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", True, "Clone", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "ReturnValue.SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "value", "dfc-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", True, "get_Type", "()", "", "Argument[this].SyntheticField[System.ServiceModel.Syndication.XmlSyndicationContent._type]", "ReturnValue", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "XmlUriData", False, "XmlUriData", "(System.String,System.UriKind,System.Xml.XmlQualifiedName)", "", "Argument[0]", "Argument[this].Property[System.ServiceModel.Syndication.XmlUriData.UriString]", "value", "dfc-generated"] + - ["System.ServiceModel.Syndication", "XmlUriData", False, "XmlUriData", "(System.String,System.UriKind,System.Xml.XmlQualifiedName)", "", "Argument[2]", "Argument[this].Property[System.ServiceModel.Syndication.XmlUriData.ElementQualifiedName]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -94,9 +140,6 @@ extensions: - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "CanRead", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "CreateFeedInstance", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "GetSchema", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "ReadItem", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "ReadItems", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "get_FeedType", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Atom10FeedFormatter", "get_Version", "()", "summary", "df-generated"] @@ -119,7 +162,6 @@ extensions: - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "CreateInlineCategoriesDocument", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "CreateReferencedCategoriesDocument", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "GetSchema", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10CategoriesDocumentFormatter", "get_Version", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "AtomPub10ServiceDocumentFormatter", "(System.ServiceModel.Syndication.ServiceDocument)", "summary", "df-generated"] @@ -127,16 +169,13 @@ extensions: - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "CanRead", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "CreateDocumentInstance", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "GetSchema", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "get_Version", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "AtomPub10ServiceDocumentFormatter", "(T,TServiceDocument)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "AtomPub10ServiceDocumentFormatter", "CreateDocumentInstance", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "Create", "(System.Collections.ObjectModel.Collection)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "Create", "(System.Collections.ObjectModel.Collection,System.Boolean,System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "CategoriesDocument", "Create", "(System.Uri)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "GetFormatter", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "CategoriesDocument", "Load", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "Save", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "TryParseAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocument", "TryParseElement", "(System.Xml.XmlReader,System.String)", "summary", "df-generated"] @@ -145,13 +184,11 @@ extensions: - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "CanRead", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "CreateInlineCategoriesDocument", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "CreateReferencedCategoriesDocument", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "CategoriesDocumentFormatter", "get_Version", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "InlineCategoriesDocument", "CreateCategory", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "InlineCategoriesDocument", "InlineCategoriesDocument", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "InlineCategoriesDocument", "get_Categories", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "ReferencedCategoriesDocument", "ReferencedCategoriesDocument", "(System.Uri)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", "CreateInlineCategoriesDocument", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", "CreateReferencedCategoriesDocument", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ResourceCollectionInfo", "ResourceCollectionInfo", "(System.ServiceModel.Syndication.TextSyndicationContent,System.Uri)", "summary", "df-generated"] @@ -166,9 +203,6 @@ extensions: - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "CanRead", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "CreateFeedInstance", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "GetSchema", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "ReadItem", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "ReadItems", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "Rss20FeedFormatter", "(System.ServiceModel.Syndication.SyndicationFeed)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "Rss20FeedFormatter", "(System.ServiceModel.Syndication.SyndicationFeed,System.Boolean)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Rss20FeedFormatter", "Rss20FeedFormatter", "(System.Type)", "summary", "df-generated"] @@ -193,8 +227,6 @@ extensions: - ["System.ServiceModel.Syndication", "Rss20ItemFormatter", "Rss20ItemFormatter", "(T,TSyndicationItem,System.Boolean)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", "CreateWorkspace", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", "GetFormatter", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "ServiceDocument", "Load", "(System.Xml.XmlReader)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "ServiceDocument", "Load", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", "Save", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", "TryParseAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocument", "TryParseElement", "(System.Xml.XmlReader,System.String)", "summary", "df-generated"] @@ -212,7 +244,6 @@ extensions: - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.ResourceCollectionInfo,System.Int32)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.ServiceDocument,System.Int32)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.Workspace,System.Int32)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.CategoriesDocument,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.ResourceCollectionInfo,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.ServiceDocument,System.String)", "summary", "df-generated"] @@ -232,9 +263,7 @@ extensions: - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "ServiceDocumentFormatter", "get_Version", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", "Clone", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationCategory", "SyndicationCategory", "(System.ServiceModel.Syndication.SyndicationCategory)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", "SyndicationCategory", "(System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationCategory", "SyndicationCategory", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", "TryParseAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", "TryParseElement", "(System.Xml.XmlReader,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationCategory", "WriteAttributeExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] @@ -273,8 +302,6 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationFeed", "GetAtom10Formatter", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", "GetRss20Formatter", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", "GetRss20Formatter", "(System.Boolean)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationFeed", "Load", "(System.Xml.XmlReader)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationFeed", "Load", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", "SaveAsAtom10", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", "SaveAsRss20", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeed", "SyndicationFeed", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] @@ -304,7 +331,6 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationItem,System.Int32)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationLink,System.Int32)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "LoadElementExtensions", "(System.Xml.XmlReader,System.ServiceModel.Syndication.SyndicationPerson,System.Int32)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "ReadFrom", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationCategory,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationFeed,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "TryParseAttribute", "(System.String,System.String,System.String,System.ServiceModel.Syndication.SyndicationItem,System.String)", "summary", "df-generated"] @@ -328,7 +354,6 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "WriteElementExtensions", "(System.Xml.XmlWriter,System.ServiceModel.Syndication.SyndicationPerson,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "WriteTo", "(System.Xml.XmlWriter)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationFeedFormatter", "get_Version", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationItem", "AddPermalink", "(System.Uri)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", "Clone", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", "CreateCategory", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationItem", "CreateLink", "()", "summary", "df-generated"] @@ -386,25 +411,18 @@ extensions: - ["System.ServiceModel.Syndication", "SyndicationLink", "CreateMediaEnclosureLink", "(System.Uri,System.String,System.Int64)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "CreateSelfLink", "(System.Uri)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "CreateSelfLink", "(System.Uri,System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationLink", "SyndicationLink", "(System.ServiceModel.Syndication.SyndicationLink)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "SyndicationLink", "(System.Uri)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationLink", "SyndicationLink", "(System.Uri,System.String,System.String,System.String,System.Int64)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "TryParseAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "TryParseElement", "(System.Xml.XmlReader,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "WriteAttributeExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationLink", "WriteElementExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "Clone", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationPerson", "SyndicationPerson", "(System.ServiceModel.Syndication.SyndicationPerson)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "SyndicationPerson", "(System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "SyndicationPerson", "SyndicationPerson", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "TryParseAttribute", "(System.String,System.String,System.String,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "TryParseElement", "(System.Xml.XmlReader,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "WriteAttributeExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "SyndicationPerson", "WriteElementExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "TextSyndicationContent", "Clone", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "TextSyndicationContent", "TextSyndicationContent", "(System.ServiceModel.Syndication.TextSyndicationContent)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "TextSyndicationContent", "TextSyndicationContent", "(System.String)", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "TextSyndicationContent", "TextSyndicationContent", "(System.String,System.ServiceModel.Syndication.TextSyndicationContentKind)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "TextSyndicationContent", "get_Text", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "TextSyndicationContent", "get_Type", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "UrlSyndicationContent", "get_Url", "()", "summary", "df-generated"] @@ -415,12 +433,10 @@ extensions: - ["System.ServiceModel.Syndication", "Workspace", "WriteAttributeExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Workspace", "WriteElementExtensions", "(System.Xml.XmlWriter,System.String)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "Workspace", "get_Collections", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "XmlDateTimeData", "XmlDateTimeData", "(System.String,System.Xml.XmlQualifiedName)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlDateTimeData", "get_DateTimeString", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlDateTimeData", "get_ElementQualifiedName", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", "GetReaderAtContent", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlSyndicationContent", "get_Extension", "()", "summary", "df-generated"] - - ["System.ServiceModel.Syndication", "XmlUriData", "XmlUriData", "(System.String,System.UriKind,System.Xml.XmlQualifiedName)", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlUriData", "get_ElementQualifiedName", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlUriData", "get_UriKind", "()", "summary", "df-generated"] - ["System.ServiceModel.Syndication", "XmlUriData", "get_UriString", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml b/csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml index 4941bf404c9..626445bb9f0 100644 --- a/csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.Json.Nodes.model.yml @@ -8,8 +8,6 @@ extensions: - ["System.Text.Json.Nodes", "JsonArray", False, "Add", "(T)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", False, "Create", "(System.Text.Json.JsonElement,System.Nullable)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", False, "GetValues", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Text.Json.Nodes", "JsonArray", False, "JsonArray", "(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[])", "", "Argument[this]", "Argument[1].Element", "taint", "df-generated"] - - ["System.Text.Json.Nodes", "JsonArray", False, "JsonArray", "(System.Text.Json.Nodes.JsonNode[])", "", "Argument[this]", "Argument[0].Element", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonNode", False, "AsArray", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json.Nodes", "JsonNode", False, "AsObject", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json.Nodes", "JsonNode", False, "AsValue", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] @@ -21,10 +19,9 @@ extensions: - ["System.Text.Json.Nodes", "JsonNode", False, "get_Root", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"] - ["System.Text.Json.Nodes", "JsonNode", True, "GetValue", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", False, "Create", "(System.Text.Json.JsonElement,System.Nullable)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Text.Json.Nodes", "JsonObject", False, "JsonObject", "(System.Collections.Generic.IEnumerable>,System.Nullable)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "dfc-generated"] - - ["System.Text.Json.Nodes", "JsonObject", False, "JsonObject", "(System.Collections.Generic.IEnumerable>,System.Nullable)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "dfc-generated"] - - ["System.Text.Json.Nodes", "JsonObject", False, "TryGetPropertyValue", "(System.String,System.Text.Json.Nodes.JsonNode)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Text.Json.Nodes", "JsonObject", False, "TryGetValue", "(System.String,System.Text.Json.Nodes.JsonNode)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", False, "Insert", "(System.Int32,System.String,System.Text.Json.Nodes.JsonNode)", "", "Argument[this]", "Argument[2]", "taint", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", False, "SetAt", "(System.Int32,System.String,System.Text.Json.Nodes.JsonNode)", "", "Argument[this]", "Argument[2]", "taint", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", False, "SetAt", "(System.Int32,System.Text.Json.Nodes.JsonNode)", "", "Argument[this]", "Argument[1]", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonValue", False, "Create", "(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Nullable)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Nodes", "JsonValue", True, "TryGetValue", "(T)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - addsTo: @@ -34,8 +31,14 @@ extensions: - ["System.Text.Json.Nodes", "JsonArray", "Contains", "(System.Text.Json.Nodes.JsonNode)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "IndexOf", "(System.Text.Json.Nodes.JsonNode)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "JsonArray", "(System.Nullable)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "JsonArray", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "JsonArray", "(System.Text.Json.Nodes.JsonNodeOptions,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "JsonArray", "(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[])", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "JsonArray", "(System.Text.Json.Nodes.JsonNode[])", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "Remove", "(System.Text.Json.Nodes.JsonNode)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "RemoveAll", "(System.Func)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonArray", "RemoveRange", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "WriteTo", "(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "get_Count", "()", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonArray", "get_IsReadOnly", "()", "summary", "df-generated"] @@ -52,9 +55,16 @@ extensions: - ["System.Text.Json.Nodes", "JsonNode", "WriteTo", "(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "Contains", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "ContainsKey", "(System.String)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "GetAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "IndexOf", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "IndexOf", "(System.String)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "JsonObject", "(System.Collections.Generic.IEnumerable>,System.Nullable)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "JsonObject", "(System.Nullable)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "Remove", "(System.Collections.Generic.KeyValuePair)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "Remove", "(System.String)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "RemoveAt", "(System.Int32)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "TryGetPropertyValue", "(System.String,System.Text.Json.Nodes.JsonNode)", "summary", "df-generated"] + - ["System.Text.Json.Nodes", "JsonObject", "TryGetValue", "(System.String,System.Text.Json.Nodes.JsonNode)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "WriteTo", "(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "get_Count", "()", "summary", "df-generated"] - ["System.Text.Json.Nodes", "JsonObject", "get_IsReadOnly", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Schema.model.yml b/csharp/ql/lib/ext/generated/System.Text.Json.Schema.model.yml new file mode 100644 index 00000000000..fe43b062064 --- /dev/null +++ b/csharp/ql/lib/ext/generated/System.Text.Json.Schema.model.yml @@ -0,0 +1,13 @@ +# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. +extensions: + - addsTo: + pack: codeql/csharp-all + extensible: neutralModel + data: + - ["System.Text.Json.Schema", "JsonSchemaExporter", "GetJsonSchemaAsNode", "(System.Text.Json.JsonSerializerOptions,System.Type,System.Text.Json.Schema.JsonSchemaExporterOptions)", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporter", "GetJsonSchemaAsNode", "(System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Schema.JsonSchemaExporterOptions)", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporterContext", "get_BaseTypeInfo", "()", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporterContext", "get_Path", "()", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporterContext", "get_PropertyInfo", "()", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporterContext", "get_TypeInfo", "()", "summary", "df-generated"] + - ["System.Text.Json.Schema", "JsonSchemaExporterOptions", "get_Default", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml b/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml index faaaff0bdfd..cf1dbb4abba 100644 --- a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.Metadata.model.yml @@ -6,6 +6,7 @@ extensions: data: - ["System.Text.Json.Serialization.Metadata", "IJsonTypeInfoResolver", True, "GetTypeInfo", "(System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "IJsonTypeInfoResolver", True, "GetTypeInfo", "(System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", False, "JsonDerivedType", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].Property[System.Text.Json.Serialization.Metadata.JsonDerivedType.TypeDiscriminator]", "value", "dfc-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "CreateArrayInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "CreateConcurrentQueueInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "CreateConcurrentStackInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] @@ -29,10 +30,12 @@ extensions: - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "CreateStackInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "CreateValueInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.JsonConverter)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", False, "GetNullableConverter", "(System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", False, "get_AttributeProvider", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", False, "CreateJsonPropertyInfo", "(System.Type,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", False, "CreateJsonTypeInfo", "(System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", False, "CreateJsonTypeInfo", "(System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", False, "get_Properties", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfoResolver", False, "Combine", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfoResolver", False, "Combine", "(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - addsTo: pack: codeql/csharp-all @@ -41,7 +44,6 @@ extensions: - ["System.Text.Json.Serialization.Metadata", "DefaultJsonTypeInfoResolver", "get_Modifiers", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", "JsonDerivedType", "(System.Type)", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", "JsonDerivedType", "(System.Type,System.Int32)", "summary", "df-generated"] - - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", "JsonDerivedType", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", "get_DerivedType", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonDerivedType", "get_TypeDiscriminator", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", "CreateImmutableDictionaryInfo", "(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues,System.Func>,TCollection>)", "summary", "df-generated"] @@ -86,8 +88,23 @@ extensions: - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", "get_UInt64Converter", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", "get_UriConverter", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonMetadataServices", "get_VersionConverter", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_DeclaringType", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_DefaultValue", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_HasDefaultValue", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_IsMemberInitializer", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_IsNullable", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_Name", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_ParameterType", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonParameterInfo", "get_Position", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonPolymorphismOptions", "get_DerivedTypes", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonPropertyInfo", "get_DeclaringType", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonPropertyInfo", "get_Options", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonPropertyInfo", "get_PropertyType", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "MakeReadOnly", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_Converter", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_ElementType", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_KeyType", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_Kind", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_Options", "()", "summary", "df-generated"] + - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfo", "get_Type", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization.Metadata", "JsonTypeInfoResolver", "WithAddedModifier", "(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver,System.Action)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml b/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml index c2b0c857367..cacf9b8523e 100644 --- a/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.Json.Serialization.model.yml @@ -5,12 +5,16 @@ extensions: extensible: summaryModel data: - ["System.Text.Json.Serialization", "BinaryDataJsonConverter", False, "Read", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System.Text.Json.Serialization", "JsonConverter", True, "ReadAsPropertyName", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0].Property[System.Text.Json.Utf8JsonReader.ValueSpan].Element", "ReturnValue", "taint", "dfc-generated"] - ["System.Text.Json.Serialization", "JsonConverter", True, "ReadAsPropertyName", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json.Serialization", "JsonConverterFactory", True, "CreateConverter", "(System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", False, "JsonDerivedTypeAttribute", "(System.Type,System.String)", "", "Argument[1]", "Argument[this].Property[System.Text.Json.Serialization.JsonDerivedTypeAttribute.TypeDiscriminator]", "value", "dfc-generated"] + - ["System.Text.Json.Serialization", "JsonPropertyNameAttribute", False, "JsonPropertyNameAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Text.Json.Serialization.JsonPropertyNameAttribute.Name]", "value", "dfc-generated"] - ["System.Text.Json.Serialization", "JsonSerializerContext", False, "JsonSerializerContext", "(System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "Argument[this].SyntheticField[System.Text.Json.Serialization.JsonSerializerContext._options]", "value", "dfc-generated"] - ["System.Text.Json.Serialization", "JsonSerializerContext", False, "get_Options", "()", "", "Argument[this].SyntheticField[System.Text.Json.Serialization.JsonSerializerContext._options]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json.Serialization", "JsonStringEnumConverter", False, "JsonStringEnumConverter", "(System.Text.Json.JsonNamingPolicy,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Text.Json.Serialization", "JsonStringEnumConverter", False, "JsonStringEnumConverter", "(System.Text.Json.JsonNamingPolicy,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Text.Json.Serialization", "JsonStringEnumMemberNameAttribute", False, "JsonStringEnumMemberNameAttribute", "(System.String)", "", "Argument[0]", "Argument[this].Property[System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute.Name]", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -30,10 +34,10 @@ extensions: - ["System.Text.Json.Serialization", "JsonConverter", "get_Type", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonConverterAttribute", "CreateConverter", "(System.Type)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonConverterAttribute", "JsonConverterAttribute", "(System.Type)", "summary", "df-generated"] + - ["System.Text.Json.Serialization", "JsonConverterAttribute", "get_ConverterType", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonConverterFactory", "get_Type", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", "JsonDerivedTypeAttribute", "(System.Type)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", "JsonDerivedTypeAttribute", "(System.Type,System.Int32)", "summary", "df-generated"] - - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", "JsonDerivedTypeAttribute", "(System.Type,System.String)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", "get_DerivedType", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonDerivedTypeAttribute", "get_TypeDiscriminator", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonNumberEnumConverter", "CanConvert", "(System.Type)", "summary", "df-generated"] @@ -41,7 +45,6 @@ extensions: - ["System.Text.Json.Serialization", "JsonNumberHandlingAttribute", "get_Handling", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonObjectCreationHandlingAttribute", "JsonObjectCreationHandlingAttribute", "(System.Text.Json.Serialization.JsonObjectCreationHandling)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonObjectCreationHandlingAttribute", "get_Handling", "()", "summary", "df-generated"] - - ["System.Text.Json.Serialization", "JsonPropertyNameAttribute", "JsonPropertyNameAttribute", "(System.String)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonPropertyNameAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonPropertyOrderAttribute", "JsonPropertyOrderAttribute", "(System.Int32)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonPropertyOrderAttribute", "get_Order", "()", "summary", "df-generated"] @@ -51,6 +54,7 @@ extensions: - ["System.Text.Json.Serialization", "JsonSourceGenerationOptionsAttribute", "JsonSourceGenerationOptionsAttribute", "(System.Text.Json.JsonSerializerDefaults)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonStringEnumConverter", "CanConvert", "(System.Type)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonStringEnumConverter", "CanConvert", "(System.Type)", "summary", "df-generated"] + - ["System.Text.Json.Serialization", "JsonStringEnumMemberNameAttribute", "get_Name", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonUnmappedMemberHandlingAttribute", "JsonUnmappedMemberHandlingAttribute", "(System.Text.Json.Serialization.JsonUnmappedMemberHandling)", "summary", "df-generated"] - ["System.Text.Json.Serialization", "JsonUnmappedMemberHandlingAttribute", "get_UnmappedMemberHandling", "()", "summary", "df-generated"] - ["System.Text.Json.Serialization", "ReferenceHandler", "CreateResolver", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Json.model.yml b/csharp/ql/lib/ext/generated/System.Text.Json.model.yml index 527d46fd4a5..e5e1eb220f9 100644 --- a/csharp/ql/lib/ext/generated/System.Text.Json.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.Json.model.yml @@ -14,6 +14,7 @@ extensions: - ["System.Text.Json", "JsonElement+ArrayEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json", "JsonElement+ObjectEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json", "JsonElement+ObjectEnumerator", False, "get_Current", "()", "", "Argument[this].Property[System.Text.Json.JsonElement+ObjectEnumerator.Current]", "ReturnValue", "value", "dfc-generated"] + - ["System.Text.Json", "JsonElement+ObjectEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json", "JsonElement", False, "Clone", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json", "JsonElement", False, "EnumerateArray", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.Json", "JsonElement", False, "EnumerateObject", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -32,7 +33,13 @@ extensions: - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Text.Json.JsonException._message]", "value", "dfc-generated"] - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.Exception)", "", "Argument[0]", "Argument[this].SyntheticField[System.Text.Json.JsonException._message]", "value", "dfc-generated"] - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable)", "", "Argument[0]", "Argument[this].SyntheticField[System.Text.Json.JsonException._message]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable)", "", "Argument[1]", "Argument[this].Property[System.Text.Json.JsonException.Path]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable)", "", "Argument[2]", "Argument[this].Property[System.Text.Json.JsonException.LineNumber]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable)", "", "Argument[3]", "Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine]", "value", "dfc-generated"] - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable,System.Exception)", "", "Argument[0]", "Argument[this].SyntheticField[System.Text.Json.JsonException._message]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable,System.Exception)", "", "Argument[1]", "Argument[this].Property[System.Text.Json.JsonException.Path]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable,System.Exception)", "", "Argument[2]", "Argument[this].Property[System.Text.Json.JsonException.LineNumber]", "value", "dfc-generated"] + - ["System.Text.Json", "JsonException", False, "JsonException", "(System.String,System.String,System.Nullable,System.Nullable,System.Exception)", "", "Argument[3]", "Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine]", "value", "dfc-generated"] - ["System.Text.Json", "JsonException", True, "get_Message", "()", "", "Argument[this].Property[System.Exception.Message]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json", "JsonException", True, "get_Message", "()", "", "Argument[this].SyntheticField[System.Text.Json.JsonException._message]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.Json", "JsonNamingPolicy", True, "ConvertName", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -52,7 +59,9 @@ extensions: - ["System.Text.Json", "JsonSerializer", False, "Serialize", "(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "Serialize", "(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "Serialize", "(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] + - ["System.Text.Json", "JsonSerializer", False, "SerializeAsync", "(System.IO.Pipelines.PipeWriter,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "SerializeAsync", "(System.IO.Stream,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System.Text.Json", "JsonSerializer", False, "SerializeAsync", "(System.IO.Pipelines.PipeWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "SerializeAsync", "(System.IO.Stream,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "SerializeToDocument", "(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] - ["System.Text.Json", "JsonSerializer", False, "SerializeToDocument", "(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "", "Argument[0]", "Argument[1]", "taint", "df-generated"] @@ -93,7 +102,7 @@ extensions: - ["System.Text.Json", "JsonElement+ObjectEnumerator", "Dispose", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement+ObjectEnumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement+ObjectEnumerator", "Reset", "()", "summary", "df-generated"] - - ["System.Text.Json", "JsonElement+ObjectEnumerator", "get_Current", "()", "summary", "df-generated"] + - ["System.Text.Json", "JsonElement", "DeepEquals", "(System.Text.Json.JsonElement,System.Text.Json.JsonElement)", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetArrayLength", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetBoolean", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetByte", "()", "summary", "df-generated"] @@ -106,6 +115,7 @@ extensions: - ["System.Text.Json", "JsonElement", "GetInt16", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetInt32", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetInt64", "()", "summary", "df-generated"] + - ["System.Text.Json", "JsonElement", "GetPropertyCount", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetRawText", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetSByte", "()", "summary", "df-generated"] - ["System.Text.Json", "JsonElement", "GetSingle", "()", "summary", "df-generated"] @@ -192,7 +202,9 @@ extensions: - ["System.Text.Json", "JsonSerializer", "DeserializeAsync", "(System.IO.Stream,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "DeserializeAsync", "(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "DeserializeAsync", "(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Text.Json", "JsonSerializer", "DeserializeAsyncEnumerable", "(System.IO.Stream,System.Boolean,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "DeserializeAsyncEnumerable", "(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Text.Json", "JsonSerializer", "DeserializeAsyncEnumerable", "(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Boolean,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "DeserializeAsyncEnumerable", "(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "Serialize", "(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "Serialize", "(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)", "summary", "df-generated"] @@ -203,8 +215,11 @@ extensions: - ["System.Text.Json", "JsonSerializer", "Serialize", "(System.IO.Stream,TValue,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "Serialize", "(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "Serialize", "(TValue,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] + - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Pipelines.PipeWriter,TValue,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "SerializeAsync", "(System.IO.Stream,TValue,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "SerializeToDocument", "(System.Object,System.Type,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System.Text.Json", "JsonSerializer", "SerializeToDocument", "(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext)", "summary", "df-generated"] @@ -281,6 +296,7 @@ extensions: - ["System.Text.Json", "Utf8JsonWriter", "WriteBase64String", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteBase64String", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteBase64String", "(System.Text.Json.JsonEncodedText,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System.Text.Json", "Utf8JsonWriter", "WriteBase64StringSegment", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteBase64StringValue", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteBoolean", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteBoolean", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] @@ -385,4 +401,6 @@ extensions: - ["System.Text.Json", "Utf8JsonWriter", "WriteStringValue", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteStringValue", "(System.String)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "WriteStringValue", "(System.Text.Json.JsonEncodedText)", "summary", "df-generated"] + - ["System.Text.Json", "Utf8JsonWriter", "WriteStringValueSegment", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] + - ["System.Text.Json", "Utf8JsonWriter", "WriteStringValueSegment", "(System.ReadOnlySpan,System.Boolean)", "summary", "df-generated"] - ["System.Text.Json", "Utf8JsonWriter", "get_CurrentDepth", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml b/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml index 31972f8827f..b70d8da3c91 100644 --- a/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.RegularExpressions.model.yml @@ -12,10 +12,12 @@ extensions: - ["System.Text.RegularExpressions", "GroupCollection", False, "TryGetValue", "(System.String,System.Text.RegularExpressions.Group)", "", "Argument[this].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "GroupCollection", False, "get_Keys", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "GroupCollection", False, "get_Values", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Text.RegularExpressions", "Match", False, "NextMatch", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Text.RegularExpressions", "Match", False, "NextMatch", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Match", False, "Synchronized", "(System.Text.RegularExpressions.Match)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "Regex+ValueMatchEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "Regex+ValueMatchEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex+ValueSplitEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System.Text.RegularExpressions", "Regex+ValueSplitEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Count", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "EnumerateMatches", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "EnumerateMatches", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -28,13 +30,39 @@ extensions: - ["System.Text.RegularExpressions", "Regex", False, "EnumerateMatches", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "EnumerateMatches", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "EnumerateMatches", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.Int32,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "EnumerateSplits", "(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Escape", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "Regex", False, "GroupNameFromNumber", "(System.Int32)", "", "Argument[this].Field[System.Text.RegularExpressions.Regex.capslist].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "Regex", False, "IsMatch", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "IsMatch", "(System.String,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.Int32,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "Regex", False, "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Matches", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Matches", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Text.RegularExpressions", "Regex", False, "Matches", "(System.String,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -71,6 +99,9 @@ extensions: - ["System.Text.RegularExpressions", "RegexCompilationInfo", False, "RegexCompilationInfo", "(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Text.RegularExpressions", "RegexCompilationInfo", False, "RegexCompilationInfo", "(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.Text.RegularExpressions", "RegexCompilationInfo", False, "RegexCompilationInfo", "(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan)", "", "Argument[5]", "Argument[this]", "taint", "df-generated"] + - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", False, "RegexMatchTimeoutException", "(System.String,System.String,System.TimeSpan)", "", "Argument[0]", "Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Input]", "value", "dfc-generated"] + - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", False, "RegexMatchTimeoutException", "(System.String,System.String,System.TimeSpan)", "", "Argument[1]", "Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Pattern]", "value", "dfc-generated"] + - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", False, "RegexMatchTimeoutException", "(System.String,System.String,System.TimeSpan)", "", "Argument[2]", "Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.MatchTimeout]", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "RegexRunner", False, "Scan", "(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)", "", "Argument[1]", "Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runtext]", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "RegexRunner", False, "Scan", "(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)", "", "Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runmatch]", "ReturnValue", "value", "dfc-generated"] - ["System.Text.RegularExpressions", "RegexRunner", False, "Scan", "(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan)", "", "Argument[1]", "Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runtext]", "value", "dfc-generated"] @@ -131,6 +162,7 @@ extensions: - ["System.Text.RegularExpressions", "MatchCollection", "get_IsReadOnly", "()", "summary", "df-generated"] - ["System.Text.RegularExpressions", "MatchCollection", "get_IsSynchronized", "()", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex+ValueMatchEnumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System.Text.RegularExpressions", "Regex+ValueSplitEnumerator", "MoveNext", "()", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "CompileToAssembly", "(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "CompileToAssembly", "(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[])", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "CompileToAssembly", "(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[],System.String)", "summary", "df-generated"] @@ -154,9 +186,6 @@ extensions: - ["System.Text.RegularExpressions", "Regex", "IsMatch", "(System.String,System.String)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "IsMatch", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "IsMatch", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "summary", "df-generated"] - - ["System.Text.RegularExpressions", "Regex", "Match", "(System.String,System.String)", "summary", "df-generated"] - - ["System.Text.RegularExpressions", "Regex", "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions)", "summary", "df-generated"] - - ["System.Text.RegularExpressions", "Regex", "Match", "(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "Regex", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "Regex", "(System.String)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "Regex", "Regex", "(System.String,System.Text.RegularExpressions.RegexOptions)", "summary", "df-generated"] @@ -170,7 +199,6 @@ extensions: - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "RegexMatchTimeoutException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "RegexMatchTimeoutException", "(System.String)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "RegexMatchTimeoutException", "(System.String,System.Exception)", "summary", "df-generated"] - - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "RegexMatchTimeoutException", "(System.String,System.String,System.TimeSpan)", "summary", "df-generated"] - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "get_Input", "()", "summary", "df-generated"] - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "get_MatchTimeout", "()", "summary", "df-generated"] - ["System.Text.RegularExpressions", "RegexMatchTimeoutException", "get_Pattern", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml b/csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml index b3ee03ba08c..20d753a17d1 100644 --- a/csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.Unicode.model.yml @@ -15,6 +15,8 @@ extensions: data: - ["System.Text.Unicode", "UnicodeRange", "Create", "(System.Char,System.Char)", "summary", "df-generated"] - ["System.Text.Unicode", "UnicodeRange", "UnicodeRange", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System.Text.Unicode", "UnicodeRange", "get_FirstCodePoint", "()", "summary", "df-generated"] + - ["System.Text.Unicode", "UnicodeRange", "get_Length", "()", "summary", "df-generated"] - ["System.Text.Unicode", "UnicodeRanges", "get_All", "()", "summary", "df-generated"] - ["System.Text.Unicode", "UnicodeRanges", "get_AlphabeticPresentationForms", "()", "summary", "df-generated"] - ["System.Text.Unicode", "UnicodeRanges", "get_Arabic", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Text.model.yml b/csharp/ql/lib/ext/generated/System.Text.model.yml index 5294b935a05..ef5ac91fd79 100644 --- a/csharp/ql/lib/ext/generated/System.Text.model.yml +++ b/csharp/ql/lib/ext/generated/System.Text.model.yml @@ -56,8 +56,6 @@ extensions: - ["System.Text", "StringBuilder+AppendInterpolatedStringHandler", False, "AppendLiteral", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Text", "StringBuilder+ChunkEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text", "StringBuilder+ChunkEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Text", "StringBuilder", False, "AppendFormat", "(System.IFormatProvider,System.Text.CompositeFormat,System.Object[])", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - - ["System.Text", "StringBuilder", False, "AppendFormat", "(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text", "StringBuilder", False, "AppendFormat", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0,TArg1,TArg2)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text", "StringBuilder", False, "AppendFormat", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0,TArg1)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Text", "StringBuilder", False, "AppendFormat", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml b/csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml index 34db6510078..f037853e04f 100644 --- a/csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml +++ b/csharp/ql/lib/ext/generated/System.Threading.Channels.model.yml @@ -10,6 +10,8 @@ extensions: - ["System.Threading.Channels", "Channel", "CreateBounded", "(System.Threading.Channels.BoundedChannelOptions,System.Action)", "summary", "df-generated"] - ["System.Threading.Channels", "Channel", "CreateUnbounded", "()", "summary", "df-generated"] - ["System.Threading.Channels", "Channel", "CreateUnbounded", "(System.Threading.Channels.UnboundedChannelOptions)", "summary", "df-generated"] + - ["System.Threading.Channels", "Channel", "CreateUnboundedPrioritized", "()", "summary", "df-generated"] + - ["System.Threading.Channels", "Channel", "CreateUnboundedPrioritized", "(System.Threading.Channels.UnboundedPrioritizedChannelOptions)", "summary", "df-generated"] - ["System.Threading.Channels", "ChannelClosedException", "ChannelClosedException", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Channels", "ChannelClosedException", "ChannelClosedException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Threading.Channels", "ChannelClosedException", "ChannelClosedException", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml b/csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml index ef7a037da23..ccfb12aa0e6 100644 --- a/csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml +++ b/csharp/ql/lib/ext/generated/System.Threading.RateLimiting.model.yml @@ -4,6 +4,8 @@ extensions: pack: codeql/csharp-all extensible: summaryModel data: + - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", False, "FixedWindowRateLimiter", "(System.Threading.RateLimiting.FixedWindowRateLimiterOptions)", "", "Argument[0].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window]", "Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window]", "value", "dfc-generated"] + - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", False, "get_ReplenishmentPeriod", "()", "", "Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window]", "ReturnValue", "value", "dfc-generated"] - ["System.Threading.RateLimiting", "MetadataName", False, "MetadataName", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name]", "value", "dfc-generated"] - ["System.Threading.RateLimiting", "MetadataName", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name]", "ReturnValue", "value", "dfc-generated"] - ["System.Threading.RateLimiting", "MetadataName", False, "get_Name", "()", "", "Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name]", "ReturnValue", "value", "dfc-generated"] @@ -12,9 +14,14 @@ extensions: - ["System.Threading.RateLimiting", "RateLimitLease", True, "GetAllMetadata", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitLease", True, "TryGetMetadata", "(System.String,System.Object)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitLease", True, "get_MetadataNames", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.RateLimiting", "RateLimitPartition", False, "RateLimitPartition", "(TKey,System.Func)", "", "Argument[0]", "Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey]", "value", "dfc-generated"] + - ["System.Threading.RateLimiting", "RateLimitPartition", False, "RateLimitPartition", "(TKey,System.Func)", "", "Argument[1]", "Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.Factory]", "value", "dfc-generated"] - ["System.Threading.RateLimiting", "RateLimiter", False, "AttemptAcquire", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.RateLimiting", "RateLimiter", True, "AttemptAcquireCore", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.RateLimiting", "ReplenishingRateLimiter", True, "get_ReplenishmentPeriod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", False, "SlidingWindowRateLimiter", "(System.Threading.RateLimiting.SlidingWindowRateLimiterOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", False, "TokenBucketRateLimiter", "(System.Threading.RateLimiting.TokenBucketRateLimiterOptions)", "", "Argument[0].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod]", "Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod]", "value", "dfc-generated"] + - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", False, "get_ReplenishmentPeriod", "()", "", "Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod]", "ReturnValue", "value", "dfc-generated"] - addsTo: pack: codeql/csharp-all extensible: neutralModel @@ -28,7 +35,6 @@ extensions: - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "AcquireAsyncCore", "(System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "DisposeAsyncCore", "()", "summary", "df-generated"] - - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "FixedWindowRateLimiter", "(System.Threading.RateLimiting.FixedWindowRateLimiterOptions)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "GetStatistics", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "TryReplenish", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "FixedWindowRateLimiter", "get_IdleDuration", "()", "summary", "df-generated"] @@ -60,7 +66,6 @@ extensions: - ["System.Threading.RateLimiting", "RateLimitPartition", "GetNoLimiter", "(TKey)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitPartition", "GetSlidingWindowLimiter", "(TKey,System.Func)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitPartition", "GetTokenBucketLimiter", "(TKey,System.Func)", "summary", "df-generated"] - - ["System.Threading.RateLimiting", "RateLimitPartition", "RateLimitPartition", "(TKey,System.Func)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitPartition", "get_Factory", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "RateLimitPartition", "get_PartitionKey", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "RateLimiter", "AcquireAsync", "(System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] @@ -76,7 +81,6 @@ extensions: - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "DisposeAsyncCore", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "GetStatistics", "()", "summary", "df-generated"] - - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "SlidingWindowRateLimiter", "(System.Threading.RateLimiting.SlidingWindowRateLimiterOptions)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "TryReplenish", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "get_IdleDuration", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "SlidingWindowRateLimiter", "get_IsAutoReplenishing", "()", "summary", "df-generated"] @@ -84,7 +88,6 @@ extensions: - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "Dispose", "(System.Boolean)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "DisposeAsyncCore", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "GetStatistics", "()", "summary", "df-generated"] - - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "TokenBucketRateLimiter", "(System.Threading.RateLimiting.TokenBucketRateLimiterOptions)", "summary", "df-generated"] - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "TryReplenish", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "get_IdleDuration", "()", "summary", "df-generated"] - ["System.Threading.RateLimiting", "TokenBucketRateLimiter", "get_IsAutoReplenishing", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml b/csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml index 832754f553a..d39b388a218 100644 --- a/csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml +++ b/csharp/ql/lib/ext/generated/System.Threading.Tasks.Dataflow.model.yml @@ -49,7 +49,6 @@ extensions: - ["System.Threading.Tasks.Dataflow", "DataflowBlock", False, "SendAsync", "(System.Threading.Tasks.Dataflow.ITargetBlock,TInput)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.Threading.Tasks.Dataflow", "DataflowBlock", False, "SendAsync", "(System.Threading.Tasks.Dataflow.ITargetBlock,TInput,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"] - ["System.Threading.Tasks.Dataflow", "DataflowBlock", False, "TryReceive", "(System.Threading.Tasks.Dataflow.IReceivableSourceBlock,TOutput)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Threading.Tasks.Dataflow", "IDataflowBlock", True, "Fault", "(System.Exception)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks.Dataflow", "IDataflowBlock", True, "get_Completion", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", False, "JoinBlock", "(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", False, "LinkTo", "(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -88,6 +87,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "ActionBlock", "ActionBlock", "(System.Func)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ActionBlock", "ActionBlock", "(System.Func,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ActionBlock", "Complete", "()", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "ActionBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ActionBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ActionBlock", "Post", "(TInput)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ActionBlock", "ToString", "()", "summary", "df-generated"] @@ -95,6 +95,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "BatchBlock", "BatchBlock", "(System.Int32)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "BatchBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchBlock", "ToString", "()", "summary", "df-generated"] @@ -106,6 +107,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "BatchedJoinBlock", "(System.Int32)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ToString", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "TryReceive", "(System.Predicate,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Tuple,System.Collections.Generic.IList,System.Collections.Generic.IList>)", "summary", "df-generated"] @@ -115,6 +117,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "BatchedJoinBlock", "(System.Int32)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "ToString", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BatchedJoinBlock", "TryReceive", "(System.Predicate,System.Collections.Generic.IList>>,System.Tuple,System.Collections.Generic.IList>)", "summary", "df-generated"] @@ -124,12 +127,14 @@ extensions: - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "BroadcastBlock", "(System.Func)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "BroadcastBlock", "(System.Func,System.Threading.Tasks.Dataflow.DataflowBlockOptions)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "Complete", "()", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "ToString", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BroadcastBlock", "TryReceive", "(System.Predicate,T)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BufferBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BufferBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "BufferBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BufferBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BufferBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "BufferBlock", "ToString", "()", "summary", "df-generated"] @@ -155,6 +160,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "DataflowMessageHeader", "op_Equality", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "DataflowMessageHeader", "op_Inequality", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "IDataflowBlock", "Complete", "()", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "IDataflowBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "IReceivableSourceBlock", "TryReceive", "(System.Predicate,TOutput)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "IReceivableSourceBlock", "TryReceiveAll", "(System.Collections.Generic.IList)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "ISourceBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean)", "summary", "df-generated"] @@ -164,6 +170,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "ITargetBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "JoinBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ToString", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "TryReceive", "(System.Predicate>,System.Tuple)", "summary", "df-generated"] @@ -171,6 +178,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "JoinBlock", "get_OutputCount", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "JoinBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "ToString", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "JoinBlock", "TryReceive", "(System.Predicate>,System.Tuple)", "summary", "df-generated"] @@ -178,6 +186,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "JoinBlock", "get_OutputCount", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "TransformBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformBlock", "ToString", "()", "summary", "df-generated"] @@ -191,6 +200,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "TransformBlock", "get_OutputCount", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "Complete", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "ConsumeMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean)", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "OfferMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "ReleaseReservation", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "ToString", "()", "summary", "df-generated"] @@ -205,6 +215,7 @@ extensions: - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "get_InputCount", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "TransformManyBlock", "get_OutputCount", "()", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "WriteOnceBlock", "Complete", "()", "summary", "df-generated"] + - ["System.Threading.Tasks.Dataflow", "WriteOnceBlock", "Fault", "(System.Exception)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "WriteOnceBlock", "ReserveMessage", "(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "WriteOnceBlock", "TryReceive", "(System.Predicate,T)", "summary", "df-generated"] - ["System.Threading.Tasks.Dataflow", "WriteOnceBlock", "WriteOnceBlock", "(System.Func)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml b/csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml index 2e64b63e1c2..81a2c7cfbb4 100644 --- a/csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml +++ b/csharp/ql/lib/ext/generated/System.Threading.Tasks.model.yml @@ -25,9 +25,12 @@ extensions: - ["System.Threading.Tasks", "Task", False, "WaitAsync", "(System.TimeSpan,System.TimeProvider,System.Threading.CancellationToken)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "Task", False, "WaitAsync", "(System.TimeSpan,System.TimeProvider,System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "Task", False, "WhenAny", "(System.Collections.Generic.IEnumerable)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.Tasks", "Task", False, "WhenAny", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "Task", False, "WhenAny", "(System.Threading.Tasks.Task,System.Threading.Tasks.Task)", "", "Argument[0]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] - ["System.Threading.Tasks", "Task", False, "WhenAny", "(System.Threading.Tasks.Task,System.Threading.Tasks.Task)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "dfc-generated"] - ["System.Threading.Tasks", "Task", False, "WhenAny", "(System.Threading.Tasks.Task[])", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.Tasks", "Task", False, "WhenEach", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] + - ["System.Threading.Tasks", "Task", False, "WhenEach", "(System.Threading.Tasks.Task[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Threading.Tasks", "Task", False, "get_AsyncState", "()", "", "Argument[this].SyntheticField[System.Threading.Tasks.Task.m_stateObject]", "ReturnValue", "value", "dfc-generated"] - ["System.Threading.Tasks", "Task", False, "ConfigureAwait", "(System.Threading.Tasks.ConfigureAwaitOptions)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "Task", False, "WaitAsync", "(System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -37,13 +40,16 @@ extensions: - ["System.Threading.Tasks", "Task", False, "WaitAsync", "(System.TimeSpan,System.TimeProvider,System.Threading.CancellationToken)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", False, "ConfigureAwait", "(System.IAsyncDisposable,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", False, "ConfigureAwait", "(System.Collections.Generic.IAsyncEnumerable,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", False, "ToBlockingEnumerable", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "", "Argument[0].Property[System.Collections.Generic.IAsyncEnumerator`1.Current]", "ReturnValue.Element", "value", "dfc-generated"] - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", False, "WithCancellation", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", False, "WithCancellation", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskCanceledException", False, "TaskCanceledException", "(System.Threading.Tasks.Task)", "", "Argument[0]", "Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask]", "value", "dfc-generated"] - ["System.Threading.Tasks", "TaskCanceledException", False, "get_Task", "()", "", "Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask]", "ReturnValue", "value", "dfc-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", False, "TaskCompletionSource", "(System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", False, "get_Task", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Threading.Tasks", "TaskCompletionSource", False, "SetFromTask", "(System.Threading.Tasks.Task)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", False, "SetResult", "(TResult)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Threading.Tasks", "TaskCompletionSource", False, "TrySetFromTask", "(System.Threading.Tasks.Task)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", False, "TrySetResult", "(TResult)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", False, "get_Task", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Threading.Tasks", "TaskExtensions", False, "Unwrap", "(System.Threading.Tasks.Task)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -254,6 +260,8 @@ extensions: - ["System.Threading.Tasks", "Task", "Wait", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "Wait", "(System.TimeSpan)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "Wait", "(System.TimeSpan,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WaitAll", "(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WaitAll", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WaitAll", "(System.Threading.Tasks.Task[])", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WaitAll", "(System.Threading.Tasks.Task[],System.Int32)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WaitAll", "(System.Threading.Tasks.Task[],System.Int32,System.Threading.CancellationToken)", "summary", "df-generated"] @@ -265,7 +273,12 @@ extensions: - ["System.Threading.Tasks", "Task", "WaitAny", "(System.Threading.Tasks.Task[],System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WaitAny", "(System.Threading.Tasks.Task[],System.TimeSpan)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WhenAll", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WhenAll", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "WhenAll", "(System.Threading.Tasks.Task[])", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WhenEach", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WhenEach", "(System.Collections.Generic.IEnumerable>)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WhenEach", "(System.ReadOnlySpan>)", "summary", "df-generated"] + - ["System.Threading.Tasks", "Task", "WhenEach", "(System.Threading.Tasks.Task[])", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "Yield", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "get_CompletedSynchronously", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "get_CompletedTask", "()", "summary", "df-generated"] @@ -280,7 +293,6 @@ extensions: - ["System.Threading.Tasks", "Task", "get_IsFaulted", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "get_Status", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "Task", "get_Factory", "()", "summary", "df-generated"] - - ["System.Threading.Tasks", "TaskAsyncEnumerableExtensions", "ToBlockingEnumerable", "(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCanceledException", "TaskCanceledException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCanceledException", "TaskCanceledException", "(System.String)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCanceledException", "TaskCanceledException", "(System.String,System.Exception)", "summary", "df-generated"] @@ -289,6 +301,7 @@ extensions: - ["System.Threading.Tasks", "TaskCompletionSource", "SetCanceled", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "SetException", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "SetException", "(System.Exception)", "summary", "df-generated"] + - ["System.Threading.Tasks", "TaskCompletionSource", "SetFromTask", "(System.Threading.Tasks.Task)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "SetResult", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "TaskCompletionSource", "(System.Object)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "TaskCompletionSource", "(System.Threading.Tasks.TaskCreationOptions)", "summary", "df-generated"] @@ -296,6 +309,7 @@ extensions: - ["System.Threading.Tasks", "TaskCompletionSource", "TrySetCanceled", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "TrySetException", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "TrySetException", "(System.Exception)", "summary", "df-generated"] + - ["System.Threading.Tasks", "TaskCompletionSource", "TrySetFromTask", "(System.Threading.Tasks.Task)", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "TrySetResult", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "SetCanceled", "()", "summary", "df-generated"] - ["System.Threading.Tasks", "TaskCompletionSource", "SetCanceled", "(System.Threading.CancellationToken)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Threading.model.yml b/csharp/ql/lib/ext/generated/System.Threading.model.yml index 4453e4b157b..3872a5ad238 100644 --- a/csharp/ql/lib/ext/generated/System.Threading.model.yml +++ b/csharp/ql/lib/ext/generated/System.Threading.model.yml @@ -90,6 +90,9 @@ extensions: - ["System.Threading", "AsyncFlowControl", "op_Equality", "(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)", "summary", "df-generated"] - ["System.Threading", "AsyncFlowControl", "op_Inequality", "(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl)", "summary", "df-generated"] - ["System.Threading", "AsyncLocal", "AsyncLocal", "(System.Action>)", "summary", "df-generated"] + - ["System.Threading", "AsyncLocalValueChangedArgs", "get_CurrentValue", "()", "summary", "df-generated"] + - ["System.Threading", "AsyncLocalValueChangedArgs", "get_PreviousValue", "()", "summary", "df-generated"] + - ["System.Threading", "AsyncLocalValueChangedArgs", "get_ThreadContextChanged", "()", "summary", "df-generated"] - ["System.Threading", "AutoResetEvent", "AutoResetEvent", "(System.Boolean)", "summary", "df-generated"] - ["System.Threading", "Barrier", "AddParticipant", "()", "summary", "df-generated"] - ["System.Threading", "Barrier", "AddParticipants", "(System.Int32)", "summary", "df-generated"] @@ -138,6 +141,7 @@ extensions: - ["System.Threading", "CancellationTokenSource", "CancellationTokenSource", "(System.Int32)", "summary", "df-generated"] - ["System.Threading", "CancellationTokenSource", "CancellationTokenSource", "(System.TimeSpan)", "summary", "df-generated"] - ["System.Threading", "CancellationTokenSource", "CancellationTokenSource", "(System.TimeSpan,System.TimeProvider)", "summary", "df-generated"] + - ["System.Threading", "CancellationTokenSource", "CreateLinkedTokenSource", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System.Threading", "CancellationTokenSource", "CreateLinkedTokenSource", "(System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading", "CancellationTokenSource", "CreateLinkedTokenSource", "(System.Threading.CancellationToken,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System.Threading", "CancellationTokenSource", "CreateLinkedTokenSource", "(System.Threading.CancellationToken[])", "summary", "df-generated"] @@ -199,22 +203,30 @@ extensions: - ["System.Threading", "Interlocked", "And", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "And", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "And", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "CompareExchange", "(System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.Double,System.Double,System.Double)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "CompareExchange", "(System.Int16,System.Int16,System.Int16)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.Object,System.Object,System.Object)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "CompareExchange", "(System.SByte,System.SByte,System.SByte)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "CompareExchange", "(System.UInt16,System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.UInt32,System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "CompareExchange", "(System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Decrement", "(System.Int32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Decrement", "(System.Int64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Decrement", "(System.UInt32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Decrement", "(System.UInt64)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "Exchange", "(System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.Double,System.Double)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "Exchange", "(System.Int16,System.Int16)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.Object,System.Object)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "Exchange", "(System.SByte,System.SByte)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System.Threading", "Interlocked", "Exchange", "(System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Exchange", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System.Threading", "Interlocked", "Increment", "(System.Int32)", "summary", "df-generated"] @@ -530,6 +542,7 @@ extensions: - ["System.Threading", "Volatile", "Read", "(System.UInt64)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Read", "(System.UIntPtr)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Read", "(T)", "summary", "df-generated"] + - ["System.Threading", "Volatile", "ReadBarrier", "()", "summary", "df-generated"] - ["System.Threading", "Volatile", "Write", "(System.Boolean,System.Boolean)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Write", "(System.Byte,System.Byte)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Write", "(System.Double,System.Double)", "summary", "df-generated"] @@ -541,6 +554,7 @@ extensions: - ["System.Threading", "Volatile", "Write", "(System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Write", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System.Threading", "Volatile", "Write", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System.Threading", "Volatile", "WriteBarrier", "()", "summary", "df-generated"] - ["System.Threading", "WaitHandle", "Close", "()", "summary", "df-generated"] - ["System.Threading", "WaitHandle", "Dispose", "()", "summary", "df-generated"] - ["System.Threading", "WaitHandle", "Dispose", "(System.Boolean)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Web.model.yml b/csharp/ql/lib/ext/generated/System.Web.model.yml index af5047a0fc2..dae72600f49 100644 --- a/csharp/ql/lib/ext/generated/System.Web.model.yml +++ b/csharp/ql/lib/ext/generated/System.Web.model.yml @@ -5,10 +5,6 @@ extensions: extensible: summaryModel data: - ["System.Web", "HttpUtility", False, "HtmlDecode", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.Byte[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.Byte[])", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] - - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Web", "HttpUtility", False, "UrlEncodeToBytes", "(System.String,System.Text.Encoding)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Web", "HttpUtility", False, "UrlPathEncode", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -33,6 +29,8 @@ extensions: - ["System.Web", "HttpUtility", "UrlDecodeToBytes", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Web", "HttpUtility", "UrlDecodeToBytes", "(System.String)", "summary", "df-generated"] - ["System.Web", "HttpUtility", "UrlDecodeToBytes", "(System.String,System.Text.Encoding)", "summary", "df-generated"] + - ["System.Web", "HttpUtility", "UrlEncodeToBytes", "(System.Byte[])", "summary", "df-generated"] + - ["System.Web", "HttpUtility", "UrlEncodeToBytes", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"] - ["System.Web", "HttpUtility", "UrlEncodeUnicode", "(System.String)", "summary", "df-generated"] - ["System.Web", "HttpUtility", "UrlEncodeUnicodeToBytes", "(System.String)", "summary", "df-generated"] - ["System.Web", "IHtmlString", "ToHtmlString", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml b/csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml index 08d398b9f02..ca0ebdd81bd 100644 --- a/csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xaml.Permissions.model.yml @@ -9,6 +9,7 @@ extensions: - ["System.Xaml.Permissions", "XamlAccessLevel", "PrivateAccessTo", "(System.String)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlAccessLevel", "PrivateAccessTo", "(System.Type)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlAccessLevel", "get_AssemblyAccessToAssemblyName", "()", "summary", "df-generated"] + - ["System.Xaml.Permissions", "XamlAccessLevel", "get_PrivateAccessToTypeName", "()", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlLoadPermission", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlLoadPermission", "FromXml", "(System.Security.SecurityElement)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlLoadPermission", "GetHashCode", "()", "summary", "df-generated"] @@ -19,3 +20,4 @@ extensions: - ["System.Xaml.Permissions", "XamlLoadPermission", "XamlLoadPermission", "(System.Collections.Generic.IEnumerable)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlLoadPermission", "XamlLoadPermission", "(System.Security.Permissions.PermissionState)", "summary", "df-generated"] - ["System.Xaml.Permissions", "XamlLoadPermission", "XamlLoadPermission", "(System.Xaml.Permissions.XamlAccessLevel)", "summary", "df-generated"] + - ["System.Xaml.Permissions", "XamlLoadPermission", "get_AllowedAccess", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml b/csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml index df262abbd71..664da0ce88a 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.Linq.model.yml @@ -244,6 +244,7 @@ extensions: - ["System.Xml.Linq", "XNode", "get_EqualityComparer", "()", "summary", "df-generated"] - ["System.Xml.Linq", "XNode", "get_PreviousNode", "()", "summary", "df-generated"] - ["System.Xml.Linq", "XNodeDocumentOrderComparer", "Compare", "(System.Xml.Linq.XNode,System.Xml.Linq.XNode)", "summary", "df-generated"] + - ["System.Xml.Linq", "XNodeEqualityComparer", "Equals", "(System.Object,System.Object)", "summary", "df-generated"] - ["System.Xml.Linq", "XNodeEqualityComparer", "Equals", "(System.Xml.Linq.XNode,System.Xml.Linq.XNode)", "summary", "df-generated"] - ["System.Xml.Linq", "XNodeEqualityComparer", "GetHashCode", "(System.Xml.Linq.XNode)", "summary", "df-generated"] - ["System.Xml.Linq", "XObject", "HasLineInfo", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml b/csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml index 270fa553dac..98ddebacb8c 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.Schema.model.yml @@ -44,6 +44,7 @@ extensions: - ["System.Xml.Schema", "XmlSchemaDatatype", True, "ChangeType", "(System.Object,System.Type,System.Xml.IXmlNamespaceResolver)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaDatatype", True, "ParseValue", "(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaDatatype", True, "ParseValue", "(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaDatatype", True, "ParseValue", "(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaDatatype", True, "ParseValue", "(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaElement", False, "get_ElementSchemaType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaElement", False, "get_ElementType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -86,6 +87,7 @@ extensions: - ["System.Xml.Schema", "XmlSchemaSet", False, "Reprocess", "(System.Xml.Schema.XmlSchema)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", False, "Reprocess", "(System.Xml.Schema.XmlSchema)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", False, "Schemas", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaSet", False, "Schemas", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", False, "XmlSchemaSet", "(System.Xml.XmlNameTable)", "", "Argument[0]", "Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable]", "value", "dfc-generated"] - ["System.Xml.Schema", "XmlSchemaSet", False, "get_NameTable", "()", "", "Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Schema", "XmlSchemaSet", False, "set_XmlResolver", "(System.Xml.XmlResolver)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -109,7 +111,11 @@ extensions: - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateAttribute", "(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateAttribute", "(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateAttribute", "(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo)", "", "Argument[this]", "Argument[2]", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateElement", "(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String)", "", "Argument[this]", "Argument[2]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateEndElement", "(System.Xml.Schema.XmlSchemaInfo)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Xml.Schema", "XmlSchemaValidator", False, "ValidateEndElement", "(System.Xml.Schema.XmlSchemaInfo)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -206,7 +212,6 @@ extensions: - ["System.Xml.Schema", "XmlSchemaSet", "Contains", "(System.String)", "summary", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", "Contains", "(System.Xml.Schema.XmlSchema)", "summary", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", "RemoveRecursive", "(System.Xml.Schema.XmlSchema)", "summary", "df-generated"] - - ["System.Xml.Schema", "XmlSchemaSet", "Schemas", "(System.String)", "summary", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", "add_ValidationEventHandler", "(System.Xml.Schema.ValidationEventHandler)", "summary", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", "get_Count", "()", "summary", "df-generated"] - ["System.Xml.Schema", "XmlSchemaSet", "get_GlobalAttributes", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml b/csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml index 58e5596f6d2..ce23169ea56 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.Serialization.model.yml @@ -89,6 +89,7 @@ extensions: - ["System.Xml.Serialization", "XmlSchemaExporter", False, "ExportMembersMapping", "(System.Xml.Serialization.XmlMembersMapping)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSchemaExporter", False, "ExportMembersMapping", "(System.Xml.Serialization.XmlMembersMapping,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSchemaExporter", False, "ExportTypeMapping", "(System.Xml.Serialization.XmlMembersMapping)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSchemaExporter", False, "ExportTypeMapping", "(System.Xml.Serialization.XmlMembersMapping)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSchemaExporter", False, "ExportTypeMapping", "(System.Xml.Serialization.XmlTypeMapping)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSchemaExporter", False, "XmlSchemaExporter", "(System.Xml.Serialization.XmlSchemas)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSchemaProviderAttribute", False, "XmlSchemaProviderAttribute", "(System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Xml.Serialization.XmlSchemaProviderAttribute._methodName]", "value", "dfc-generated"] @@ -110,24 +111,37 @@ extensions: - ["System.Xml.Serialization", "XmlSerializationReader", False, "CollapseWhitespace", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "EnsureArrayIndex", "(System.Array,System.Int32,System.Type)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "GetTarget", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "GetXsiType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadElementQualifiedName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadNullableQualifiedName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadNullableString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReference", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencedElement", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencedElement", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencedElement", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencedElement", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.Boolean,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.Boolean,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.Boolean,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadReferencingElement", "(System.String,System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadSerializable", "(System.Xml.Serialization.IXmlSerializable)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadSerializable", "(System.Xml.Serialization.IXmlSerializable,System.Boolean)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadString", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadString", "(System.String,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadTypedPrimitive", "(System.Xml.XmlQualifiedName)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadXmlDocument", "(System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ReadXmlNode", "(System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ShrinkArray", "(System.Array,System.Int32,System.Type,System.Boolean)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToByteArrayBase64", "(System.String)", "", "Argument[0]", "ReturnValue.Element", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlNCName", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlName", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlNmToken", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlNmTokens", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlQualifiedName", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Xml.XmlQualifiedName.Name]", "value", "dfc-generated"] + - ["System.Xml.Serialization", "XmlSerializationReader", False, "ToXmlQualifiedName", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.Xml.XmlQualifiedName.Namespace]", "taint", "dfc-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "get_Document", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", False, "get_Reader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "FromByteArrayBase64", "(System.Byte[])", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -239,6 +253,8 @@ extensions: - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteReferencingElement", "(System.String,System.String,System.Object)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteReferencingElement", "(System.String,System.String,System.Object,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteReferencingElement", "(System.String,System.String,System.Object,System.Boolean)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteRpcResult", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteRpcResult", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteSerializable", "(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteSerializable", "(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", False, "WriteStartElement", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -394,19 +410,14 @@ extensions: - ["System.Xml.Serialization", "XmlSerializationReader", "FixupArrayRefs", "(System.Object)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "GetArrayLength", "(System.String,System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "GetNullAttr", "()", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "GetXsiType", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "InitCallbacks", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "InitIDs", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "IsXmlnsAttribute", "(System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ParseWsdlArrayType", "(System.Xml.XmlAttribute)", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "ReadElementQualifiedName", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ReadEndElement", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ReadNull", "()", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "ReadNullableQualifiedName", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ReadReferencedElements", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ReadTypedNull", "(System.Xml.XmlQualifiedName)", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "ReadXmlDocument", "(System.Boolean)", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "ReadXmlNode", "(System.Boolean)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "Referenced", "(System.Object)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ResolveDynamicAssembly", "(System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ToByteArrayBase64", "(System.Boolean)", "summary", "df-generated"] @@ -417,7 +428,6 @@ extensions: - ["System.Xml.Serialization", "XmlSerializationReader", "ToDateTime", "(System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ToEnum", "(System.String,System.Collections.Hashtable,System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "ToTime", "(System.String)", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationReader", "ToXmlQualifiedName", "(System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "UnknownAttribute", "(System.Object,System.Xml.XmlAttribute)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "UnknownAttribute", "(System.Object,System.Xml.XmlAttribute,System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationReader", "UnknownElement", "(System.Object,System.Xml.XmlElement)", "summary", "df-generated"] @@ -446,7 +456,6 @@ extensions: - ["System.Xml.Serialization", "XmlSerializationWriter", "WriteEndElement", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", "WriteEndElement", "(System.Object)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", "WriteReferencedElements", "()", "summary", "df-generated"] - - ["System.Xml.Serialization", "XmlSerializationWriter", "WriteRpcResult", "(System.String,System.String)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializationWriter", "WriteStartDocument", "()", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializer", "CanDeserialize", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.Xml.Serialization", "XmlSerializer", "CreateReader", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml b/csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml index f27d94e88a6..713f0d5c0f6 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.XPath.model.yml @@ -25,7 +25,7 @@ extensions: - ["System.Xml.XPath", "XPathItem", True, "get_TypedValue", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.XPath", "XPathItem", True, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.XPath", "XPathItem", True, "get_XmlType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System.Xml.XPath", "XPathNavigator", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.XPath", "XPathNavigator", False, "ToString", "()", "", "Argument[this].Property[System.Xml.XPath.XPathItem.Value]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.XPath", "XPathNavigator", True, "AppendChild", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.XPath", "XPathNavigator", True, "Clone", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.XPath", "XPathNavigator", True, "Compile", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml b/csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml index d257228897a..519dcb65574 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.Xsl.Runtime.model.yml @@ -138,6 +138,9 @@ extensions: - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "GetEarlyBoundObject", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "GetGlobalValue", "(System.Int32)", "", "Argument[this].SyntheticField[System.Xml.Xsl.Runtime.XmlQueryRuntime._globalValues].Element", "ReturnValue", "value", "dfc-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "GetNameFilter", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "ParseTagName", "(System.String,System.Int32)", "", "Argument[0]", "ReturnValue.Property[System.Xml.XmlQualifiedName.Name]", "value", "dfc-generated"] + - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "ParseTagName", "(System.String,System.String)", "", "Argument[0]", "ReturnValue.Property[System.Xml.XmlQualifiedName.Name]", "value", "dfc-generated"] + - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "ParseTagName", "(System.String,System.String)", "", "Argument[1]", "ReturnValue.Property[System.Xml.XmlQualifiedName.Namespace]", "value", "dfc-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "StartRtfConstruction", "(System.String,System.Xml.Xsl.Runtime.XmlQueryOutput)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "StartRtfConstruction", "(System.String,System.Xml.Xsl.Runtime.XmlQueryOutput)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", False, "StartSequenceConstruction", "(System.Xml.Xsl.Runtime.XmlQueryOutput)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -316,8 +319,6 @@ extensions: - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "MatchesXmlType", "(System.Xml.XPath.XPathItem,System.Int32)", "summary", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "MatchesXmlType", "(System.Xml.XPath.XPathItem,System.Xml.Schema.XmlTypeCode)", "summary", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "OnCurrentNodeChanged", "(System.Xml.XPath.XPathNavigator)", "summary", "df-generated"] - - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "ParseTagName", "(System.String,System.Int32)", "summary", "df-generated"] - - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "ParseTagName", "(System.String,System.String)", "summary", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "SendMessage", "(System.String)", "summary", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "SetGlobalValue", "(System.Int32,System.Object)", "summary", "df-generated"] - ["System.Xml.Xsl.Runtime", "XmlQueryRuntime", "ThrowException", "(System.String)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.Xml.model.yml b/csharp/ql/lib/ext/generated/System.Xml.model.yml index 8e5cd33c756..db9752525d9 100644 --- a/csharp/ql/lib/ext/generated/System.Xml.model.yml +++ b/csharp/ql/lib/ext/generated/System.Xml.model.yml @@ -186,8 +186,6 @@ extensions: - ["System.Xml", "XmlDocument", True, "CreateElement", "(System.String,System.String,System.String)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "CreateElement", "(System.String,System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "CreateEntityReference", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - - ["System.Xml", "XmlDocument", True, "CreateNavigator", "()", "", "Argument[this]", "ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source]", "value", "dfc-generated"] - - ["System.Xml", "XmlDocument", True, "CreateNavigator", "(System.Xml.XmlNode)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source]", "value", "dfc-generated"] - ["System.Xml", "XmlDocument", True, "CreateNavigator", "(System.Xml.XmlNode)", "", "Argument[this]", "ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._document]", "value", "dfc-generated"] - ["System.Xml", "XmlDocument", True, "CreateNode", "(System.String,System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "CreateNode", "(System.String,System.String,System.String)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] @@ -211,6 +209,8 @@ extensions: - ["System.Xml", "XmlDocument", True, "GetElementsByTagName", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "ImportNode", "(System.Xml.XmlNode,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "ImportNode", "(System.Xml.XmlNode,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml", "XmlDocument", True, "ReadNode", "(System.Xml.XmlReader)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System.Xml", "XmlDocument", True, "ReadNode", "(System.Xml.XmlReader)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "Save", "(System.Xml.XmlWriter)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "get_DocumentType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlDocument", True, "set_XmlResolver", "(System.Xml.XmlResolver)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -326,6 +326,8 @@ extensions: - ["System.Xml", "XmlQualifiedName", False, "ToString", "()", "", "Argument[this].Property[System.Xml.XmlQualifiedName.Namespace]", "ReturnValue", "taint", "dfc-generated"] - ["System.Xml", "XmlQualifiedName", False, "ToString", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System.Xml", "XmlQualifiedName", False, "ToString", "(System.String,System.String)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] + - ["System.Xml", "XmlQualifiedName", False, "XmlQualifiedName", "(System.String,System.String)", "", "Argument[0]", "Argument[this].Property[System.Xml.XmlQualifiedName.Name]", "value", "dfc-generated"] + - ["System.Xml", "XmlQualifiedName", False, "XmlQualifiedName", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.Xml.XmlQualifiedName.Namespace]", "value", "dfc-generated"] - ["System.Xml", "XmlReader", True, "GetAttribute", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlReader", True, "GetAttribute", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlReader", True, "GetAttribute", "(System.String,System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -456,15 +458,18 @@ extensions: - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementString", "(System.String,System.String,System.String,System.String)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteElementStringAsync", "(System.String,System.String,System.String,System.String)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteStartAttribute", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteStartAttribute", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteStartElement", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", False, "WriteStartElement", "(System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml", "XmlWriter", False, "WriteStartElement", "(System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "LookupPrefix", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteAttributes", "(System.Xml.XmlReader,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteBase64", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"] @@ -499,6 +504,7 @@ extensions: - ["System.Xml", "XmlWriter", True, "WriteStartAttributeAsync", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteStartElement", "(System.String,System.String,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteStartElement", "(System.String,System.String,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] + - ["System.Xml", "XmlWriter", True, "WriteStartElement", "(System.String,System.String,System.String)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteString", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteStringAsync", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] - ["System.Xml", "XmlWriter", True, "WriteValue", "(System.Object)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] @@ -729,7 +735,6 @@ extensions: - ["System.Xml", "XmlDocument", "CreateDefaultAttribute", "(System.String,System.String,System.String)", "summary", "df-generated"] - ["System.Xml", "XmlDocument", "GetElementById", "(System.String)", "summary", "df-generated"] - ["System.Xml", "XmlDocument", "LoadXml", "(System.String)", "summary", "df-generated"] - - ["System.Xml", "XmlDocument", "ReadNode", "(System.Xml.XmlReader)", "summary", "df-generated"] - ["System.Xml", "XmlDocument", "Save", "(System.IO.Stream)", "summary", "df-generated"] - ["System.Xml", "XmlDocument", "Save", "(System.IO.TextWriter)", "summary", "df-generated"] - ["System.Xml", "XmlDocument", "Save", "(System.String)", "summary", "df-generated"] @@ -806,7 +811,6 @@ extensions: - ["System.Xml", "XmlQualifiedName", "Equals", "(System.Object)", "summary", "df-generated"] - ["System.Xml", "XmlQualifiedName", "GetHashCode", "()", "summary", "df-generated"] - ["System.Xml", "XmlQualifiedName", "XmlQualifiedName", "(System.String)", "summary", "df-generated"] - - ["System.Xml", "XmlQualifiedName", "XmlQualifiedName", "(System.String,System.String)", "summary", "df-generated"] - ["System.Xml", "XmlQualifiedName", "get_IsEmpty", "()", "summary", "df-generated"] - ["System.Xml", "XmlQualifiedName", "op_Equality", "(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)", "summary", "df-generated"] - ["System.Xml", "XmlQualifiedName", "op_Inequality", "(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/System.model.yml b/csharp/ql/lib/ext/generated/System.model.yml index aeda575d1e3..b594d40ba1b 100644 --- a/csharp/ql/lib/ext/generated/System.model.yml +++ b/csharp/ql/lib/ext/generated/System.model.yml @@ -53,15 +53,29 @@ extensions: - ["System", "BadImageFormatException", False, "BadImageFormatException", "(System.String,System.String,System.Exception)", "", "Argument[1]", "Argument[this].SyntheticField[System.BadImageFormatException._fileName]", "value", "dfc-generated"] - ["System", "BadImageFormatException", False, "get_FileName", "()", "", "Argument[this].SyntheticField[System.BadImageFormatException._fileName]", "ReturnValue", "value", "dfc-generated"] - ["System", "BadImageFormatException", False, "get_FusionLog", "()", "", "Argument[this].SyntheticField[System.BadImageFormatException._fusionLog]", "ReturnValue", "value", "dfc-generated"] + - ["System", "BinaryData", False, "BinaryData", "(System.Byte[],System.String)", "", "Argument[1]", "Argument[this].Property[System.BinaryData.MediaType]", "value", "dfc-generated"] - ["System", "BinaryData", False, "BinaryData", "(System.ReadOnlyMemory)", "", "Argument[0]", "Argument[this].SyntheticField[System.BinaryData._bytes]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "BinaryData", "(System.ReadOnlyMemory,System.String)", "", "Argument[1]", "Argument[this].Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "BinaryData", "(System.String,System.String)", "", "Argument[1]", "Argument[this].Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromBytes", "(System.Byte[],System.String)", "", "Argument[1]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromBytes", "(System.ReadOnlyMemory,System.String)", "", "Argument[1]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromFile", "(System.String,System.String)", "", "Argument[1]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromStream", "(System.IO.Stream,System.String)", "", "Argument[1]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromStreamAsync", "(System.IO.Stream,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Property[System.BinaryData.MediaType]", "value", "dfc-generated"] + - ["System", "BinaryData", False, "FromString", "(System.String,System.String)", "", "Argument[1]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] - ["System", "BinaryData", False, "ToMemory", "()", "", "Argument[this].SyntheticField[System.BinaryData._bytes]", "ReturnValue", "value", "dfc-generated"] - ["System", "BinaryData", False, "ToMemory", "()", "", "Argument[this]", "ReturnValue", "taint", "dfc-generated"] - ["System", "BinaryData", False, "ToStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System", "BinaryData", False, "WithMediaType", "(System.String)", "", "Argument[0]", "ReturnValue.Property[System.BinaryData.MediaType]", "value", "dfc-generated"] - ["System", "CultureAwareComparer", False, "GetObjectData", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "", "Argument[this].SyntheticField[System.CultureAwareComparer._compareInfo]", "Argument[0].SyntheticField[System.Runtime.Serialization.SerializationInfo._values].Element", "value", "dfc-generated"] - ["System", "DateTime", False, "ToLocalTime", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"] - ["System", "DateTimeOffset", False, "Deconstruct", "(System.DateOnly,System.TimeOnly,System.TimeSpan)", "", "Argument[this].Property[System.DateTimeOffset.Offset]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Delegate+InvocationListEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Delegate+InvocationListEnumerator", False, "get_Current", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Delegate", False, "Combine", "(System.Delegate,System.Delegate)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "Delegate", False, "Combine", "(System.Delegate[])", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System", "Delegate", False, "Combine", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "value", "dfc-generated"] + - ["System", "Delegate", False, "CreateDelegate", "(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean)", "", "Argument[2]", "ReturnValue", "taint", "df-generated"] - ["System", "Delegate", False, "CreateDelegate", "(System.Type,System.Reflection.MethodInfo,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] - ["System", "Delegate", False, "Delegate", "(System.Object,System.String)", "", "Argument[0]", "Argument[this].SyntheticField[System.Delegate._target]", "value", "dfc-generated"] - ["System", "Delegate", False, "Delegate", "(System.Type,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"] @@ -95,15 +109,24 @@ extensions: - ["System", "GCMemoryInfo", False, "get_PauseDurations", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Half", False, "BitDecrement", "(System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "BitIncrement", "(System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "ClampNative", "(System.Half,System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "ClampNative", "(System.Half,System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "ClampNative", "(System.Half,System.Half,System.Half)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "ConvertToInteger", "(System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "ConvertToIntegerNative", "(System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "CreateChecked", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "CreateSaturating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "CreateTruncating", "(TOther)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MaxMagnitudeNumber", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MaxMagnitudeNumber", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "MaxNative", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "MaxNative", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MaxNumber", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MaxNumber", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MinMagnitudeNumber", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MinMagnitudeNumber", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "MinNative", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "Half", False, "MinNative", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MinNumber", "(System.Half,System.Half)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "MinNumber", "(System.Half,System.Half)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "Half", False, "ToString", "(System.IFormatProvider)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] @@ -173,6 +196,7 @@ extensions: - ["System", "IntPtr", False, "MinMagnitudeNumber", "(System.IntPtr,System.IntPtr)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "IntPtr", False, "MinNumber", "(System.IntPtr,System.IntPtr)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "IntPtr", False, "MinNumber", "(System.IntPtr,System.IntPtr)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System", "IntPtr", False, "MultiplyAddEstimate", "(System.IntPtr,System.IntPtr,System.IntPtr)", "", "Argument[2]", "ReturnValue", "taint", "dfc-generated"] - ["System", "IntPtr", False, "System.Numerics.IAdditionOperators.op_Addition", "(System.IntPtr,System.IntPtr)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System", "IntPtr", False, "System.Numerics.IAdditionOperators.op_Addition", "(System.IntPtr,System.IntPtr)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] - ["System", "IntPtr", False, "System.Numerics.IAdditionOperators.op_CheckedAddition", "(System.IntPtr,System.IntPtr)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] @@ -210,6 +234,7 @@ extensions: - ["System", "Memory", False, "ToArray", "()", "", "Argument[this].Property[System.Memory`1.Span].Element", "ReturnValue.Element", "value", "dfc-generated"] - ["System", "Memory", False, "ToString", "()", "", "Argument[this].SyntheticField[System.Memory`1._object]", "ReturnValue", "value", "dfc-generated"] - ["System", "Memory", False, "TryCopyTo", "(System.Memory)", "", "Argument[this].Property[System.Memory`1.Span].Element", "Argument[0].Property[System.Memory`1.Span].Element", "value", "dfc-generated"] + - ["System", "MemoryExtensions+SpanSplitEnumerator", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", False, "TryWriteInterpolatedStringHandler", "(System.Int32,System.Int32,System.Span,System.Boolean)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", False, "TryWriteInterpolatedStringHandler", "(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", False, "TryWriteInterpolatedStringHandler", "(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"] @@ -236,15 +261,111 @@ extensions: - ["System", "MemoryExtensions", False, "CommonPrefixLength", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "CommonPrefixLength", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "CommonPrefixLength", "(System.Span,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Contains", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Contains", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "ContainsAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "CopyTo", "(T[],System.Memory)", "", "Argument[0].Element", "Argument[1].Property[System.Memory`1.Span].Element", "value", "dfc-generated"] - ["System", "MemoryExtensions", False, "CopyTo", "(T[],System.Span)", "", "Argument[0].Element", "Argument[1].Element", "value", "dfc-generated"] + - ["System", "MemoryExtensions", False, "Count", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Count", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Count", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Count", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "EndsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "EndsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "EndsWith", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "EndsWith", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "EnumerateLines", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue.SyntheticField[System.Text.SpanLineEnumerator._remaining]", "value", "dfc-generated"] - ["System", "MemoryExtensions", False, "EnumerateRunes", "(System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOf", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOf", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOf", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOf", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "IndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOf", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOf", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOf", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOf", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAny", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "LastIndexOfAnyExcept", "(System.ReadOnlySpan,T,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[3]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Replace", "(System.ReadOnlySpan,System.Span,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Replace", "(System.ReadOnlySpan,System.Span,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[2]", "Argument[4]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Replace", "(System.Span,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Replace", "(System.Span,T,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[3]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SequenceCompareTo", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SequenceCompareTo", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "SequenceEqual", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "SequenceEqual", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "SequenceEqual", "(System.Span,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "Sort", "(System.Span,System.Comparison)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "dfc-generated"] - ["System", "MemoryExtensions", False, "Sort", "(System.Span,System.Comparison)", "", "Argument[0].Element", "Argument[1].Parameter[1]", "value", "dfc-generated"] + - ["System", "MemoryExtensions", False, "Split", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Split", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Split", "(System.ReadOnlySpan,T)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "Split", "(System.ReadOnlySpan,T)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SplitAny", "(System.ReadOnlySpan,System.Buffers.SearchValues)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SplitAny", "(System.ReadOnlySpan,System.Buffers.SearchValues)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SplitAny", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "SplitAny", "(System.ReadOnlySpan,System.ReadOnlySpan)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "StartsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "StartsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "StartsWith", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[0]", "Argument[2]", "taint", "df-generated"] + - ["System", "MemoryExtensions", False, "StartsWith", "(System.ReadOnlySpan,T,System.Collections.Generic.IEqualityComparer)", "", "Argument[1]", "Argument[2]", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "Trim", "(System.Memory)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System", "MemoryExtensions", False, "Trim", "(System.ReadOnlyMemory)", "", "Argument[0].SyntheticField[System.ReadOnlyMemory`1._object]", "ReturnValue.SyntheticField[System.ReadOnlyMemory`1._object]", "value", "dfc-generated"] - ["System", "MemoryExtensions", False, "Trim", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue.Element", "value", "dfc-generated"] @@ -349,8 +470,6 @@ extensions: - ["System", "String", False, "Create", "(System.IFormatProvider,System.Span,System.Runtime.CompilerServices.DefaultInterpolatedStringHandler)", "", "Argument[2]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "Create", "(System.Int32,TState,System.Buffers.SpanAction)", "", "Argument[1]", "Argument[2].Parameter[1]", "value", "dfc-generated"] - ["System", "String", False, "EnumerateRunes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - - ["System", "String", False, "Format", "(System.IFormatProvider,System.Text.CompositeFormat,System.Object[])", "", "Argument[1].Property[System.Text.CompositeFormat.Format]", "ReturnValue", "value", "dfc-generated"] - - ["System", "String", False, "Format", "(System.IFormatProvider,System.Text.CompositeFormat,System.ReadOnlySpan)", "", "Argument[1].Property[System.Text.CompositeFormat.Format]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "Format", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0,TArg1,TArg2)", "", "Argument[1].Property[System.Text.CompositeFormat.Format]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "Format", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0,TArg1)", "", "Argument[1].Property[System.Text.CompositeFormat.Format]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "Format", "(System.IFormatProvider,System.Text.CompositeFormat,TArg0)", "", "Argument[1].Property[System.Text.CompositeFormat.Format]", "ReturnValue", "value", "dfc-generated"] @@ -360,9 +479,13 @@ extensions: - ["System", "String", False, "Replace", "(System.String,System.String,System.StringComparison)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "ReplaceLineEndings", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "ReplaceLineEndings", "(System.String)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System", "String", False, "Trim", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System", "String", False, "TrimEnd", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] + - ["System", "String", False, "TrimStart", "(System.ReadOnlySpan)", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System", "String", False, "TryParse", "(System.String,System.IFormatProvider,System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "StringNormalizationExtensions", False, "Normalize", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "StringNormalizationExtensions", False, "Normalize", "(System.String,System.Text.NormalizationForm)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] + - ["System", "StringNormalizationExtensions", False, "TryNormalize", "(System.ReadOnlySpan,System.Span,System.Int32,System.Text.NormalizationForm)", "", "Argument[0].Element", "Argument[1].Element", "value", "dfc-generated"] - ["System", "TimeSpan", False, "op_UnaryPlus", "(System.TimeSpan)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "TimeZone", True, "GetDaylightChanges", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "TimeZone", True, "get_DaylightName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -505,6 +628,7 @@ extensions: - ["System", "Type", True, "GetGenericArguments", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Type", True, "GetGenericTypeDefinition", "()", "", "Argument[this]", "ReturnValue", "value", "dfc-generated"] - ["System", "Type", True, "GetInterface", "(System.String,System.Boolean)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] + - ["System", "Type", True, "GetInterfaceMap", "(System.Type)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Type", True, "GetInterfaces", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Type", True, "GetMethodImpl", "(System.String,System.Int32,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] - ["System", "Type", True, "GetMethodImpl", "(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"] @@ -582,6 +706,7 @@ extensions: - ["System", "UIntPtr", False, "MinMagnitudeNumber", "(System.UIntPtr,System.UIntPtr)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] - ["System", "UIntPtr", False, "MinNumber", "(System.UIntPtr,System.UIntPtr)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "UIntPtr", False, "MinNumber", "(System.UIntPtr,System.UIntPtr)", "", "Argument[1]", "ReturnValue", "value", "dfc-generated"] + - ["System", "UIntPtr", False, "MultiplyAddEstimate", "(System.UIntPtr,System.UIntPtr,System.UIntPtr)", "", "Argument[2]", "ReturnValue", "taint", "dfc-generated"] - ["System", "UIntPtr", False, "System.Numerics.IAdditionOperators.op_Addition", "(System.UIntPtr,System.UIntPtr)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] - ["System", "UIntPtr", False, "System.Numerics.IAdditionOperators.op_Addition", "(System.UIntPtr,System.UIntPtr)", "", "Argument[1]", "ReturnValue", "taint", "dfc-generated"] - ["System", "UIntPtr", False, "System.Numerics.IAdditionOperators.op_CheckedAddition", "(System.UIntPtr,System.UIntPtr)", "", "Argument[0]", "ReturnValue", "taint", "dfc-generated"] @@ -590,6 +715,7 @@ extensions: - ["System", "UnhandledExceptionEventArgs", False, "UnhandledExceptionEventArgs", "(System.Object,System.Boolean)", "", "Argument[0]", "Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception]", "value", "dfc-generated"] - ["System", "UnhandledExceptionEventArgs", False, "get_ExceptionObject", "()", "", "Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception]", "ReturnValue", "value", "dfc-generated"] - ["System", "UnitySerializationHolder", False, "UnitySerializationHolder", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"] + - ["System", "Uri", False, "EscapeDataString", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "taint", "dfc-generated"] - ["System", "Uri", False, "EscapeDataString", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Uri", False, "EscapeString", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Uri", False, "EscapeUriString", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] @@ -603,6 +729,9 @@ extensions: - ["System", "Uri", False, "TryCreate", "(System.Uri,System.String,System.Uri)", "", "Argument[1]", "ReturnValue.SyntheticField[System.Uri._string]", "value", "dfc-generated"] - ["System", "Uri", False, "TryCreate", "(System.Uri,System.Uri,System.Uri)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"] - ["System", "Uri", False, "TryCreate", "(System.Uri,System.Uri,System.Uri)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"] + - ["System", "Uri", False, "TryEscapeDataString", "(System.ReadOnlySpan,System.Span,System.Int32)", "", "Argument[0].Element", "Argument[1].Element", "value", "dfc-generated"] + - ["System", "Uri", False, "TryUnescapeDataString", "(System.ReadOnlySpan,System.Span,System.Int32)", "", "Argument[0].Element", "Argument[1].Element", "value", "dfc-generated"] + - ["System", "Uri", False, "UnescapeDataString", "(System.ReadOnlySpan)", "", "Argument[0].Element", "ReturnValue", "taint", "dfc-generated"] - ["System", "Uri", False, "UnescapeDataString", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "dfc-generated"] - ["System", "Uri", False, "Uri", "(System.String,System.UriCreationOptions)", "", "Argument[0]", "Argument[this].SyntheticField[System.Uri._string]", "value", "dfc-generated"] - ["System", "Uri", False, "Uri", "(System.Uri,System.String)", "", "Argument[1]", "Argument[this].SyntheticField[System.Uri._string]", "value", "dfc-generated"] @@ -960,31 +1089,25 @@ extensions: - ["System", "BadImageFormatException", "BadImageFormatException", "(System.String)", "summary", "df-generated"] - ["System", "BadImageFormatException", "BadImageFormatException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System", "BinaryData", "BinaryData", "(System.Byte[])", "summary", "df-generated"] - - ["System", "BinaryData", "BinaryData", "(System.Byte[],System.String)", "summary", "df-generated"] - ["System", "BinaryData", "BinaryData", "(System.Object,System.Text.Json.JsonSerializerOptions,System.Type)", "summary", "df-generated"] - ["System", "BinaryData", "BinaryData", "(System.Object,System.Text.Json.Serialization.JsonSerializerContext,System.Type)", "summary", "df-generated"] - - ["System", "BinaryData", "BinaryData", "(System.ReadOnlyMemory,System.String)", "summary", "df-generated"] - ["System", "BinaryData", "BinaryData", "(System.String)", "summary", "df-generated"] - - ["System", "BinaryData", "BinaryData", "(System.String,System.String)", "summary", "df-generated"] - ["System", "BinaryData", "Equals", "(System.Object)", "summary", "df-generated"] - ["System", "BinaryData", "FromBytes", "(System.Byte[])", "summary", "df-generated"] - - ["System", "BinaryData", "FromBytes", "(System.Byte[],System.String)", "summary", "df-generated"] - ["System", "BinaryData", "FromBytes", "(System.ReadOnlyMemory)", "summary", "df-generated"] - - ["System", "BinaryData", "FromBytes", "(System.ReadOnlyMemory,System.String)", "summary", "df-generated"] + - ["System", "BinaryData", "FromFile", "(System.String)", "summary", "df-generated"] + - ["System", "BinaryData", "FromFileAsync", "(System.String,System.String,System.Threading.CancellationToken)", "summary", "df-generated"] + - ["System", "BinaryData", "FromFileAsync", "(System.String,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System", "BinaryData", "FromObjectAsJson", "(T,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System", "BinaryData", "FromObjectAsJson", "(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "summary", "df-generated"] - ["System", "BinaryData", "FromStream", "(System.IO.Stream)", "summary", "df-generated"] - - ["System", "BinaryData", "FromStream", "(System.IO.Stream,System.String)", "summary", "df-generated"] - - ["System", "BinaryData", "FromStreamAsync", "(System.IO.Stream,System.String,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System", "BinaryData", "FromStreamAsync", "(System.IO.Stream,System.Threading.CancellationToken)", "summary", "df-generated"] - ["System", "BinaryData", "FromString", "(System.String)", "summary", "df-generated"] - - ["System", "BinaryData", "FromString", "(System.String,System.String)", "summary", "df-generated"] - ["System", "BinaryData", "GetHashCode", "()", "summary", "df-generated"] - ["System", "BinaryData", "ToArray", "()", "summary", "df-generated"] - ["System", "BinaryData", "ToObjectFromJson", "(System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"] - ["System", "BinaryData", "ToObjectFromJson", "(System.Text.Json.Serialization.Metadata.JsonTypeInfo)", "summary", "df-generated"] - ["System", "BinaryData", "ToString", "()", "summary", "df-generated"] - - ["System", "BinaryData", "WithMediaType", "(System.String)", "summary", "df-generated"] - ["System", "BinaryData", "get_Empty", "()", "summary", "df-generated"] - ["System", "BinaryData", "get_IsEmpty", "()", "summary", "df-generated"] - ["System", "BinaryData", "get_Length", "()", "summary", "df-generated"] @@ -1130,6 +1253,7 @@ extensions: - ["System", "Byte", "MinMagnitude", "(System.Byte,System.Byte)", "summary", "df-generated"] - ["System", "Byte", "MinMagnitudeNumber", "(System.Byte,System.Byte)", "summary", "df-generated"] - ["System", "Byte", "MinNumber", "(System.Byte,System.Byte)", "summary", "df-generated"] + - ["System", "Byte", "MultiplyAddEstimate", "(System.Byte,System.Byte,System.Byte)", "summary", "df-generated"] - ["System", "Byte", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Byte", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Byte", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -1299,6 +1423,7 @@ extensions: - ["System", "Char", "MaxMagnitudeNumber", "(System.Char,System.Char)", "summary", "df-generated"] - ["System", "Char", "MinMagnitude", "(System.Char,System.Char)", "summary", "df-generated"] - ["System", "Char", "MinMagnitudeNumber", "(System.Char,System.Char)", "summary", "df-generated"] + - ["System", "Char", "MultiplyAddEstimate", "(System.Char,System.Char,System.Char)", "summary", "df-generated"] - ["System", "Char", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Char", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Char", "Parse", "(System.String)", "summary", "df-generated"] @@ -1418,12 +1543,14 @@ extensions: - ["System", "Console", "Write", "(System.Int32)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.Int64)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.Object)", "summary", "df-generated"] + - ["System", "Console", "Write", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.Single)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.String)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.String,System.Object)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.String,System.Object,System.Object)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.String,System.Object,System.Object,System.Object)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.String,System.Object[])", "summary", "df-generated"] + - ["System", "Console", "Write", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.UInt32)", "summary", "df-generated"] - ["System", "Console", "Write", "(System.UInt64)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "()", "summary", "df-generated"] @@ -1436,12 +1563,14 @@ extensions: - ["System", "Console", "WriteLine", "(System.Int32)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.Int64)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.Object)", "summary", "df-generated"] + - ["System", "Console", "WriteLine", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.Single)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.String)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.String,System.Object)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.String,System.Object,System.Object)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.String,System.Object,System.Object,System.Object)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.String,System.Object[])", "summary", "df-generated"] + - ["System", "Console", "WriteLine", "(System.String,System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.UInt32)", "summary", "df-generated"] - ["System", "Console", "WriteLine", "(System.UInt64)", "summary", "df-generated"] - ["System", "Console", "add_CancelKeyPress", "(System.ConsoleCancelEventHandler)", "summary", "df-generated"] @@ -1478,10 +1607,12 @@ extensions: - ["System", "Convert", "TryToHexString", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] - ["System", "Convert", "TryToHexStringLower", "(System.ReadOnlySpan,System.Span,System.Int32)", "summary", "df-generated"] - ["System", "CultureAwareComparer", "Compare", "(System.String,System.String)", "summary", "df-generated"] - - ["System", "CultureAwareComparer", "CultureAwareComparer", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] + - ["System", "CultureAwareComparer", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "CultureAwareComparer", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System", "CultureAwareComparer", "Equals", "(System.ReadOnlySpan,System.String)", "summary", "df-generated"] - ["System", "CultureAwareComparer", "Equals", "(System.String,System.String)", "summary", "df-generated"] - ["System", "CultureAwareComparer", "GetHashCode", "()", "summary", "df-generated"] + - ["System", "CultureAwareComparer", "GetHashCode", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "CultureAwareComparer", "GetHashCode", "(System.String)", "summary", "df-generated"] - ["System", "DBNull", "GetTypeCode", "()", "summary", "df-generated"] - ["System", "DBNull", "ToBoolean", "(System.IFormatProvider)", "summary", "df-generated"] @@ -1786,6 +1917,8 @@ extensions: - ["System", "Decimal", "Compare", "(System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "CompareTo", "(System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "CompareTo", "(System.Object)", "summary", "df-generated"] + - ["System", "Decimal", "ConvertToInteger", "(System.Decimal)", "summary", "df-generated"] + - ["System", "Decimal", "ConvertToIntegerNative", "(System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "CopySign", "(System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "CreateChecked", "(TOther)", "summary", "df-generated"] - ["System", "Decimal", "CreateSaturating", "(TOther)", "summary", "df-generated"] @@ -1839,6 +1972,7 @@ extensions: - ["System", "Decimal", "MinMagnitudeNumber", "(System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "MinNumber", "(System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "Multiply", "(System.Decimal,System.Decimal)", "summary", "df-generated"] + - ["System", "Decimal", "MultiplyAddEstimate", "(System.Decimal,System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "Negate", "(System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "OnDeserialization", "(System.Object)", "summary", "df-generated"] - ["System", "Decimal", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -1931,8 +2065,8 @@ extensions: - ["System", "Decimal", "op_Subtraction", "(System.Decimal,System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "op_UnaryNegation", "(System.Decimal)", "summary", "df-generated"] - ["System", "Decimal", "op_UnaryPlus", "(System.Decimal)", "summary", "df-generated"] + - ["System", "Delegate+InvocationListEnumerator", "MoveNext", "()", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Object,System.Reflection.MethodInfo)", "summary", "df-generated"] - - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean)", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Object,System.String)", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Object,System.String,System.Boolean)", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Object,System.String,System.Boolean,System.Boolean)", "summary", "df-generated"] @@ -1940,8 +2074,10 @@ extensions: - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Type,System.String)", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Type,System.String,System.Boolean)", "summary", "df-generated"] - ["System", "Delegate", "CreateDelegate", "(System.Type,System.Type,System.String,System.Boolean,System.Boolean)", "summary", "df-generated"] + - ["System", "Delegate", "EnumerateInvocationList", "(TDelegate)", "summary", "df-generated"] - ["System", "Delegate", "Equals", "(System.Object)", "summary", "df-generated"] - ["System", "Delegate", "GetHashCode", "()", "summary", "df-generated"] + - ["System", "Delegate", "get_HasSingleTarget", "()", "summary", "df-generated"] - ["System", "Delegate", "get_Method", "()", "summary", "df-generated"] - ["System", "Delegate", "op_Equality", "(System.Delegate,System.Delegate)", "summary", "df-generated"] - ["System", "Delegate", "op_Inequality", "(System.Delegate,System.Delegate)", "summary", "df-generated"] @@ -1968,8 +2104,11 @@ extensions: - ["System", "Double", "Cbrt", "(System.Double)", "summary", "df-generated"] - ["System", "Double", "Ceiling", "(System.Double)", "summary", "df-generated"] - ["System", "Double", "Clamp", "(System.Double,System.Double,System.Double)", "summary", "df-generated"] + - ["System", "Double", "ClampNative", "(System.Double,System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "CompareTo", "(System.Double)", "summary", "df-generated"] - ["System", "Double", "CompareTo", "(System.Object)", "summary", "df-generated"] + - ["System", "Double", "ConvertToInteger", "(System.Double)", "summary", "df-generated"] + - ["System", "Double", "ConvertToIntegerNative", "(System.Double)", "summary", "df-generated"] - ["System", "Double", "CopySign", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "Cos", "(System.Double)", "summary", "df-generated"] - ["System", "Double", "CosPi", "(System.Double)", "summary", "df-generated"] @@ -2026,11 +2165,14 @@ extensions: - ["System", "Double", "Max", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MaxMagnitude", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MaxMagnitudeNumber", "(System.Double,System.Double)", "summary", "df-generated"] + - ["System", "Double", "MaxNative", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MaxNumber", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "Min", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MinMagnitude", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MinMagnitudeNumber", "(System.Double,System.Double)", "summary", "df-generated"] + - ["System", "Double", "MinNative", "(System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "MinNumber", "(System.Double,System.Double)", "summary", "df-generated"] + - ["System", "Double", "MultiplyAddEstimate", "(System.Double,System.Double,System.Double)", "summary", "df-generated"] - ["System", "Double", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Double", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Double", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -2196,6 +2338,7 @@ extensions: - ["System", "Enum", "TryParse", "(System.ReadOnlySpan,TEnum)", "summary", "df-generated"] - ["System", "Enum", "TryParse", "(System.String,System.Boolean,TEnum)", "summary", "df-generated"] - ["System", "Enum", "TryParse", "(System.String,TEnum)", "summary", "df-generated"] + - ["System", "Environment+ProcessCpuUsage", "get_TotalTime", "()", "summary", "df-generated"] - ["System", "Environment", "Exit", "(System.Int32)", "summary", "df-generated"] - ["System", "Environment", "FailFast", "(System.String)", "summary", "df-generated"] - ["System", "Environment", "FailFast", "(System.String,System.Exception)", "summary", "df-generated"] @@ -2210,6 +2353,7 @@ extensions: - ["System", "Environment", "SetEnvironmentVariable", "(System.String,System.String)", "summary", "df-generated"] - ["System", "Environment", "SetEnvironmentVariable", "(System.String,System.String,System.EnvironmentVariableTarget)", "summary", "df-generated"] - ["System", "Environment", "get_CommandLine", "()", "summary", "df-generated"] + - ["System", "Environment", "get_CpuUsage", "()", "summary", "df-generated"] - ["System", "Environment", "get_CurrentManagedThreadId", "()", "summary", "df-generated"] - ["System", "Environment", "get_HasShutdownStarted", "()", "summary", "df-generated"] - ["System", "Environment", "get_Is64BitOperatingSystem", "()", "summary", "df-generated"] @@ -2305,6 +2449,8 @@ extensions: - ["System", "GenericUriParser", "GenericUriParser", "(System.GenericUriParserOptions)", "summary", "df-generated"] - ["System", "Guid", "CompareTo", "(System.Guid)", "summary", "df-generated"] - ["System", "Guid", "CompareTo", "(System.Object)", "summary", "df-generated"] + - ["System", "Guid", "CreateVersion7", "()", "summary", "df-generated"] + - ["System", "Guid", "CreateVersion7", "(System.DateTimeOffset)", "summary", "df-generated"] - ["System", "Guid", "Equals", "(System.Guid)", "summary", "df-generated"] - ["System", "Guid", "Equals", "(System.Object)", "summary", "df-generated"] - ["System", "Guid", "GetHashCode", "()", "summary", "df-generated"] @@ -2338,6 +2484,9 @@ extensions: - ["System", "Guid", "TryParseExact", "(System.String,System.String,System.Guid)", "summary", "df-generated"] - ["System", "Guid", "TryWriteBytes", "(System.Span)", "summary", "df-generated"] - ["System", "Guid", "TryWriteBytes", "(System.Span,System.Boolean,System.Int32)", "summary", "df-generated"] + - ["System", "Guid", "get_AllBitsSet", "()", "summary", "df-generated"] + - ["System", "Guid", "get_Variant", "()", "summary", "df-generated"] + - ["System", "Guid", "get_Version", "()", "summary", "df-generated"] - ["System", "Guid", "op_Equality", "(System.Guid,System.Guid)", "summary", "df-generated"] - ["System", "Guid", "op_GreaterThan", "(System.Guid,System.Guid)", "summary", "df-generated"] - ["System", "Guid", "op_GreaterThanOrEqual", "(System.Guid,System.Guid)", "summary", "df-generated"] @@ -2414,6 +2563,7 @@ extensions: - ["System", "Half", "MaxMagnitude", "(System.Half,System.Half)", "summary", "df-generated"] - ["System", "Half", "Min", "(System.Half,System.Half)", "summary", "df-generated"] - ["System", "Half", "MinMagnitude", "(System.Half,System.Half)", "summary", "df-generated"] + - ["System", "Half", "MultiplyAddEstimate", "(System.Half,System.Half,System.Half)", "summary", "df-generated"] - ["System", "Half", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Half", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Half", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -2594,6 +2744,7 @@ extensions: - ["System", "Int128", "IsZero", "(System.Int128)", "summary", "df-generated"] - ["System", "Int128", "LeadingZeroCount", "(System.Int128)", "summary", "df-generated"] - ["System", "Int128", "Log2", "(System.Int128)", "summary", "df-generated"] + - ["System", "Int128", "MultiplyAddEstimate", "(System.Int128,System.Int128,System.Int128)", "summary", "df-generated"] - ["System", "Int128", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int128", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int128", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -2708,6 +2859,7 @@ extensions: - ["System", "Int16", "MinMagnitude", "(System.Int16,System.Int16)", "summary", "df-generated"] - ["System", "Int16", "MinMagnitudeNumber", "(System.Int16,System.Int16)", "summary", "df-generated"] - ["System", "Int16", "MinNumber", "(System.Int16,System.Int16)", "summary", "df-generated"] + - ["System", "Int16", "MultiplyAddEstimate", "(System.Int16,System.Int16,System.Int16)", "summary", "df-generated"] - ["System", "Int16", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int16", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int16", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -2794,6 +2946,7 @@ extensions: - ["System", "Int16", "get_Radix", "()", "summary", "df-generated"] - ["System", "Int16", "get_Zero", "()", "summary", "df-generated"] - ["System", "Int32", "Abs", "(System.Int32)", "summary", "df-generated"] + - ["System", "Int32", "BigMul", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Int32", "Clamp", "(System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Int32", "CompareTo", "(System.Int32)", "summary", "df-generated"] - ["System", "Int32", "CompareTo", "(System.Object)", "summary", "df-generated"] @@ -2836,6 +2989,7 @@ extensions: - ["System", "Int32", "MinMagnitude", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Int32", "MinMagnitudeNumber", "(System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Int32", "MinNumber", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System", "Int32", "MultiplyAddEstimate", "(System.Int32,System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Int32", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int32", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int32", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] @@ -2913,6 +3067,7 @@ extensions: - ["System", "Int32", "get_Radix", "()", "summary", "df-generated"] - ["System", "Int32", "get_Zero", "()", "summary", "df-generated"] - ["System", "Int64", "Abs", "(System.Int64)", "summary", "df-generated"] + - ["System", "Int64", "BigMul", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Int64", "Clamp", "(System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Int64", "CompareTo", "(System.Int64)", "summary", "df-generated"] - ["System", "Int64", "CompareTo", "(System.Object)", "summary", "df-generated"] @@ -2955,6 +3110,7 @@ extensions: - ["System", "Int64", "MinMagnitude", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Int64", "MinMagnitudeNumber", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Int64", "MinNumber", "(System.Int64,System.Int64)", "summary", "df-generated"] + - ["System", "Int64", "MultiplyAddEstimate", "(System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Int64", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int64", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Int64", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -3185,7 +3341,10 @@ extensions: - ["System", "Math", "Atan", "(System.Double)", "summary", "df-generated"] - ["System", "Math", "Atanh", "(System.Double)", "summary", "df-generated"] - ["System", "Math", "BigMul", "(System.Int32,System.Int32)", "summary", "df-generated"] + - ["System", "Math", "BigMul", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "Math", "BigMul", "(System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] + - ["System", "Math", "BigMul", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System", "Math", "BigMul", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "Math", "BigMul", "(System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "Math", "BitDecrement", "(System.Double)", "summary", "df-generated"] - ["System", "Math", "BitIncrement", "(System.Double)", "summary", "df-generated"] @@ -3335,6 +3494,8 @@ extensions: - ["System", "Memory", "get_IsEmpty", "()", "summary", "df-generated"] - ["System", "Memory", "get_Length", "()", "summary", "df-generated"] - ["System", "Memory", "get_Span", "()", "summary", "df-generated"] + - ["System", "MemoryExtensions+SpanSplitEnumerator", "MoveNext", "()", "summary", "df-generated"] + - ["System", "MemoryExtensions+SpanSplitEnumerator", "get_Current", "()", "summary", "df-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", "AppendFormatted", "(System.Object,System.Int32,System.String)", "summary", "df-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", "AppendFormatted", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "MemoryExtensions+TryWriteInterpolatedStringHandler", "AppendFormatted", "(System.ReadOnlySpan,System.Int32,System.String)", "summary", "df-generated"] @@ -3395,6 +3556,7 @@ extensions: - ["System", "MemoryExtensions", "Count", "(System.Span,T)", "summary", "df-generated"] - ["System", "MemoryExtensions", "EndsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.StringComparison)", "summary", "df-generated"] - ["System", "MemoryExtensions", "EndsWith", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System", "MemoryExtensions", "EndsWith", "(System.ReadOnlySpan,T)", "summary", "df-generated"] - ["System", "MemoryExtensions", "EndsWith", "(System.Span,System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "MemoryExtensions", "EnumerateLines", "(System.Span)", "summary", "df-generated"] - ["System", "MemoryExtensions", "EnumerateRunes", "(System.Span)", "summary", "df-generated"] @@ -3476,6 +3638,7 @@ extensions: - ["System", "MemoryExtensions", "SplitAny", "(System.ReadOnlySpan,System.Span,System.ReadOnlySpan,System.StringSplitOptions)", "summary", "df-generated"] - ["System", "MemoryExtensions", "StartsWith", "(System.ReadOnlySpan,System.ReadOnlySpan,System.StringComparison)", "summary", "df-generated"] - ["System", "MemoryExtensions", "StartsWith", "(System.ReadOnlySpan,System.ReadOnlySpan)", "summary", "df-generated"] + - ["System", "MemoryExtensions", "StartsWith", "(System.ReadOnlySpan,T)", "summary", "df-generated"] - ["System", "MemoryExtensions", "StartsWith", "(System.Span,System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "MemoryExtensions", "ToLower", "(System.ReadOnlySpan,System.Span,System.Globalization.CultureInfo)", "summary", "df-generated"] - ["System", "MemoryExtensions", "ToLowerInvariant", "(System.ReadOnlySpan,System.Span)", "summary", "df-generated"] @@ -3577,9 +3740,12 @@ extensions: - ["System", "OperationCanceledException", "OperationCanceledException", "(System.String)", "summary", "df-generated"] - ["System", "OperationCanceledException", "OperationCanceledException", "(System.String,System.Exception)", "summary", "df-generated"] - ["System", "OrdinalComparer", "Compare", "(System.String,System.String)", "summary", "df-generated"] + - ["System", "OrdinalComparer", "Create", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "OrdinalComparer", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System", "OrdinalComparer", "Equals", "(System.ReadOnlySpan,System.String)", "summary", "df-generated"] - ["System", "OrdinalComparer", "Equals", "(System.String,System.String)", "summary", "df-generated"] - ["System", "OrdinalComparer", "GetHashCode", "()", "summary", "df-generated"] + - ["System", "OrdinalComparer", "GetHashCode", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "OrdinalComparer", "GetHashCode", "(System.String)", "summary", "df-generated"] - ["System", "OutOfMemoryException", "OutOfMemoryException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] - ["System", "OutOfMemoryException", "OutOfMemoryException", "(System.String)", "summary", "df-generated"] @@ -3637,6 +3803,7 @@ extensions: - ["System", "ReadOnlyMemory", "get_Span", "()", "summary", "df-generated"] - ["System", "ReadOnlySpan+Enumerator", "MoveNext", "()", "summary", "df-generated"] - ["System", "ReadOnlySpan+Enumerator", "get_Current", "()", "summary", "df-generated"] + - ["System", "ReadOnlySpan", "CastUp", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "ReadOnlySpan", "Equals", "(System.Object)", "summary", "df-generated"] - ["System", "ReadOnlySpan", "GetHashCode", "()", "summary", "df-generated"] - ["System", "ReadOnlySpan", "ReadOnlySpan", "(System.Void*,System.Int32)", "summary", "df-generated"] @@ -3712,6 +3879,7 @@ extensions: - ["System", "SByte", "MinMagnitude", "(System.SByte,System.SByte)", "summary", "df-generated"] - ["System", "SByte", "MinMagnitudeNumber", "(System.SByte,System.SByte)", "summary", "df-generated"] - ["System", "SByte", "MinNumber", "(System.SByte,System.SByte)", "summary", "df-generated"] + - ["System", "SByte", "MultiplyAddEstimate", "(System.SByte,System.SByte,System.SByte)", "summary", "df-generated"] - ["System", "SByte", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "SByte", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "SByte", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -3818,8 +3986,11 @@ extensions: - ["System", "Single", "Cbrt", "(System.Single)", "summary", "df-generated"] - ["System", "Single", "Ceiling", "(System.Single)", "summary", "df-generated"] - ["System", "Single", "Clamp", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] + - ["System", "Single", "ClampNative", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "CompareTo", "(System.Object)", "summary", "df-generated"] - ["System", "Single", "CompareTo", "(System.Single)", "summary", "df-generated"] + - ["System", "Single", "ConvertToInteger", "(System.Single)", "summary", "df-generated"] + - ["System", "Single", "ConvertToIntegerNative", "(System.Single)", "summary", "df-generated"] - ["System", "Single", "CopySign", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "Cos", "(System.Single)", "summary", "df-generated"] - ["System", "Single", "CosPi", "(System.Single)", "summary", "df-generated"] @@ -3876,11 +4047,14 @@ extensions: - ["System", "Single", "Max", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MaxMagnitude", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MaxMagnitudeNumber", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System", "Single", "MaxNative", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MaxNumber", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "Min", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MinMagnitude", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MinMagnitudeNumber", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System", "Single", "MinNative", "(System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "MinNumber", "(System.Single,System.Single)", "summary", "df-generated"] + - ["System", "Single", "MultiplyAddEstimate", "(System.Single,System.Single,System.Single)", "summary", "df-generated"] - ["System", "Single", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Single", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Single", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -4108,6 +4282,8 @@ extensions: - ["System", "StringComparer", "get_InvariantCultureIgnoreCase", "()", "summary", "df-generated"] - ["System", "StringComparer", "get_Ordinal", "()", "summary", "df-generated"] - ["System", "StringComparer", "get_OrdinalIgnoreCase", "()", "summary", "df-generated"] + - ["System", "StringNormalizationExtensions", "GetNormalizedLength", "(System.ReadOnlySpan,System.Text.NormalizationForm)", "summary", "df-generated"] + - ["System", "StringNormalizationExtensions", "IsNormalized", "(System.ReadOnlySpan,System.Text.NormalizationForm)", "summary", "df-generated"] - ["System", "StringNormalizationExtensions", "IsNormalized", "(System.String)", "summary", "df-generated"] - ["System", "StringNormalizationExtensions", "IsNormalized", "(System.String,System.Text.NormalizationForm)", "summary", "df-generated"] - ["System", "SystemException", "SystemException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"] @@ -4206,11 +4382,22 @@ extensions: - ["System", "TimeSpan", "Equals", "(System.TimeSpan)", "summary", "df-generated"] - ["System", "TimeSpan", "Equals", "(System.TimeSpan,System.TimeSpan)", "summary", "df-generated"] - ["System", "TimeSpan", "FromDays", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromDays", "(System.Int32)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromDays", "(System.Int32,System.Int32,System.Int64,System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromHours", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromHours", "(System.Int32)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromHours", "(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromMicroseconds", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromMicroseconds", "(System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromMilliseconds", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromMilliseconds", "(System.Int64)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromMilliseconds", "(System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromMinutes", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromMinutes", "(System.Int64)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromMinutes", "(System.Int64,System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromSeconds", "(System.Double)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromSeconds", "(System.Int64)", "summary", "df-generated"] + - ["System", "TimeSpan", "FromSeconds", "(System.Int64,System.Int64,System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "FromTicks", "(System.Int64)", "summary", "df-generated"] - ["System", "TimeSpan", "GetHashCode", "()", "summary", "df-generated"] - ["System", "TimeSpan", "Multiply", "(System.Double)", "summary", "df-generated"] @@ -4421,7 +4608,6 @@ extensions: - ["System", "Type", "GetGenericParameterConstraints", "()", "summary", "df-generated"] - ["System", "Type", "GetHashCode", "()", "summary", "df-generated"] - ["System", "Type", "GetInterface", "(System.String)", "summary", "df-generated"] - - ["System", "Type", "GetInterfaceMap", "(System.Type)", "summary", "df-generated"] - ["System", "Type", "GetMember", "(System.String)", "summary", "df-generated"] - ["System", "Type", "GetMember", "(System.String,System.Reflection.BindingFlags)", "summary", "df-generated"] - ["System", "Type", "GetMember", "(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags)", "summary", "df-generated"] @@ -4598,6 +4784,7 @@ extensions: - ["System", "UInt128", "IsZero", "(System.UInt128)", "summary", "df-generated"] - ["System", "UInt128", "LeadingZeroCount", "(System.UInt128)", "summary", "df-generated"] - ["System", "UInt128", "Log2", "(System.UInt128)", "summary", "df-generated"] + - ["System", "UInt128", "MultiplyAddEstimate", "(System.UInt128,System.UInt128,System.UInt128)", "summary", "df-generated"] - ["System", "UInt128", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt128", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt128", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -4712,6 +4899,7 @@ extensions: - ["System", "UInt16", "MinMagnitude", "(System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System", "UInt16", "MinMagnitudeNumber", "(System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System", "UInt16", "MinNumber", "(System.UInt16,System.UInt16)", "summary", "df-generated"] + - ["System", "UInt16", "MultiplyAddEstimate", "(System.UInt16,System.UInt16,System.UInt16)", "summary", "df-generated"] - ["System", "UInt16", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt16", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt16", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -4797,6 +4985,7 @@ extensions: - ["System", "UInt16", "get_Radix", "()", "summary", "df-generated"] - ["System", "UInt16", "get_Zero", "()", "summary", "df-generated"] - ["System", "UInt32", "Abs", "(System.UInt32)", "summary", "df-generated"] + - ["System", "UInt32", "BigMul", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System", "UInt32", "Clamp", "(System.UInt32,System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System", "UInt32", "CompareTo", "(System.Object)", "summary", "df-generated"] - ["System", "UInt32", "CompareTo", "(System.UInt32)", "summary", "df-generated"] @@ -4839,6 +5028,7 @@ extensions: - ["System", "UInt32", "MinMagnitude", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System", "UInt32", "MinMagnitudeNumber", "(System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System", "UInt32", "MinNumber", "(System.UInt32,System.UInt32)", "summary", "df-generated"] + - ["System", "UInt32", "MultiplyAddEstimate", "(System.UInt32,System.UInt32,System.UInt32)", "summary", "df-generated"] - ["System", "UInt32", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt32", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt32", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -4924,6 +5114,7 @@ extensions: - ["System", "UInt32", "get_Radix", "()", "summary", "df-generated"] - ["System", "UInt32", "get_Zero", "()", "summary", "df-generated"] - ["System", "UInt64", "Abs", "(System.UInt64)", "summary", "df-generated"] + - ["System", "UInt64", "BigMul", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "UInt64", "Clamp", "(System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "UInt64", "CompareTo", "(System.Object)", "summary", "df-generated"] - ["System", "UInt64", "CompareTo", "(System.UInt64)", "summary", "df-generated"] @@ -4966,6 +5157,7 @@ extensions: - ["System", "UInt64", "MinMagnitude", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "UInt64", "MinMagnitudeNumber", "(System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "UInt64", "MinNumber", "(System.UInt64,System.UInt64)", "summary", "df-generated"] + - ["System", "UInt64", "MultiplyAddEstimate", "(System.UInt64,System.UInt64,System.UInt64)", "summary", "df-generated"] - ["System", "UInt64", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt64", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "UInt64", "Parse", "(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider)", "summary", "df-generated"] @@ -5168,6 +5360,7 @@ extensions: - ["System", "Uri", "CheckSecurity", "()", "summary", "df-generated"] - ["System", "Uri", "Compare", "(System.Uri,System.Uri,System.UriComponents,System.UriFormat,System.StringComparison)", "summary", "df-generated"] - ["System", "Uri", "Equals", "(System.Object)", "summary", "df-generated"] + - ["System", "Uri", "Equals", "(System.Uri)", "summary", "df-generated"] - ["System", "Uri", "Escape", "()", "summary", "df-generated"] - ["System", "Uri", "FromHex", "(System.Char)", "summary", "df-generated"] - ["System", "Uri", "GetHashCode", "()", "summary", "df-generated"] @@ -5303,6 +5496,8 @@ extensions: - ["System", "Version", "Equals", "(System.Object)", "summary", "df-generated"] - ["System", "Version", "Equals", "(System.Version)", "summary", "df-generated"] - ["System", "Version", "GetHashCode", "()", "summary", "df-generated"] + - ["System", "Version", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] + - ["System", "Version", "Parse", "(System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] - ["System", "Version", "Parse", "(System.ReadOnlySpan)", "summary", "df-generated"] - ["System", "Version", "Parse", "(System.String)", "summary", "df-generated"] - ["System", "Version", "ToString", "()", "summary", "df-generated"] @@ -5313,6 +5508,8 @@ extensions: - ["System", "Version", "TryFormat", "(System.Span,System.Int32)", "summary", "df-generated"] - ["System", "Version", "TryFormat", "(System.Span,System.Int32,System.Int32)", "summary", "df-generated"] - ["System", "Version", "TryFormat", "(System.Span,System.Int32,System.ReadOnlySpan,System.IFormatProvider)", "summary", "df-generated"] + - ["System", "Version", "TryParse", "(System.ReadOnlySpan,System.IFormatProvider,System.Version)", "summary", "df-generated"] + - ["System", "Version", "TryParse", "(System.ReadOnlySpan,System.Version)", "summary", "df-generated"] - ["System", "Version", "TryParse", "(System.ReadOnlySpan,System.Version)", "summary", "df-generated"] - ["System", "Version", "TryParse", "(System.String,System.Version)", "summary", "df-generated"] - ["System", "Version", "Version", "(System.Int32,System.Int32)", "summary", "df-generated"] diff --git a/csharp/ql/lib/ext/generated/TestExclusionListTasks.model.yml b/csharp/ql/lib/ext/generated/TestExclusionListTasks.model.yml deleted file mode 100644 index 432bb448ca9..00000000000 --- a/csharp/ql/lib/ext/generated/TestExclusionListTasks.model.yml +++ /dev/null @@ -1,7 +0,0 @@ -# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT. -extensions: - - addsTo: - pack: codeql/csharp-all - extensible: neutralModel - data: - - ["TestExclusionListTasks", "PatchExclusionListInApks", "Execute", "()", "summary", "df-generated"] diff --git a/csharp/ql/lib/qlpack.yml b/csharp/ql/lib/qlpack.yml index 2f8a154c73f..bfa839cde60 100644 --- a/csharp/ql/lib/qlpack.yml +++ b/csharp/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-all -version: 5.0.1-dev +version: 5.1.1-dev groups: csharp dbscheme: semmlecode.csharp.dbscheme extractor: csharp diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/BasicBlocks.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/BasicBlocks.qll index eb375dc4450..9e548838ade 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/BasicBlocks.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/BasicBlocks.qll @@ -202,6 +202,29 @@ final class BasicBlock extends BasicBlocksImpl::BasicBlock { */ BasicBlock getImmediateDominator() { result = super.getImmediateDominator() } + /** + * Holds if the edge with successor type `s` out of this basic block is a + * dominating edge for `dominated`. + * + * That is, all paths reaching `dominated` from the entry point basic + * block must go through the `s` edge out of this basic block. + * + * Edge dominance is similar to node dominance except it concerns edges + * instead of nodes: A basic block is dominated by a _basic block_ `bb` if it + * can only be reached through `bb` and dominated by an _edge_ `e` if it can + * only be reached through `e`. + * + * Note that where all basic blocks (except the entry basic block) are + * strictly dominated by at least one basic block, a basic block may not be + * dominated by any edge. If an edge dominates a basic block `bb`, then + * both endpoints of the edge dominates `bb`. The converse is not the case, + * as there may be multiple paths between the endpoints with none of them + * dominating. + */ + predicate edgeDominates(BasicBlock dominated, ControlFlow::SuccessorType s) { + super.edgeDominates(dominated, s) + } + /** * Holds if this basic block strictly post-dominates basic block `bb`. * @@ -296,11 +319,14 @@ final class JoinBlockPredecessor extends BasicBlock, BasicBlocksImpl::JoinPredec * control flow. */ final class ConditionBlock extends BasicBlock, BasicBlocksImpl::ConditionBasicBlock { - predicate immediatelyControls(BasicBlock succ, ConditionalSuccessor s) { - super.immediatelyControls(succ, s) + /** DEPRECATED: Use `edgeDominates` instead. */ + deprecated predicate immediatelyControls(BasicBlock succ, ConditionalSuccessor s) { + this.getASuccessor(s) = succ and + BasicBlocksImpl::dominatingEdge(this, succ) } - predicate controls(BasicBlock controlled, ConditionalSuccessor s) { - super.controls(controlled, s) + /** DEPRECATED: Use `edgeDominates` instead. */ + deprecated predicate controls(BasicBlock controlled, ConditionalSuccessor s) { + super.edgeDominates(controlled, s) } } diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowElement.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowElement.qll index 9fb450cd56d..5649f43b881 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowElement.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/ControlFlowElement.qll @@ -225,6 +225,6 @@ class ControlFlowElement extends ExprOrStmtParent, @control_flow_element { this.controlsBlockSplit(controlled, s, cb) or cb.getLastNode() = this.getAControlFlowNode() and - cb.controls(controlled, s) + cb.edgeDominates(controlled, s) } } diff --git a/csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll b/csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll index 0984d0ac41b..184317b07bd 100644 --- a/csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll +++ b/csharp/ql/lib/semmle/code/csharp/controlflow/internal/PreSsa.qll @@ -90,7 +90,7 @@ module PreSsa { BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() } - class ExitBasicBlock extends BasicBlock { + private class ExitBasicBlock extends BasicBlock { ExitBasicBlock() { scopeLast(_, this.getLastElement(), _) } } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll index 37eab10238b..f17317af83b 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/SSA.qll @@ -345,7 +345,7 @@ module Ssa { * - The read of `this.Field` on line 11 is a last read of the phi node * between lines 9 and 10. */ - final AssignableRead getALastRead() { result = this.getALastReadAtNode(_) } + deprecated final AssignableRead getALastRead() { result = this.getALastReadAtNode(_) } /** * Gets a last read of the source variable underlying this SSA definition at @@ -375,7 +375,7 @@ module Ssa { * - The read of `this.Field` on line 11 is a last read of the phi node * between lines 9 and 10. */ - final AssignableRead getALastReadAtNode(ControlFlow::Node cfn) { + deprecated final AssignableRead getALastReadAtNode(ControlFlow::Node cfn) { SsaImpl::lastReadSameVar(this, cfn) and result.getAControlFlowNode() = cfn } diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll index e39d26d80b2..ec1b5a0188e 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/BaseSSA.qll @@ -55,8 +55,6 @@ module BaseSsa { BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() } - class ExitBasicBlock extends BasicBlock, ControlFlow::BasicBlocks::ExitBlock { } - class SourceVariable = PreSsa::SimpleLocalScopeVariable; predicate variableWrite(BasicBlock bb, int i, SourceVariable v, boolean certain) { diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowDispatch.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowDispatch.qll index e17bff75915..9ba96154820 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowDispatch.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowDispatch.qll @@ -364,7 +364,7 @@ class NonDelegateDataFlowCall extends DataFlowCall, TNonDelegateCall { DispatchCall getDispatchCall() { result = dc } pragma[nomagic] - private predicate hasSourceTarget() { dc.getADynamicTarget().fromSource() } + private predicate hasSourceTarget() { dc.getAStaticTarget().fromSource() } pragma[nomagic] private FlowSummary::SummarizedCallable getASummarizedCallableTarget() { diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll index e3e9ef4e86b..d8c57d4a3c1 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/DataFlowPrivate.qll @@ -2080,6 +2080,18 @@ class CaptureNode extends NodeImpl, TCaptureNode { override string toStringImpl() { result = cn.toString() } } +/** + * Holds if a property has accessors declared in multiple locations, and where + * all accessors have at least one declaration without a body. + * This can happen if both a "real" and a "stub" implementation is included in the + * same database (which is the case for .NET Runtime). + */ +private predicate hasAutoImplementation(Property p) { + forex(Accessor a | a = p.getAnAccessor() | + strictcount(getASourceLocation(a)) > count(a.getBody()) + ) +} + /** A field or a property. */ class FieldOrProperty extends Assignable, Modifiable { FieldOrProperty() { @@ -2100,6 +2112,8 @@ class FieldOrProperty extends Assignable, Modifiable { p.isAutoImplementedReadOnly() or p.getDeclaringType() instanceof AnonymousClass + or + hasAutoImplementation(p) ) or p.fromLibrary() diff --git a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll index 00665d836e1..bccadc5fee0 100644 --- a/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll +++ b/csharp/ql/lib/semmle/code/csharp/dataflow/internal/SsaImpl.qll @@ -17,8 +17,6 @@ private module SsaInput implements SsaImplCommon::InputSig { BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() } - class ExitBasicBlock extends BasicBlock, ControlFlow::BasicBlocks::ExitBlock { } - class SourceVariable = Ssa::SourceVariable; /** @@ -784,7 +782,9 @@ private predicate adjacentDefReachesUncertainRead( /** Same as `lastRefRedef`, but skips uncertain reads. */ pragma[nomagic] -private predicate lastRefSkipUncertainReads(Definition def, SsaInput::BasicBlock bb, int i) { +deprecated private predicate lastRefSkipUncertainReads( + Definition def, SsaInput::BasicBlock bb, int i +) { Impl::lastRef(def, bb, i) and not SsaInput::variableRead(bb, i, def.getSourceVariable(), false) or @@ -794,6 +794,15 @@ private predicate lastRefSkipUncertainReads(Definition def, SsaInput::BasicBlock ) } +pragma[nomagic] +deprecated predicate lastReadSameVar(Definition def, ControlFlow::Node cfn) { + exists(ControlFlow::BasicBlock bb, int i | + lastRefSkipUncertainReads(def, bb, i) and + variableReadActual(bb, i, _) and + cfn = bb.getNode(i) + ) +} + cached private module Cached { cached @@ -957,15 +966,6 @@ private module Cached { ) } - cached - predicate lastReadSameVar(Definition def, ControlFlow::Node cfn) { - exists(ControlFlow::BasicBlock bb, int i | - lastRefSkipUncertainReads(def, bb, i) and - variableReadActual(bb, i, _) and - cfn = bb.getNode(i) - ) - } - cached Definition uncertainWriteDefinitionInput(UncertainWriteDefinition def) { Impl::uncertainWriteDefinitionInput(def, result) @@ -1119,7 +1119,7 @@ private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInpu exists(ConditionBlock conditionBlock, ControlFlow::SuccessorTypes::ConditionalSuccessor s | guard.getAControlFlowNode() = conditionBlock.getLastNode() and s.getValue() = branch and - conditionBlock.controls(bb, s) + conditionBlock.edgeDominates(bb, s) ) } diff --git a/csharp/ql/src/CHANGELOG.md b/csharp/ql/src/CHANGELOG.md index 90e6d1c825d..3818028925a 100644 --- a/csharp/ql/src/CHANGELOG.md +++ b/csharp/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 ### Minor Analysis Improvements diff --git a/csharp/ql/src/change-notes/released/1.0.17.md b/csharp/ql/src/change-notes/released/1.0.17.md new file mode 100644 index 00000000000..4180b2c20f2 --- /dev/null +++ b/csharp/ql/src/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/csharp/ql/src/codeql-pack.release.yml b/csharp/ql/src/codeql-pack.release.yml index 25c58f4113f..a88f1245e14 100644 --- a/csharp/ql/src/codeql-pack.release.yml +++ b/csharp/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/csharp/ql/src/qlpack.yml b/csharp/ql/src/qlpack.yml index ac10cfe753a..846fa2dd51a 100644 --- a/csharp/ql/src/qlpack.yml +++ b/csharp/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/csharp-queries -version: 1.0.17-dev +version: 1.0.18-dev groups: - csharp - queries diff --git a/csharp/ql/test/library-tests/controlflow/graph/Condition.ql b/csharp/ql/test/library-tests/controlflow/graph/Condition.ql index 4cb815016c4..25de07e9d5b 100644 --- a/csharp/ql/test/library-tests/controlflow/graph/Condition.ql +++ b/csharp/ql/test/library-tests/controlflow/graph/Condition.ql @@ -4,7 +4,8 @@ import ControlFlow query predicate conditionBlock( BasicBlocks::ConditionBlock cb, BasicBlock controlled, boolean testIsTrue ) { - cb.controls(controlled, any(SuccessorTypes::ConditionalSuccessor s | testIsTrue = s.getValue())) + cb.edgeDominates(controlled, + any(SuccessorTypes::ConditionalSuccessor s | testIsTrue = s.getValue())) } ControlFlow::Node successor(ControlFlow::Node node, boolean kind) { diff --git a/csharp/ql/test/library-tests/dataflow/library/FlowSummaries.expected b/csharp/ql/test/library-tests/dataflow/library/FlowSummaries.expected index 7fd85f03b05..a336988a713 100644 --- a/csharp/ql/test/library-tests/dataflow/library/FlowSummaries.expected +++ b/csharp/ql/test/library-tests/dataflow/library/FlowSummaries.expected @@ -1687,6 +1687,7 @@ summary | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| Microsoft.AspNetCore.WebUtilities;BufferedReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;BufferedReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -1700,6 +1701,7 @@ summary | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingReadStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -1711,6 +1713,7 @@ summary | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | Microsoft.AspNetCore.WebUtilities;FileBufferingWriteStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -1837,16 +1840,30 @@ summary | Microsoft.Extensions.Caching.Memory;MemoryCacheOptions;get_Value;();Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Caching.Memory;PostEvictionCallbackRegistration;set_EvictionCallback;(Microsoft.Extensions.Caching.Memory.PostEvictionDelegate);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Caching.Memory;PostEvictionDelegate;BeginInvoke;(System.Object,System.Object,Microsoft.Extensions.Caching.Memory.EvictionReason,System.Object,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationProvider;CommandLineConfigurationProvider;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Args];value;dfc-generated | +| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;EnvironmentVariablesConfigurationProvider;(System.String);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider._prefix];value;dfc-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;ToString;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider._prefix];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.Ini;IniConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Read;(System.IO.Stream);Argument[0];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];taint;dfc-generated | +| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Read;(System.IO.Stream);Argument[0];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];taint;dfc-generated | +| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.Json;JsonConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.Json;JsonStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationSource;set_IgnoreCondition;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration.Memory;MemoryConfigurationProvider;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | Microsoft.Extensions.Configuration.Memory;MemoryConfigurationProvider;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | Microsoft.Extensions.Configuration.Memory;MemoryConfigurationProvider;MemoryConfigurationProvider;(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration.Memory;MemoryConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.UserSecrets;PathHelper;GetSecretsPathFromSecretsId;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration.UserSecrets;UserSecretsIdAttribute;UserSecretsIdAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.UserSecretsId];value;dfc-generated | +| Microsoft.Extensions.Configuration.Xml;XmlConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlDocumentDecryptor;CreateDecryptingXmlReader;(System.IO.Stream,System.Xml.XmlReaderSettings);Argument[0];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Configuration.Xml;XmlDocumentDecryptor;DecryptDocumentAndCreateXmlReader;(System.Xml.XmlDocument);Argument[0].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationProvider;Read;(System.IO.Stream,Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor);Argument[0];Argument[1];taint;df-generated | +| Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;ChainedBuilderExtensions;AddConfiguration;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;ChainedBuilderExtensions;AddConfiguration;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.Configuration.IConfiguration,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;ChainedConfigurationProvider;(Microsoft.Extensions.Configuration.ChainedConfigurationSource);Argument[0].Property[Microsoft.Extensions.Configuration.ChainedConfigurationSource.Configuration];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ChainedConfigurationProvider._config];value;dfc-generated | @@ -1854,6 +1871,7 @@ summary | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;GetReloadToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;TryGet;(System.String,System.String);Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ChainedConfigurationProvider._config];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;get_Configuration;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ChainedConfigurationProvider._config];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;ChainedConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;CommandLineConfigurationExtensions;AddCommandLine;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[0];taint;manual | | Microsoft.Extensions.Configuration;CommandLineConfigurationExtensions;AddCommandLine;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;manual | | Microsoft.Extensions.Configuration;CommandLineConfigurationExtensions;AddCommandLine;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];ReturnValue;taint;manual | @@ -1876,10 +1894,15 @@ summary | Microsoft.Extensions.Configuration;ConfigurationBuilder;Build;();Argument[this];ReturnValue;taint;manual | | Microsoft.Extensions.Configuration;ConfigurationBuilder;get_Properties;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBuilder;get_Sources;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[1];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[2];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[3];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Configuration;ConfigurationKeyNameAttribute;ConfigurationKeyNameAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];ReturnValue.SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[this];ReturnValue;value;dfc-generated | @@ -1931,7 +1954,10 @@ summary | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileLoadExceptionHandler;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileLoadExceptionHandler;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileProvider;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;FileConfigurationProvider;FileConfigurationProvider;(Microsoft.Extensions.Configuration.FileConfigurationSource);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source];value;dfc-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;ToString;();Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source].Property[Microsoft.Extensions.Configuration.FileConfigurationSource.Path];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration;FileConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Configuration;FileConfigurationSource;EnsureDefaults;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationSource;set_OnLoadException;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;IConfiguration;GetReloadToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;IConfiguration;get_Item;(System.String);Argument[this];ReturnValue;taint;manual | @@ -1941,6 +1967,7 @@ summary | Microsoft.Extensions.Configuration;IConfigurationProvider;GetChildKeys;(System.Collections.Generic.IEnumerable,System.String);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | Microsoft.Extensions.Configuration;IConfigurationProvider;GetReloadToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;IConfigurationRoot;get_Providers;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Configuration;IConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | @@ -1962,6 +1989,8 @@ summary | Microsoft.Extensions.Configuration;KeyPerFileConfigurationBuilderExtensions;AddKeyPerFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;MemoryConfigurationBuilderExtensions;AddInMemoryCollection;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;MemoryConfigurationBuilderExtensions;AddInMemoryCollection;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable>);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;StreamConfigurationProvider;StreamConfigurationProvider;(Microsoft.Extensions.Configuration.StreamConfigurationSource);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source];value;dfc-generated | +| Microsoft.Extensions.Configuration;StreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | @@ -2043,6 +2072,7 @@ summary | Microsoft.Extensions.DependencyInjection;EncoderServiceCollectionExtensions;AddWebEncoders;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;ExceptionHandlerServiceCollectionExtensions;AddExceptionHandler;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;ExceptionHandlerServiceCollectionExtensions;AddExceptionHandler;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.DependencyInjection;FromKeyedServicesAttribute;FromKeyedServicesAttribute;(System.Object);Argument[0];Argument[this].Property[Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.Key];value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -2051,6 +2081,7 @@ summary | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddAsKeyed;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.DependencyInjection.ServiceLifetime);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddDefaultLogger;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddHttpMessageHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddHttpMessageHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[0];ReturnValue;value;hq-generated | @@ -2111,6 +2142,7 @@ summary | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RedactLoggedHeaders;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RedactLoggedHeaders;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RemoveAllLoggers;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RemoveAsKeyed;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;SetHandlerLifetime;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.TimeSpan);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;UseSocketsHttpHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;UseSocketsHttpHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | @@ -2567,7 +2599,6 @@ summary | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;PhysicalDirectoryInfo;(System.IO.DirectoryInfo);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info];value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_Name;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.DirectoryInfo.Name];ReturnValue;value;dfc-generated | -| Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_PhysicalPath;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Field[System.IO.FileSystemInfo.FullPath];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_PhysicalPath;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.FileSystemInfo.FullName];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalFileInfo;CreateReadStream;();Argument[this].Property[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.PhysicalPath];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalFileInfo;CreateReadStream;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo._info].Property[System.IO.FileSystemInfo.FullName];ReturnValue;taint;dfc-generated | @@ -2590,10 +2621,12 @@ summary | Microsoft.Extensions.FileProviders;CompositeFileProvider;get_FileProviders;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders;NotFoundDirectoryContents;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | Microsoft.Extensions.FileProviders;NotFoundDirectoryContents;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| Microsoft.Extensions.FileProviders;NotFoundFileInfo;NotFoundFileInfo;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.FileProviders.NotFoundFileInfo.Name];value;dfc-generated | | Microsoft.Extensions.FileProviders;NullChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.FileProviders;NullChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileProviders;NullChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders;NullChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;hq-generated | +| Microsoft.Extensions.FileProviders;PhysicalFileProvider;PhysicalFileProvider;(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters);Argument[0];Argument[this].Property[Microsoft.Extensions.FileProviders.PhysicalFileProvider.Root];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoBase;EnumerateFileSystemInfos;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoBase;GetDirectory;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoWrapper;EnumerateFileSystemInfos;();Argument[this];ReturnValue;taint;df-generated | @@ -2614,20 +2647,33 @@ summary | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_FullName;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_Name;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_ParentDirectory;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;LiteralPathSegment;(System.String,System.StringComparison);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Value];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.BeginsWith];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[1];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Contains];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[2];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.EndsWith];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContext;Declare;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContext;PushDataFrame;(TFrame);Argument[0];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear+FrameData;get_Stem;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;PatternContextLinear;(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Pattern];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinearInclude;Declare;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged+FrameData;get_Stem;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PatternContextRagged;(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.EndsWith];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.StartsWith];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRaggedInclude;Declare;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;IPatternContext;Declare;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;MatcherContext;MatcherContext;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase,System.StringComparison);Argument[2];Argument[this];taint;df-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal;PatternTestResult;Success;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;FilePatternMatch;(System.String,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;FilePatternMatch;(System.String,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing;InMemoryDirectoryInfo;EnumerateFileSystemInfos;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing;InMemoryDirectoryInfo;GetDirectory;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing;InMemoryDirectoryInfo;GetFile;(System.String);Argument[this];ReturnValue.SyntheticField[Microsoft.Extensions.FileSystemGlobbing.Internal.InMemoryFileInfo._parent];value;dfc-generated | @@ -2636,6 +2682,9 @@ summary | Microsoft.Extensions.FileSystemGlobbing;InMemoryDirectoryInfo;get_ParentDirectory;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing;Matcher;AddExclude;(System.String);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing;Matcher;AddInclude;(System.String);Argument[this];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;GetResultsInFullPath;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String);Argument[1];ReturnValue.Element;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable,System.Boolean);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files];value;dfc-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;ApplicationLifetime;(Microsoft.Extensions.Logging.ILogger);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;get_ApplicationStarted;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;get_ApplicationStopped;();Argument[this];ReturnValue;taint;df-generated | @@ -2656,8 +2705,10 @@ summary | Microsoft.Extensions.Hosting;GenericHostWebHostBuilderExtensions;ConfigureWebHost;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;GenericHostWebHostBuilderExtensions;ConfigureWebHost;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;Host;CreateEmptyApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args];ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];taint;dfc-generated | +| Microsoft.Extensions.Hosting;Host;CreateEmptyApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration];ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];value;dfc-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;ConfigureContainer;(Microsoft.Extensions.DependencyInjection.IServiceProviderFactory,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;HostApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args];Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];taint;dfc-generated | +| Microsoft.Extensions.Hosting;HostApplicationBuilder;HostApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration];Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];value;dfc-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;get_Configuration;();Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;get_Environment;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;get_Logging;();Argument[this];ReturnValue;taint;df-generated | @@ -2685,6 +2736,7 @@ summary | Microsoft.Extensions.Hosting;HostBuilder;UseServiceProviderFactory;(System.Func>);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;HostBuilder;UseServiceProviderFactory;(System.Func>);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Hosting;HostBuilder;UseServiceProviderFactory;(System.Func>);Argument[this];ReturnValue;value;hq-generated | +| Microsoft.Extensions.Hosting;HostBuilderContext;HostBuilderContext;(System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[Microsoft.Extensions.Hosting.HostBuilderContext.Properties];value;dfc-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | @@ -2786,7 +2838,18 @@ summary | Microsoft.Extensions.Http;IHttpMessageHandlerBuilderFilter;Configure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Localization;IResourceNamesCache;GetOrAdd;(System.String,System.Func>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Localization;ResourceNamesCache;GetOrAdd;(System.String,System.Func>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[4];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[4];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter];value;hq-generated | | Microsoft.Extensions.Logging.Abstractions;NullLogger;BeginScope;(TState);Argument[0];ReturnValue;taint;df-generated | | Microsoft.Extensions.Logging.Abstractions;NullLogger;BeginScope;(TState);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Logging.Abstractions;NullLogger;Log;(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[2];Argument[4].Parameter[0];value;dfc-generated | @@ -2810,6 +2873,7 @@ summary | Microsoft.Extensions.Logging.Abstractions;NullLoggerProvider;CreateLogger;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;ConfigurationConsoleLoggerSettings;(Microsoft.Extensions.Configuration.IConfiguration);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;Reload;();Argument[this];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Logging.Console;ConsoleFormatter;ConsoleFormatter;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name];value;dfc-generated | | Microsoft.Extensions.Logging.Console;ConsoleFormatter;Write;(Microsoft.Extensions.Logging.Abstractions.LogEntry,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter);Argument[0];Argument[2];taint;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleLoggerProvider;ConsoleLoggerProvider;(Microsoft.Extensions.Options.IOptionsMonitor,System.Collections.Generic.IEnumerable);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleLoggerProvider;CreateLogger;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -2882,6 +2946,7 @@ summary | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggerFactory,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggerFactory,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggingBuilder);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Logging;EventId;EventId;(System.Int32,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name];value;dfc-generated | | Microsoft.Extensions.Logging;EventId;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;EventLoggerFactoryExtensions;AddEventLog;(Microsoft.Extensions.Logging.ILoggerFactory);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;EventLoggerFactoryExtensions;AddEventLog;(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.EventLog.EventLogSettings);Argument[0];ReturnValue;value;dfc-generated | @@ -2998,8 +3063,21 @@ summary | Microsoft.Extensions.Logging;LoggerFactory;LoggerFactory;(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider);Argument[2];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging;LoggerFactory;LoggerFactory;(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider);Argument[3];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging;LoggerFilterOptions;get_Rules;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.Filter];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.Filter];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(Microsoft.Extensions.Logging.LogLevel,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;AddConfiguration;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;AddProvider;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.ILoggerProvider);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;ClearProviders;(Microsoft.Extensions.Logging.ILoggingBuilder);Argument[0];ReturnValue;value;dfc-generated | @@ -3008,6 +3086,7 @@ summary | Microsoft.Extensions.Logging;LoggingBuilderExtensions;Configure;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;Configure;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;SetMinimumLevel;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LogLevel);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Logging;ProviderAliasAttribute;ProviderAliasAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.ProviderAliasAttribute.Alias];value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -3016,28 +3095,92 @@ summary | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.String);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | -| Microsoft.Extensions.Options;ConfigurationChangeTokenSource;ConfigurationChangeTokenSource;(System.String,Microsoft.Extensions.Configuration.IConfiguration);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigurationChangeTokenSource;ConfigurationChangeTokenSource;(System.String,Microsoft.Extensions.Configuration.IConfiguration);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;ConfigurationChangeTokenSource;GetChangeToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureOptions`1.Action];value;hq-generated | +| Microsoft.Extensions.Options;DataAnnotationValidateOptions;DataAnnotationValidateOptions;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;IOptionsMonitor;OnChange;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;IOptionsMonitorCache;GetOrAdd;(System.String,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;NamedConfigureFromConfigurationOptions;NamedConfigureFromConfigurationOptions;(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -3065,6 +3208,8 @@ summary | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[this];ReturnValue;value;hq-generated | +| Microsoft.Extensions.Options;OptionsBuilder;OptionsBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Services];value;dfc-generated | +| Microsoft.Extensions.Options;OptionsBuilder;OptionsBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[this];ReturnValue;value;dfc-generated | @@ -3138,6 +3283,7 @@ summary | Microsoft.Extensions.Options;OptionsBuilder;Validate;(System.Func,System.String);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;Validate;(System.Func,System.String);Argument[this];ReturnValue;value;hq-generated | | Microsoft.Extensions.Options;OptionsCache;GetOrAdd;(System.String,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;OptionsFactory;Create;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[0].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[1].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[2].Element;Argument[this];taint;df-generated | @@ -3146,42 +3292,188 @@ summary | Microsoft.Extensions.Options;OptionsMonitor;OptionsMonitor;(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsMonitor;OptionsMonitor;(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache);Argument[2];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsMonitorExtensions;OnChange;(Microsoft.Extensions.Options.IOptionsMonitor,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;OptionsValidationException;OptionsValidationException;(System.String,System.Type,System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.OptionsName];value;dfc-generated | +| Microsoft.Extensions.Options;OptionsValidationException;OptionsValidationException;(System.String,System.Type,System.Collections.Generic.IEnumerable);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures];value;dfc-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_Message;();Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures].Element;ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Options;OptionsWrapper;OptionsWrapper;(TOptions);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsWrapper`1.Value];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Action];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[7];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[7];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];taint;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddError;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddError;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResult;(Microsoft.Extensions.Options.ValidateOptionsResult);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResults;(System.Collections.Generic.IEnumerable);Argument[0].Element;Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptionsResultBuilder;Build;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;CancellationChangeToken;(System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -3191,6 +3483,7 @@ summary | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action,TState);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action,TState);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Primitives;CompositeChangeToken;CompositeChangeToken;(System.Collections.Generic.IReadOnlyList);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens];value;dfc-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;dfc-generated | @@ -3203,6 +3496,8 @@ summary | Microsoft.Extensions.Primitives;IChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Primitives;IChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;hq-generated | | Microsoft.Extensions.Primitives;InplaceStringBuilder;ToString;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];value;dfc-generated | +| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String,System.Int32,System.Int32);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];value;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;Substring;(System.Int32);Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;Substring;(System.Int32,System.Int32);Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;ToString;();Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | @@ -4891,8 +5186,6 @@ summary | ServiceStack.Serialization;StringMapTypeDeserializer+PropertySerializerEntry;PropertySerializerEntry;(ServiceStack.GetMemberDelegate,ServiceStack.SetMemberDelegate,ServiceStack.Text.Common.ParseStringDelegate);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | ServiceStack.Serialization;StringMapTypeDeserializer+PropertySerializerEntry;PropertySerializerEntry;(ServiceStack.GetMemberDelegate,ServiceStack.SetMemberDelegate,ServiceStack.Text.Common.ParseStringDelegate);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | ServiceStack.Serialization;StringMapTypeDeserializer+PropertySerializerEntry;PropertySerializerEntry;(ServiceStack.GetMemberDelegate,ServiceStack.SetMemberDelegate,ServiceStack.Text.Common.ParseStringDelegate);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | -| ServiceStack.Serialization;XmlSerializerWrapper;ReadObject;(System.Xml.XmlDictionaryReader);Argument[this];ReturnValue;taint;df-generated | -| ServiceStack.Serialization;XmlSerializerWrapper;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | ServiceStack.Support;ActionExecHandler;ActionExecHandler;(System.Action,System.Threading.AutoResetEvent);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | ServiceStack.Support;AdapterBase;Execute;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | ServiceStack.Support;AdapterBase;Execute;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -5730,7 +6023,7 @@ summary | System.Buffers;ReadOnlySpanAction;BeginInvoke;(System.ReadOnlySpan,TArg,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Buffers;SearchValues;Create;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Buffers;SearchValues;Create;(System.ReadOnlySpan,System.StringComparison);Argument[0];ReturnValue;taint;df-generated | -| System.Buffers;SequenceReader;SequenceReader;(System.Buffers.ReadOnlySequence);Argument[0];Argument[this];taint;df-generated | +| System.Buffers;SequenceReader;SequenceReader;(System.Buffers.ReadOnlySequence);Argument[0];Argument[this].Property[System.Buffers.SequenceReader`1.Sequence];value;dfc-generated | | System.Buffers;SequenceReader;TryCopyTo;(System.Span);Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element;Argument[0].Element;value;dfc-generated | | System.Buffers;SequenceReader;TryCopyTo;(System.Span);Argument[this].Property[System.Buffers.SequenceReader`1.UnreadSpan].Element;Argument[0].Element;value;dfc-generated | | System.Buffers;SequenceReader;TryPeek;(System.Int64,T);Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element;ReturnValue;value;dfc-generated | @@ -5889,6 +6182,9 @@ summary | System.CodeDom.Compiler;CodeGenerator;get_Options;();Argument[this].SyntheticField[System.CodeDom.Compiler.CodeGenerator._options];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;CodeGenerator;get_Output;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CodeGeneratorOptions;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[0];Argument[this].Property[System.CodeDom.Compiler.CompilerError.FileName];value;dfc-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[3];Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorNumber];value;dfc-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorText];value;dfc-generated | | System.CodeDom.Compiler;CompilerError;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;Add;(System.CodeDom.Compiler.CompilerError);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;AddRange;(System.CodeDom.Compiler.CompilerErrorCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -5899,9 +6195,12 @@ summary | System.CodeDom.Compiler;CompilerErrorCollection;Insert;(System.Int32,System.CodeDom.Compiler.CompilerError);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;set_Item;(System.Int32,System.CodeDom.Compiler.CompilerError);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom.Compiler;CompilerInfo;CreateDefaultCompilerParameters;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerInfo;GetExtensions;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerInfo;GetLanguages;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerParameters;CompilerParameters;(System.String[],System.String,System.Boolean);Argument[0].Element;Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies].Element;value;dfc-generated | +| System.CodeDom.Compiler;CompilerParameters;CompilerParameters;(System.String[],System.String,System.Boolean);Argument[1];Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.OutputAssembly];value;dfc-generated | +| System.CodeDom.Compiler;CompilerResults;CompilerResults;(System.CodeDom.Compiler.TempFileCollection);Argument[0];Argument[this].Property[System.CodeDom.Compiler.CompilerResults.TempFiles];value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[3];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[4];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[4];ReturnValue;value;dfc-generated | @@ -5972,6 +6271,14 @@ summary | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | @@ -6021,6 +6328,14 @@ summary | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | @@ -6071,12 +6386,18 @@ summary | System.CodeDom.Compiler;TempFileCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;TempFileCollection;get_TempDir;();Argument[this].SyntheticField[System.CodeDom.Compiler.TempFileCollection._tempDir];ReturnValue;value;dfc-generated | | System.CodeDom;CodeArgumentReferenceExpression;CodeArgumentReferenceExpression;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[]);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.Type,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | | System.CodeDom;CodeArrayCreateExpression;get_Initializers;();Argument[this];ReturnValue;taint;df-generated | -| System.CodeDom;CodeAttachEventStatement;CodeAttachEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.String,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayIndexerExpression;CodeArrayIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeArrayIndexerExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeAssignStatement;CodeAssignStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeAssignStatement.Left];value;dfc-generated | +| System.CodeDom;CodeAssignStatement;CodeAssignStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAssignStatement.Right];value;dfc-generated | +| System.CodeDom;CodeAttachEventStatement;CodeAttachEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAttachEventStatement.Listener];value;dfc-generated | +| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value];value;dfc-generated | +| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value];value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;Add;(System.CodeDom.CodeAttributeArgument);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;AddRange;(System.CodeDom.CodeAttributeArgumentCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;AddRange;(System.CodeDom.CodeAttributeArgument[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -6100,7 +6421,11 @@ summary | System.CodeDom;CodeAttributeDeclarationCollection;Insert;(System.Int32,System.CodeDom.CodeAttributeDeclaration);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeDeclarationCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeAttributeDeclarationCollection;set_Item;(System.Int32,System.CodeDom.CodeAttributeDeclaration);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeBinaryOperatorExpression;CodeBinaryOperatorExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Left];value;dfc-generated | +| System.CodeDom;CodeBinaryOperatorExpression;CodeBinaryOperatorExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Right];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.Type,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String,System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String,System.CodeDom.CodeTypeReference);Argument[1];Argument[this];taint;df-generated | @@ -6115,9 +6440,11 @@ summary | System.CodeDom;CodeCatchClauseCollection;Insert;(System.Int32,System.CodeDom.CodeCatchClause);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCatchClauseCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeCatchClauseCollection;set_Item;(System.Int32,System.CodeDom.CodeCatchClause);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[1];Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId];value;dfc-generated | +| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[2];Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumData];value;dfc-generated | | System.CodeDom;CodeComment;CodeComment;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeComment;CodeComment;(System.String,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeCommentStatement;CodeCommentStatement;(System.CodeDom.CodeComment);Argument[0];Argument[this].Property[System.CodeDom.CodeCommentStatement.Comment];value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;Add;(System.CodeDom.CodeCommentStatement);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;AddRange;(System.CodeDom.CodeCommentStatementCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;AddRange;(System.CodeDom.CodeCommentStatement[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -6127,9 +6454,13 @@ summary | System.CodeDom;CodeCommentStatementCollection;Insert;(System.Int32,System.CodeDom.CodeCommentStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;set_Item;(System.Int32,System.CodeDom.CodeCommentStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition];value;dfc-generated | +| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition];value;dfc-generated | | System.CodeDom;CodeDefaultValueExpression;CodeDefaultValueExpression;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[2];Argument[this];taint;df-generated | +| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this].Property[System.CodeDom.CodeDelegateCreateExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDirectionExpression;CodeDirectionExpression;(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeDirectionExpression.Expression];value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;Add;(System.CodeDom.CodeDirective);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;AddRange;(System.CodeDom.CodeDirectiveCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;AddRange;(System.CodeDom.CodeDirective[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -6139,7 +6470,7 @@ summary | System.CodeDom;CodeDirectiveCollection;Insert;(System.Int32,System.CodeDom.CodeDirective);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;set_Item;(System.Int32,System.CodeDom.CodeDirective);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeEventReferenceExpression;CodeEventReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeEventReferenceExpression;CodeEventReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeEventReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeExpressionCollection;Add;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;AddRange;(System.CodeDom.CodeExpressionCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;AddRange;(System.CodeDom.CodeExpression[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -6149,10 +6480,15 @@ summary | System.CodeDom;CodeExpressionCollection;Insert;(System.Int32,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;set_Item;(System.Int32,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeFieldReferenceExpression;CodeFieldReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeExpressionStatement;CodeExpressionStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeExpressionStatement.Expression];value;dfc-generated | +| System.CodeDom;CodeFieldReferenceExpression;CodeFieldReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeFieldReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeGotoStatement;CodeGotoStatement;(System.String);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeIndexerExpression;CodeIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeIndexerExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeIterationStatement.InitStatement];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[1];Argument[this].Property[System.CodeDom.CodeIterationStatement.TestExpression];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[2];Argument[this].Property[System.CodeDom.CodeIterationStatement.IncrementStatement];value;dfc-generated | | System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String,System.CodeDom.CodeStatement);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.CodeDom.CodeLabeledStatement.Statement];value;dfc-generated | | System.CodeDom;CodeLinePragma;CodeLinePragma;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeMemberField;CodeMemberField;(System.CodeDom.CodeTypeReference,System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeMemberField;CodeMemberField;(System.CodeDom.CodeTypeReference,System.String);Argument[1];Argument[this];taint;df-generated | @@ -6168,8 +6504,9 @@ summary | System.CodeDom;CodeMemberMethod;remove_PopulateParameters;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeMemberMethod;remove_PopulateStatements;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeMethodInvokeExpression;CodeMethodInvokeExpression;(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[]);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[]);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeMethodReturnStatement;CodeMethodReturnStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReturnStatement.Expression];value;dfc-generated | | System.CodeDom;CodeNamespace;CodeNamespace;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeNamespace;add_PopulateComments;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeNamespace;add_PopulateImports;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -6217,9 +6554,11 @@ summary | System.CodeDom;CodeParameterDeclarationExpressionCollection;Insert;(System.Int32,System.CodeDom.CodeParameterDeclarationExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;set_Item;(System.Int32,System.CodeDom.CodeParameterDeclarationExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodePropertyReferenceExpression;CodePropertyReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodePrimitiveExpression;CodePrimitiveExpression;(System.Object);Argument[0];Argument[this].Property[System.CodeDom.CodePrimitiveExpression.Value];value;dfc-generated | +| System.CodeDom;CodePropertyReferenceExpression;CodePropertyReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodePropertyReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeRegionDirective;CodeRegionDirective;(System.CodeDom.CodeRegionMode,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener];value;dfc-generated | +| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener];value;dfc-generated | | System.CodeDom;CodeSnippetCompileUnit;CodeSnippetCompileUnit;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeSnippetExpression;CodeSnippetExpression;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeSnippetStatement;CodeSnippetStatement;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -6233,6 +6572,7 @@ summary | System.CodeDom;CodeStatementCollection;Insert;(System.Int32,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeStatementCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeStatementCollection;set_Item;(System.Int32,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeThrowExceptionStatement;CodeThrowExceptionStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeThrowExceptionStatement.ToThrow];value;dfc-generated | | System.CodeDom;CodeTypeDeclaration;CodeTypeDeclaration;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeDeclaration;add_PopulateBaseTypes;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeTypeDeclaration;add_PopulateMembers;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -6270,8 +6610,10 @@ summary | System.CodeDom;CodeTypeParameterCollection;Insert;(System.Int32,System.CodeDom.CodeTypeParameter);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeTypeParameterCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeTypeParameterCollection;set_Item;(System.Int32,System.CodeDom.CodeTypeParameter);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.CodeDom.CodeTypeReference,System.Int32);Argument[0];Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType];value;dfc-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.CodeDom.CodeTypeReferenceOptions);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeReference;get_TypeArguments;();Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType].Property[System.CodeDom.CodeTypeReference.TypeArguments];ReturnValue;value;dfc-generated | | System.CodeDom;CodeTypeReferenceCollection;Add;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeTypeReferenceCollection;AddRange;(System.CodeDom.CodeTypeReferenceCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -6285,12 +6627,11 @@ summary | System.CodeDom;CodeTypeReferenceExpression;CodeTypeReferenceExpression;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableReferenceExpression;CodeVariableReferenceExpression;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Collections.Concurrent;BlockingCollection;Add;(T);Argument[0];Argument[this].Element;value;manual | | System.Collections.Concurrent;BlockingCollection;Add;(T,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | @@ -6368,6 +6709,7 @@ summary | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Int32,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Collections.Concurrent;ConcurrentDictionary;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.Concurrent;ConcurrentDictionary;CopyTo;(System.Collections.Generic.KeyValuePair[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | +| System.Collections.Concurrent;ConcurrentDictionary;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.Concurrent;ConcurrentDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Collections.Concurrent;ConcurrentDictionary;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | @@ -6386,6 +6728,7 @@ summary | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[2];Argument[1].Parameter[1];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[2];Argument[1].Parameter[1];value;hq-generated | +| System.Collections.Concurrent;ConcurrentDictionary;TryGetAlternateLookup;(System.Collections.Concurrent.ConcurrentDictionary+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;get_Comparer;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Concurrent;ConcurrentDictionary;get_Item;(System.Object);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Collections.Concurrent;ConcurrentDictionary;get_Item;(TKey);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | @@ -6424,6 +6767,9 @@ summary | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;ContainsKey;(TAlternateKey);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;TryGetValue;(TAlternateKey,TValue);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;get_Item;(TAlternateKey);Argument[0];Argument[this];taint;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenDictionary`2+Enumerator.Current];ReturnValue;value;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenDictionary`2+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -6436,9 +6782,11 @@ summary | System.Collections.Frozen;FrozenDictionary;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Collections.Frozen;FrozenDictionary;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.Frozen;FrozenDictionary;CopyTo;(System.Collections.Generic.KeyValuePair[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | +| System.Collections.Frozen;FrozenDictionary;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Frozen;FrozenDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.Frozen;FrozenDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Collections.Frozen;FrozenDictionary;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenDictionary;TryGetAlternateLookup;(System.Collections.Frozen.FrozenDictionary+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Frozen;FrozenDictionary;get_Item;(System.Object);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Collections.Frozen;FrozenDictionary;get_Item;(TKey);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Collections.Frozen;FrozenDictionary;get_Keys;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element;value;manual | @@ -6450,7 +6798,12 @@ summary | System.Collections.Frozen;FrozenDictionary;set_Item;(System.Object,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Collections.Frozen;FrozenDictionary;set_Item;(TKey,TValue);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Frozen;FrozenDictionary;set_Item;(TKey,TValue);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | +| System.Collections.Frozen;FrozenSet;Create;(System.Collections.Generic.IEqualityComparer,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenSet;Create;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet;ToFrozenSet;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;Contains;(TAlternate);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;TryGetValue;(TAlternate,T);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;TryGetValue;(TAlternate,T);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenSet`1+Enumerator.Current];ReturnValue;value;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenSet`1+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -6460,8 +6813,10 @@ summary | System.Collections.Frozen;FrozenSet;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.Frozen;FrozenSet;CopyTo;(System.Span);Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element;Argument[0].Element;value;dfc-generated | | System.Collections.Frozen;FrozenSet;CopyTo;(T[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | +| System.Collections.Frozen;FrozenSet;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set];value;dfc-generated | | System.Collections.Frozen;FrozenSet;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.Frozen;FrozenSet;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Collections.Frozen;FrozenSet;TryGetAlternateLookup;(System.Collections.Frozen.FrozenSet+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set];value;dfc-generated | | System.Collections.Frozen;FrozenSet;TryGetValue;(T,T);Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element;ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenSet;get_Items;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | @@ -6544,8 +6899,6 @@ summary | System.Collections.Generic;Dictionary;set_Item;(TKey,TValue);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Collections.Generic;EqualityComparer;Create;(System.Func,System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Collections.Generic;EqualityComparer;Create;(System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | -| System.Collections.Generic;EqualityComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System.Collections.Generic;EqualityComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Collections.Generic;EqualityComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Collections.Generic;HashSet+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;HashSet;Add;(T);Argument[0];Argument[this].Element;value;manual | @@ -6676,11 +7029,23 @@ summary | System.Collections.Generic;List;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.Collections.Generic;List;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;List;set_Item;(System.Int32,T);Argument[1];Argument[this].Element;value;manual | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Collections.Generic;OrderedDictionary+Enumerator;get_Entry;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this];ReturnValue;taint;dfc-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this];ReturnValue;taint;dfc-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+KeyCollection+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+KeyCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Collections.Generic;OrderedDictionary+KeyCollection;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;Add;(TKey);Argument[0];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -6688,13 +7053,17 @@ summary | System.Collections.Generic;OrderedDictionary+KeyCollection;CopyTo;(TKey[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Collections.Generic;OrderedDictionary+KeyCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;OrderedDictionary+KeyCollection;Insert;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;Insert;(System.Int32,TKey);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+KeyCollection;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+KeyCollection;set_Item;(System.Int32,TKey);Argument[1];Argument[this].Element;value;manual | +| System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+ValueCollection+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+ValueCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Collections.Generic;OrderedDictionary+ValueCollection;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;Add;(TValue);Argument[0];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -6702,6 +7071,7 @@ summary | System.Collections.Generic;OrderedDictionary+ValueCollection;CopyTo;(TValue[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Collections.Generic;OrderedDictionary+ValueCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;OrderedDictionary+ValueCollection;Insert;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;Insert;(System.Int32,TValue);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary+ValueCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | @@ -6722,12 +7092,22 @@ summary | System.Collections.Generic;OrderedDictionary;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;OrderedDictionary;Insert;(System.Int32,System.Collections.Generic.KeyValuePair);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary;Insert;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Int32,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;Remove;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;TryGetValue;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;get_Comparer;();Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Collections.Generic;OrderedDictionary;get_Item;(System.Object);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Collections.Generic;OrderedDictionary;get_Item;(TKey);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Collections.Generic;OrderedDictionary;get_Keys;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element;value;manual | +| System.Collections.Generic;OrderedDictionary;get_Keys;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Keys];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary;get_Values;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue.Element;value;manual | +| System.Collections.Generic;OrderedDictionary;get_Values;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Values];ReturnValue;value;dfc-generated | | System.Collections.Generic;OrderedDictionary;set_Item;(System.Int32,System.Collections.Generic.KeyValuePair);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Collections.Generic;OrderedDictionary;set_Item;(System.Object,System.Object);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | @@ -6770,8 +7150,6 @@ summary | System.Collections.Generic;Queue;TryDequeue;(T);Argument[this].SyntheticField[System.Collections.Generic.Queue`1._array].Element;ReturnValue;value;dfc-generated | | System.Collections.Generic;Queue;TryPeek;(T);Argument[this].SyntheticField[System.Collections.Generic.Queue`1._array].Element;ReturnValue;value;dfc-generated | | System.Collections.Generic;Queue;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | -| System.Collections.Generic;ReferenceEqualityComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System.Collections.Generic;ReferenceEqualityComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Collections.Generic;ReferenceEqualityComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Collections.Generic;SortedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.SortedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Property[System.Collections.Generic.KeyValuePair`2.Key];value;df-generated | | System.Collections.Generic;SortedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.SortedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | @@ -7113,13 +7491,53 @@ summary | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>);Argument[0];ReturnValue;value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0];ReturnValue;value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0];ReturnValue;value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Immutable;ImmutableDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Immutable;ImmutableDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | @@ -7169,10 +7587,7 @@ summary | System.Collections.Immutable;ImmutableDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary`2+Enumerator.Current];value;manual | | System.Collections.Immutable;ImmutableDictionary;Remove;(TKey);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;RemoveRange;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[0];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[1];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItems;(System.Collections.Generic.IEnumerable>);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;SetItems;(System.Collections.Generic.IEnumerable>);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;ToBuilder;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;TryGetKey;(TKey,TKey);Argument[0];ReturnValue;value;dfc-generated | @@ -7485,11 +7900,41 @@ summary | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];ReturnValue;taint;df-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | @@ -7744,6 +8189,9 @@ summary | System.Collections.ObjectModel;ReadOnlySet;CopyTo;(T[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Collections.ObjectModel;ReadOnlySet;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Collections.ObjectModel;ReadOnlySet;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Collections.ObjectModel;ReadOnlySet;ReadOnlySet;(System.Collections.Generic.ISet);Argument[0];Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set];value;dfc-generated | +| System.Collections.ObjectModel;ReadOnlySet;get_Set;();Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set];ReturnValue;value;dfc-generated | +| System.Collections.ObjectModel;ReadOnlySet;get_SyncRoot;();Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set].Property[System.Collections.ICollection.SyncRoot];ReturnValue;value;dfc-generated | | System.Collections.ObjectModel;ReadOnlySet;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.Collections.Specialized;CollectionsUtil;CreateCaseInsensitiveHashtable;(System.Collections.IDictionary);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | | System.Collections.Specialized;CollectionsUtil;CreateCaseInsensitiveHashtable;(System.Collections.IDictionary);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | @@ -7991,8 +8439,6 @@ summary | System.Collections;IDictionaryEnumerator;get_Value;();Argument[this];ReturnValue;taint;df-generated | | System.Collections;IEnumerable;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Collections;IEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | -| System.Collections;IEqualityComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System.Collections;IEqualityComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Collections;IEqualityComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Collections;IList;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.Collections;IList;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -8046,16 +8492,29 @@ summary | System.Collections;Stack;Synchronized;(System.Collections.Stack);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections;Stack;ToArray;();Argument[this].SyntheticField[System.Collections.Stack._array].Element;ReturnValue.Element;value;dfc-generated | | System.Collections;Stack;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;ColumnAttribute;ColumnAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;ForeignKeyAttribute;ForeignKeyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ForeignKeyAttribute.Name];value;dfc-generated | | System.ComponentModel.DataAnnotations.Schema;IndexAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.DataAnnotations.Schema;InversePropertyAttribute;InversePropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.InversePropertyAttribute.Property];value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;TableAttribute;TableAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.TableAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AllowedValuesAttribute;AllowedValuesAttribute;(System.Object[]);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.AllowedValuesAttribute.Values];value;dfc-generated | | System.ComponentModel.DataAnnotations;AssociatedMetadataTypeTypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[1];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;AssociatedMetadataTypeTypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey];value;dfc-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_OtherKeyMembers;();Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_ThisKeyMembers;();Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey];ReturnValue.Element;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;CompareAttribute;CompareAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty];value;dfc-generated | | System.ComponentModel.DataAnnotations;CompareAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;CompareAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;CompareAttribute;IsValid;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext);Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty];Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherPropertyDisplayName];value;dfc-generated | +| System.ComponentModel.DataAnnotations;CustomValidationAttribute;CustomValidationAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.CustomValidationAttribute.Method];value;dfc-generated | | System.ComponentModel.DataAnnotations;CustomValidationAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;CustomValidationAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;DataTypeAttribute;DataTypeAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType];value;dfc-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;GetDataTypeName;();Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations;DeniedValuesAttribute;DeniedValuesAttribute;(System.Object[]);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DeniedValuesAttribute.Values];value;dfc-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetAutoGenerateField;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetAutoGenerateFilter;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetDescription;();Argument[this];ReturnValue;taint;df-generated | @@ -8064,6 +8523,8 @@ summary | System.ComponentModel.DataAnnotations;DisplayAttribute;GetOrder;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetPrompt;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetShortName;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.DisplayColumn];value;dfc-generated | +| System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.SortColumn];value;dfc-generated | | System.ComponentModel.DataAnnotations;DisplayFormatAttribute;GetNullDisplayText;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;FileExtensionsAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;FileExtensionsAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | @@ -8080,9 +8541,12 @@ summary | System.ComponentModel.DataAnnotations;MinLengthAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;RangeAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;RangeAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Type,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Minimum];value;dfc-generated | +| System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Type,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Maximum];value;dfc-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;RegularExpressionAttribute;RegularExpressionAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern];value;dfc-generated | | System.ComponentModel.DataAnnotations;StringLengthAttribute;FormatErrorMessage;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;StringLengthAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationAttribute.ErrorMessageString];ReturnValue;taint;dfc-generated | | System.ComponentModel.DataAnnotations;UIHintAttribute;UIHintAttribute;(System.String,System.String,System.Object[]);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.UIHint];value;dfc-generated | @@ -8102,15 +8566,26 @@ summary | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.ValidationContext._serviceProvider];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.ValidationContext._serviceProvider];value;hq-generated | +| System.ComponentModel.DataAnnotations;ValidationContext;ValidationContext;(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationContext.ObjectInstance];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationContext;get_Items;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.ComponentModel.DataAnnotations.ValidationResult,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.ValidationAttribute];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.Value];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationResult;ToString;();Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String,System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String,System.Collections.Generic.IEnumerable);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Append;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Pop;();Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Push;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Current;();Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Item;(System.Type);Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | +| System.ComponentModel.Design.Serialization;DefaultSerializationProviderAttribute;DefaultSerializationProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute.ProviderTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId];taint;df-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId];taint;dfc-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];ReturnValue;taint;df-generated | @@ -8123,19 +8598,36 @@ summary | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;add_SerializationComplete;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;remove_ResolveName;(System.ComponentModel.Design.Serialization.ResolveNameEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;remove_SerializationComplete;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design.Serialization;InstanceDescriptor;InstanceDescriptor;(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.InstanceDescriptor.MemberInfo];value;dfc-generated | +| System.ComponentModel.Design.Serialization;MemberRelationship;MemberRelationship;(System.Object,System.ComponentModel.MemberDescriptor);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Owner];value;dfc-generated | +| System.ComponentModel.Design.Serialization;MemberRelationship;MemberRelationship;(System.Object,System.ComponentModel.MemberDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Member];value;dfc-generated | +| System.ComponentModel.Design.Serialization;ResolveNameEventArgs;ResolveNameEventArgs;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.ResolveNameEventArgs.Name];value;dfc-generated | | System.ComponentModel.Design.Serialization;ResolveNameEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.Serialization.ResolveNameEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.String,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.String,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerBaseTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.Type,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | | System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.Design;ActiveDesignerEventArgs;ActiveDesignerEventArgs;(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost);Argument[0];Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.OldDesigner];value;dfc-generated | +| System.ComponentModel.Design;ActiveDesignerEventArgs;ActiveDesignerEventArgs;(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost);Argument[1];Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.NewDesigner];value;dfc-generated | | System.ComponentModel.Design;ActiveDesignerEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ActiveDesignerEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;CommandID;ToString;();Argument[this].Property[System.ComponentModel.Design.CommandID.Guid];ReturnValue;taint;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Component];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[1];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Member];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.OldValue];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[3];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.NewValue];value;dfc-generated | | System.ComponentModel.Design;ComponentChangedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentChangedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design;ComponentChangingEventArgs;ComponentChangingEventArgs;(System.Object,System.ComponentModel.MemberDescriptor);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Component];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangingEventArgs;ComponentChangingEventArgs;(System.Object,System.ComponentModel.MemberDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Member];value;dfc-generated | | System.ComponentModel.Design;ComponentChangingEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentChangingEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;ComponentEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design;ComponentRenameEventArgs;ComponentRenameEventArgs;(System.Object,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentRenameEventArgs.Component];value;dfc-generated | | System.ComponentModel.Design;ComponentRenameEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentRenameEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.ComponentModel.Design;DesignerCollection;DesignerCollection;(System.Collections.IList);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers];value;dfc-generated | | System.ComponentModel.Design;DesignerCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.ComponentModel.Design;DesignerCollection;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design;DesignerCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel.Design;DesignerEventArgs;DesignerEventArgs;(System.ComponentModel.Design.IDesignerHost);Argument[0];Argument[this].Property[System.ComponentModel.Design.DesignerEventArgs.Designer];value;dfc-generated | | System.ComponentModel.Design;DesignerEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.DesignerEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -8147,8 +8639,9 @@ summary | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;get_Properties;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | -| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[2];ReturnValue;taint;df-generated | -| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[0];ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Parent];value;dfc-generated | +| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[1];ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Name];value;dfc-generated | +| System.ComponentModel.Design;DesignerTransaction;DesignerTransaction;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.DesignerTransaction.Description];value;dfc-generated | | System.ComponentModel.Design;DesignerTransactionCloseEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.DesignerTransactionCloseEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerVerb;DesignerVerb;(System.String,System.EventHandler);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerVerb;DesignerVerb;(System.String,System.EventHandler,System.ComponentModel.Design.CommandID);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -8167,6 +8660,7 @@ summary | System.ComponentModel.Design;DesignerVerbCollection;set_Item;(System.Int32,System.ComponentModel.Design.DesignerVerb);Argument[1];Argument[this].Element;value;manual | | System.ComponentModel.Design;DesigntimeLicenseContext;GetSavedLicenseKey;(System.Type,System.Reflection.Assembly);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.Design;DesigntimeLicenseContext;SetSavedLicenseKey;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | +| System.ComponentModel.Design;HelpKeywordAttribute;HelpKeywordAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.HelpKeywordAttribute.HelpKeyword];value;dfc-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentAdded;(System.ComponentModel.Design.ComponentEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentAdding;(System.ComponentModel.Design.ComponentEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentChanged;(System.ComponentModel.Design.ComponentChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -8218,14 +8712,22 @@ summary | System.ComponentModel.Design;ServiceContainer;GetService;(System.Type);Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel.Design;ServiceContainer;ServiceContainer;(System.IServiceProvider);Argument[0];Argument[this];taint;df-generated | | System.ComponentModel.Design;ServiceCreatorCallback;BeginInvoke;(System.ComponentModel.Design.IServiceContainer,System.Type,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;AddingNewEventArgs;AddingNewEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.AddingNewEventArgs.NewObject];value;dfc-generated | | System.ComponentModel;AddingNewEventHandler;BeginInvoke;(System.Object,System.ComponentModel.AddingNewEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Type,System.String);Argument[1];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;get_Value;();Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];ReturnValue;value;dfc-generated | | System.ComponentModel;ArrayConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;ArrayConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;ArrayConverter;GetProperties;(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | +| System.ComponentModel;AsyncCompletedEventArgs;AsyncCompletedEventArgs;(System.Exception,System.Boolean,System.Object);Argument[0];Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.Error];value;dfc-generated | +| System.ComponentModel;AsyncCompletedEventArgs;AsyncCompletedEventArgs;(System.Exception,System.Boolean,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.UserState];value;dfc-generated | | System.ComponentModel;AsyncCompletedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.AsyncCompletedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;Post;(System.Threading.SendOrPostCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;PostOperationCompleted;(System.Threading.SendOrPostCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;get_SynchronizationContext;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;AsyncOperationManager;CreateOperation;(System.Object);Argument[0];ReturnValue.Property[System.ComponentModel.AsyncOperation.UserSuppliedState];value;dfc-generated | | System.ComponentModel;AttributeCollection;AttributeCollection;(System.Attribute[]);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes];value;dfc-generated | | System.ComponentModel;AttributeCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.ComponentModel;AttributeCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | @@ -8235,6 +8737,9 @@ summary | System.ComponentModel;AttributeCollection;get_Item;(System.Type);Argument[this].Property[System.ComponentModel.AttributeCollection.Attributes].Element;ReturnValue;value;dfc-generated | | System.ComponentModel;AttributeCollection;get_Item;(System.Type);Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes].Element;ReturnValue;value;dfc-generated | | System.ComponentModel;AttributeCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName];value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName];value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.PropertyName];value;dfc-generated | | System.ComponentModel;BackgroundWorker;add_DoWork;(System.ComponentModel.DoWorkEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;BackgroundWorker;add_ProgressChanged;(System.ComponentModel.ProgressChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;BackgroundWorker;add_RunWorkerCompleted;(System.ComponentModel.RunWorkerCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -8273,6 +8778,9 @@ summary | System.ComponentModel;CollectionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;CollectionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;CollectionConverter;GetProperties;(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataMember];value;dfc-generated | | System.ComponentModel;Component;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;Component;add_Disposed;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;Component;get_Container;();Argument[this];ReturnValue;taint;df-generated | @@ -8296,10 +8804,12 @@ summary | System.ComponentModel;CultureInfoConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;CultureInfoConverter;GetCultureName;(System.Globalization.CultureInfo);Argument[0].Property[System.Globalization.CultureInfo.Name];ReturnValue;value;dfc-generated | | System.ComponentModel;CultureInfoConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | -| System.ComponentModel;CustomTypeDescriptor;CustomTypeDescriptor;(System.ComponentModel.ICustomTypeDescriptor);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel;CustomTypeDescriptor;CustomTypeDescriptor;(System.ComponentModel.ICustomTypeDescriptor);Argument[0];Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent];value;dfc-generated | | System.ComponentModel;CustomTypeDescriptor;GetProperties;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetProperties;(System.Attribute[]);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;CustomTypeDescriptor;GetPropertiesFromRegisteredType;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetPropertyOwner;(System.ComponentModel.PropertyDescriptor);Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel;CustomTypeDescriptor;get_RequireRegisteredTypes;();Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent].Property[System.ComponentModel.ICustomTypeDescriptor.RequireRegisteredTypes];ReturnValue;value;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;value;dfc-generated | @@ -8317,6 +8827,9 @@ summary | System.ComponentModel;DateTimeOffsetConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;DecimalConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;DecimalConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | +| System.ComponentModel;DefaultBindingPropertyAttribute;DefaultBindingPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultBindingPropertyAttribute.Name];value;dfc-generated | +| System.ComponentModel;DefaultEventAttribute;DefaultEventAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultEventAttribute.Name];value;dfc-generated | +| System.ComponentModel;DefaultPropertyAttribute;DefaultPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultPropertyAttribute.Name];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.Type,System.String);Argument[1];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | @@ -8324,6 +8837,10 @@ summary | System.ComponentModel;DefaultValueAttribute;get_Value;();Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];ReturnValue;value;dfc-generated | | System.ComponentModel;DescriptionAttribute;DescriptionAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];value;dfc-generated | | System.ComponentModel;DescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];ReturnValue;value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];taint;df-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];taint;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];ReturnValue;taint;df-generated | @@ -8332,12 +8849,18 @@ summary | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];ReturnValue;value;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this];ReturnValue;taint;dfc-generated | +| System.ComponentModel;DesignerCategoryAttribute;DesignerCategoryAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];value;dfc-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];ReturnValue;taint;df-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];ReturnValue;taint;dfc-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this];ReturnValue;taint;dfc-generated | +| System.ComponentModel;DisplayNameAttribute;DisplayNameAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue];value;dfc-generated | | System.ComponentModel;DisplayNameAttribute;get_DisplayName;();Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue];ReturnValue;value;dfc-generated | +| System.ComponentModel;DoWorkEventArgs;DoWorkEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.DoWorkEventArgs.Argument];value;dfc-generated | | System.ComponentModel;DoWorkEventHandler;BeginInvoke;(System.Object,System.ComponentModel.DoWorkEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName];value;dfc-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];value;dfc-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName];value;dfc-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId];taint;df-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId];taint;dfc-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];ReturnValue;taint;df-generated | @@ -8400,6 +8923,7 @@ summary | System.ComponentModel;IContainer;get_Components;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetProperties;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetProperties;(System.Attribute[]);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;ICustomTypeDescriptor;GetPropertiesFromRegisteredType;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetPropertyOwner;(System.ComponentModel.PropertyDescriptor);Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel;IListSource;GetList;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;INestedSite;get_FullName;();Argument[this];ReturnValue;taint;df-generated | @@ -8415,6 +8939,7 @@ summary | System.ComponentModel;ITypedList;GetItemProperties;(System.ComponentModel.PropertyDescriptor[]);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ITypedList;GetListName;(System.ComponentModel.PropertyDescriptor[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.ComponentModel;ITypedList;GetListName;(System.ComponentModel.PropertyDescriptor[]);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;InitializationEventAttribute;InitializationEventAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.InitializationEventAttribute.EventName];value;dfc-generated | | System.ComponentModel;InstallerTypeAttribute;InstallerTypeAttribute;(System.String);Argument[0];Argument[this];taint;df-generated | | System.ComponentModel;LicFileLicenseProvider;GetLicense;(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;LicFileLicenseProvider;GetLicense;(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -8431,7 +8956,10 @@ summary | System.ComponentModel;LicenseProviderAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName];ReturnValue;taint;dfc-generated | | System.ComponentModel;LicenseProviderAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;LicenseProviderAttribute;get_TypeId;();Argument[this];ReturnValue;taint;dfc-generated | +| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor];value;dfc-generated | +| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor);Argument[2];Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor];value;dfc-generated | | System.ComponentModel;ListChangedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.ListChangedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;ListSortDescription;ListSortDescription;(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection);Argument[0];Argument[this].Property[System.ComponentModel.ListSortDescription.PropertyDescriptor];value;dfc-generated | | System.ComponentModel;ListSortDescriptionCollection;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.ComponentModel;ListSortDescriptionCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.ComponentModel;ListSortDescriptionCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | @@ -8442,12 +8970,18 @@ summary | System.ComponentModel;ListSortDescriptionCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel;ListSortDescriptionCollection;set_Item;(System.Int32,System.ComponentModel.ListSortDescription);Argument[1];Argument[this].Element;value;manual | | System.ComponentModel;ListSortDescriptionCollection;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DisplayMember];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.ValueMember];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[3];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.LookupMember];value;dfc-generated | | System.ComponentModel;MarshalByValueComponent;GetService;(System.Type);Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel;MarshalByValueComponent;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MarshalByValueComponent;add_Disposed;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;MarshalByValueComponent;get_Container;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MarshalByValueComponent;remove_Disposed;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;MaskedTextProvider;Clone;();Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.MaskedTextProvider.Mask];value;dfc-generated | +| System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.MaskedTextProvider.Culture];value;dfc-generated | | System.ComponentModel;MaskedTextProvider;ToDisplayString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MaskedTextProvider;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MaskedTextProvider;ToString;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -8476,6 +9010,7 @@ summary | System.ComponentModel;NestedContainer;CreateSite;(System.ComponentModel.IComponent,System.String);Argument[this];ReturnValue.SyntheticField[System.ComponentModel.Container+Site.Container];value;dfc-generated | | System.ComponentModel;NestedContainer;CreateSite;(System.ComponentModel.IComponent,System.String);Argument[this];ReturnValue.SyntheticField[System.ComponentModel.NestedContainer+Site.Container];value;dfc-generated | | System.ComponentModel;NestedContainer;GetService;(System.Type);Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel;NestedContainer;NestedContainer;(System.ComponentModel.IComponent);Argument[0];Argument[this].Property[System.ComponentModel.NestedContainer.Owner];value;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2].Property[System.Uri.OriginalString];ReturnValue;taint;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | @@ -8501,6 +9036,7 @@ summary | System.ComponentModel;PropertyDescriptor;SetValue;(System.Object,System.Object);Argument[1];Argument[0];taint;df-generated | | System.ComponentModel;PropertyDescriptor;SetValue;(System.Object,System.Object);Argument[this];Argument[0];taint;df-generated | | System.ComponentModel;PropertyDescriptor;get_Converter;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;PropertyDescriptor;get_ConverterFromRegisteredType;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0];Argument[this].Element;value;manual | @@ -8543,10 +9079,15 @@ summary | System.ComponentModel;PropertyDescriptorCollection;set_Item;(System.Object,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.ComponentModel;PropertyDescriptorCollection;set_Item;(System.Object,System.Object);Argument[1];Argument[this].Element;value;manual | | System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.String[],System.ComponentModel.PropertyTabScope[]);Argument[0].Element;Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;value;dfc-generated | +| System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.String[],System.ComponentModel.PropertyTabScope[]);Argument[1].Element;Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.Type[],System.ComponentModel.PropertyTabScope[]);Argument[0].Element;Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses].Element;value;dfc-generated | +| System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.Type[],System.ComponentModel.PropertyTabScope[]);Argument[1].Element;Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;PropertyTabAttribute;(System.String,System.ComponentModel.PropertyTabScope);Argument[0];Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;get_TabClassNames;();Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;ReturnValue.Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;get_TabClasses;();Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses];ReturnValue;value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.ReceiverTypeName];value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];value;dfc-generated | | System.ComponentModel;ProvidePropertyAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];ReturnValue;taint;df-generated | | System.ComponentModel;ProvidePropertyAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];ReturnValue;taint;dfc-generated | | System.ComponentModel;ProvidePropertyAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | @@ -8557,6 +9098,7 @@ summary | System.ComponentModel;ReferenceConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;ReferenceConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;ReferenceConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;RefreshEventArgs;RefreshEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.RefreshEventArgs.ComponentChanged];value;dfc-generated | | System.ComponentModel;RefreshEventHandler;BeginInvoke;(System.ComponentModel.RefreshEventArgs,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;RunWorkerCompletedEventArgs;RunWorkerCompletedEventArgs;(System.Object,System.Exception,System.Boolean);Argument[0];Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result];value;dfc-generated | | System.ComponentModel;RunWorkerCompletedEventArgs;get_Result;();Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result];ReturnValue;value;dfc-generated | @@ -8578,6 +9120,7 @@ summary | System.ComponentModel;ToolboxItemAttribute;ToolboxItemAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName];value;dfc-generated | | System.ComponentModel;ToolboxItemAttribute;get_ToolboxItemTypeName;();Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName];ReturnValue;value;dfc-generated | | System.ComponentModel;ToolboxItemFilterAttribute;ToString;();Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString];ReturnValue;taint;dfc-generated | +| System.ComponentModel;ToolboxItemFilterAttribute;ToolboxItemFilterAttribute;(System.String,System.ComponentModel.ToolboxItemFilterType);Argument[0];Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString];value;dfc-generated | | System.ComponentModel;ToolboxItemFilterAttribute;get_TypeId;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeConverter+SimplePropertyDescriptor;ResetValue;(System.Object);Argument[this];Argument[0];taint;df-generated | | System.ComponentModel;TypeConverter+StandardValuesCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | @@ -8614,15 +9157,20 @@ summary | System.ComponentModel;TypeConverter;GetStandardValues;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeConverter;SortProperties;(System.ComponentModel.PropertyDescriptorCollection,System.String[]);Argument[0];ReturnValue;value;dfc-generated | +| System.ComponentModel;TypeConverterAttribute;TypeConverterAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.TypeConverterAttribute.ConverterTypeName];value;dfc-generated | | System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptor;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptor;(System.Object);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptorFromRegisteredType;(System.Object);Argument[0];ReturnValue;taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptorFromRegisteredType;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetFullComponentName;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[1];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[this];ReturnValue;taint;df-generated | -| System.ComponentModel;TypeDescriptionProvider;TypeDescriptionProvider;(System.ComponentModel.TypeDescriptionProvider);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;TypeDescriptionProvider;(System.ComponentModel.TypeDescriptionProvider);Argument[0];Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent];value;dfc-generated | +| System.ComponentModel;TypeDescriptionProvider;get_RequireRegisteredTypes;();Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent].Property[System.ComponentModel.TypeDescriptionProvider.RequireRegisteredTypes];ReturnValue;value;dfc-generated | +| System.ComponentModel;TypeDescriptionProviderAttribute;TypeDescriptionProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.TypeDescriptionProviderAttribute.TypeName];value;dfc-generated | | System.ComponentModel;TypeDescriptor;AddAttributes;(System.Object,System.Attribute[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptor;AddAttributes;(System.Type,System.Attribute[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptor;CreateEvent;(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | @@ -8645,7 +9193,10 @@ summary | System.ComponentModel;VersionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;VersionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;WarningException;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | +| System.ComponentModel;WarningException;WarningException;(System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.WarningException.HelpUrl];value;dfc-generated | +| System.ComponentModel;WarningException;WarningException;(System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.WarningException.HelpTopic];value;dfc-generated | | System.ComponentModel;Win32Exception;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | +| System.Configuration.Internal;DelegatingConfigHost;CreateConfigurationContext;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;DelegatingConfigHost;GetStreamName;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;DelegatingConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Configuration.Internal;DelegatingConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[1];ReturnValue;taint;dfc-generated | @@ -8664,6 +9215,7 @@ summary | System.Configuration.Internal;IConfigSystem;get_Root;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigConfigurationFactory;Create;(System.Type,System.Object[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigConfigurationFactory;NormalizeLocationSubPath;(System.String,System.Configuration.Internal.IConfigErrorInfo);Argument[0];ReturnValue;value;dfc-generated | +| System.Configuration.Internal;IInternalConfigHost;CreateConfigurationContext;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamName;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[1];ReturnValue;taint;dfc-generated | @@ -8682,10 +9234,8 @@ summary | System.Configuration.Internal;IInternalConfigRecord;get_StreamName;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetConfigRecord;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetConfigRecord;(System.String);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetSection;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetSection;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigRecord;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigRecord;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;Init;(System.Configuration.Internal.IInternalConfigHost,System.Boolean);Argument[0];Argument[this];taint;df-generated | @@ -8694,6 +9244,7 @@ summary | System.Configuration.Internal;IInternalConfigRoot;remove_ConfigChanged;(System.Configuration.Internal.InternalConfigEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;IInternalConfigRoot;remove_ConfigRemoved;(System.Configuration.Internal.InternalConfigEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;IInternalConfigSystem;GetSection;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Configuration.Internal;InternalConfigEventArgs;InternalConfigEventArgs;(System.String);Argument[0];Argument[this].Property[System.Configuration.Internal.InternalConfigEventArgs.ConfigPath];value;dfc-generated | | System.Configuration.Internal;InternalConfigEventHandler;BeginInvoke;(System.Object,System.Configuration.Internal.InternalConfigEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;StreamChangeCallback;BeginInvoke;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Configuration.Provider;ProviderBase;Initialize;(System.String,System.Collections.Specialized.NameValueCollection);Argument[0];Argument[this].SyntheticField[System.Configuration.Provider.ProviderBase._name];value;dfc-generated | @@ -8839,6 +9390,7 @@ summary | System.Configuration;ConfigurationElementCollection;SerializeElement;(System.Xml.XmlWriter,System.Boolean);Argument[this];Argument[0];taint;df-generated | | System.Configuration;ConfigurationElementCollection;Unmerge;(System.Configuration.ConfigurationElement,System.Configuration.ConfigurationElement,System.Configuration.ConfigurationSaveMode);Argument[0];Argument[this];taint;df-generated | | System.Configuration;ConfigurationElementCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.Configuration;ConfigurationElementProperty;ConfigurationElementProperty;(System.Configuration.ConfigurationValidatorBase);Argument[0];Argument[this].Property[System.Configuration.ConfigurationElementProperty.Validator];value;dfc-generated | | System.Configuration;ConfigurationErrorsException;ConfigurationErrorsException;(System.String,System.Exception,System.String,System.Int32);Argument[2];Argument[this].SyntheticField[System.Configuration.ConfigurationErrorsException._firstFilename];value;dfc-generated | | System.Configuration;ConfigurationErrorsException;GetFilename;(System.Xml.XmlNode);Argument[0].Element;ReturnValue;taint;df-generated | | System.Configuration;ConfigurationErrorsException;GetFilename;(System.Xml.XmlReader);Argument[0].Property[System.Configuration.Internal.IConfigErrorInfo.Filename];ReturnValue;value;dfc-generated | @@ -8878,9 +9430,14 @@ summary | System.Configuration;ConfigurationPermission;Copy;();Argument[this];ReturnValue;value;dfc-generated | | System.Configuration;ConfigurationPermission;Intersect;(System.Security.IPermission);Argument[0];ReturnValue;value;dfc-generated | | System.Configuration;ConfigurationPermission;Union;(System.Security.IPermission);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type);Argument[0];Argument[this];taint;df-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type);Argument[0];Argument[this].Property[System.Configuration.ConfigurationProperty.Name];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[0];Argument[this].Property[System.Configuration.ConfigurationProperty.Name];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[2];Argument[this].Property[System.Configuration.ConfigurationProperty.DefaultValue];value;dfc-generated | | System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[3];Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[4];Argument[this].Property[System.Configuration.ConfigurationProperty.Validator];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[6];Argument[this].Property[System.Configuration.ConfigurationProperty.Description];value;dfc-generated | | System.Configuration;ConfigurationProperty;get_Converter;();Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter];ReturnValue;value;dfc-generated | +| System.Configuration;ConfigurationPropertyAttribute;ConfigurationPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.Configuration.ConfigurationPropertyAttribute.Name];value;dfc-generated | | System.Configuration;ConfigurationPropertyCollection;Add;(System.Configuration.ConfigurationProperty);Argument[0];Argument[this].SyntheticField[System.Configuration.ConfigurationPropertyCollection._items].Element;value;dfc-generated | | System.Configuration;ConfigurationPropertyCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationPropertyCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | @@ -8893,8 +9450,7 @@ summary | System.Configuration;ConfigurationSection;DeserializeSection;(System.Xml.XmlReader);Argument[0];Argument[this];taint;df-generated | | System.Configuration;ConfigurationSection;GetRuntimeObject;();Argument[this];ReturnValue;value;dfc-generated | | System.Configuration;ConfigurationSection;SerializeSection;(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[0];Argument[1];taint;df-generated | -| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[this];Argument[1];taint;df-generated | +| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSection.SectionInformation].Property[System.Configuration.SectionInformation.Name];value;dfc-generated | | System.Configuration;ConfigurationSectionCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationSectionCollection;Get;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionCollection;Get;(System.String);Argument[this];ReturnValue;taint;df-generated | @@ -8903,7 +9459,8 @@ summary | System.Configuration;ConfigurationSectionCollection;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionGroup;get_SectionGroups;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionGroup;get_Sections;();Argument[this];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[this];Argument[1];taint;df-generated | +| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSectionGroup.Name];value;dfc-generated | +| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSectionGroup.SectionGroupName];value;dfc-generated | | System.Configuration;ConfigurationSectionGroupCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationSectionGroupCollection;CopyTo;(System.Configuration.ConfigurationSectionGroup[],System.Int32);Argument[this];Argument[0].Element;taint;df-generated | | System.Configuration;ConfigurationSectionGroupCollection;Get;(System.Int32);Argument[this];ReturnValue;taint;df-generated | @@ -8940,6 +9497,9 @@ summary | System.Configuration;DefaultValidator;Validate;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Configuration;DictionarySectionHandler;Create;(System.Object,System.Object,System.Xml.XmlNode);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | System.Configuration;DpapiProtectedConfigurationProvider;Initialize;(System.String,System.Collections.Specialized.NameValueCollection);Argument[0];Argument[this].SyntheticField[System.Configuration.Provider.ProviderBase._name];value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename];value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename];value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename];value;dfc-generated | | System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this];ReturnValue;value;dfc-generated | | System.Configuration;GenericEnumConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.Configuration;GenericEnumConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | @@ -9027,6 +9587,7 @@ summary | System.Configuration;ProviderSettingsCollection;set_Item;(System.Int32,System.Configuration.ProviderSettings);Argument[this];Argument[1];taint;df-generated | | System.Configuration;RegexStringValidator;RegexStringValidator;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Configuration;RegexStringValidator;Validate;(System.Object);Argument[0];Argument[this];taint;df-generated | +| System.Configuration;RegexStringValidatorAttribute;RegexStringValidatorAttribute;(System.String);Argument[0];Argument[this].Property[System.Configuration.RegexStringValidatorAttribute.Regex];value;dfc-generated | | System.Configuration;RegexStringValidatorAttribute;get_ValidatorInstance;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;SchemeSettingElement;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;SchemeSettingElement;get_Properties;();Argument[this];ReturnValue;taint;df-generated | @@ -9088,6 +9649,7 @@ summary | System.Configuration;SettingsPropertyCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Configuration;SettingsPropertyCollection;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;SettingsPropertyCollection;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.Configuration;SettingsPropertyValue;SettingsPropertyValue;(System.Configuration.SettingsProperty);Argument[0];Argument[this].Property[System.Configuration.SettingsPropertyValue.Property];value;dfc-generated | | System.Configuration;SettingsPropertyValue;get_Name;();Argument[this].Property[System.Configuration.SettingsPropertyValue.Property].Property[System.Configuration.SettingsProperty.Name];ReturnValue;value;dfc-generated | | System.Configuration;SettingsPropertyValueCollection;Add;(System.Configuration.SettingsPropertyValue);Argument[0];Argument[this].SyntheticField[System.Configuration.SettingsPropertyValueCollection._values].Element;value;dfc-generated | | System.Configuration;SettingsPropertyValueCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -9150,6 +9712,10 @@ summary | System.Data.Common;DBDataPermission;Copy;();Argument[this];ReturnValue;value;dfc-generated | | System.Data.Common;DBDataPermission;Intersect;(System.Security.IPermission);Argument[0];ReturnValue;value;dfc-generated | | System.Data.Common;DBDataPermission;Union;(System.Security.IPermission);Argument[this];ReturnValue;taint;df-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[this];ReturnValue;taint;df-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader);Argument[this];ReturnValue;taint;df-generated | | System.Data.Common;DataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader);Argument[0];ReturnValue.Element;value;dfc-generated | | System.Data.Common;DataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader);Argument[0];ReturnValue;value;dfc-generated | | System.Data.Common;DataAdapter;GetFillParameters;();Argument[this];ReturnValue;taint;df-generated | @@ -9283,6 +9849,12 @@ summary | System.Data.Common;DbConnectionStringBuilder;set_Item;(System.String,System.Object);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Data.Common;DbConnectionStringBuilder;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Data.Common;DbDataAdapter;Clone;();Argument[this];ReturnValue;value;dfc-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[this];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior);Argument[this];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType);Argument[0];ReturnValue.Element;value;dfc-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType);Argument[0];ReturnValue;value;dfc-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior);Argument[0];ReturnValue.Element;value;dfc-generated | @@ -9940,7 +10512,6 @@ summary | System.Data.SqlTypes;SqlByte;ReadXml;(System.Xml.XmlReader);Argument[0];Argument[this];taint;df-generated | | System.Data.SqlTypes;SqlByte;WriteXml;(System.Xml.XmlWriter);Argument[this];Argument[0];taint;df-generated | | System.Data.SqlTypes;SqlBytes;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | -| System.Data.SqlTypes;SqlBytes;Read;(System.Int64,System.Byte[],System.Int32,System.Int32);Argument[this];Argument[1].Element;taint;df-generated | | System.Data.SqlTypes;SqlBytes;ReadXml;(System.Xml.XmlReader);Argument[0];Argument[this];taint;df-generated | | System.Data.SqlTypes;SqlBytes;SqlBytes;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._rgbBuf];value;dfc-generated | | System.Data.SqlTypes;SqlBytes;SqlBytes;(System.IO.Stream);Argument[0];Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._stream];value;dfc-generated | @@ -10023,7 +10594,9 @@ summary | System.Data;DataColumn;DataColumn;(System.String,System.Type,System.String,System.Data.MappingType);Argument[0];Argument[this];taint;df-generated | | System.Data;DataColumn;DataColumn;(System.String,System.Type,System.String,System.Data.MappingType);Argument[2];Argument[this];taint;df-generated | | System.Data;DataColumn;get_Table;();Argument[this];ReturnValue;taint;df-generated | +| System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[0];Argument[this].Property[System.Data.DataColumnChangeEventArgs.Row];value;dfc-generated | | System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[1];Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column];value;dfc-generated | +| System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[2];Argument[this].Property[System.Data.DataColumnChangeEventArgs.ProposedValue];value;dfc-generated | | System.Data;DataColumnChangeEventArgs;get_Column;();Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column];ReturnValue;value;dfc-generated | | System.Data;DataColumnChangeEventHandler;BeginInvoke;(System.Object,System.Data.DataColumnChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataColumnCollection;Add;();Argument[this];ReturnValue;taint;df-generated | @@ -10098,6 +10671,7 @@ summary | System.Data;DataRow;get_Item;(System.String,System.Data.DataRowVersion);Argument[this];ReturnValue;taint;df-generated | | System.Data;DataRow;get_Table;();Argument[this];ReturnValue;taint;df-generated | | System.Data;DataRow;set_Item;(System.Data.DataColumn,System.Object);Argument[0];Argument[this];taint;df-generated | +| System.Data;DataRowChangeEventArgs;DataRowChangeEventArgs;(System.Data.DataRow,System.Data.DataRowAction);Argument[0];Argument[this].Property[System.Data.DataRowChangeEventArgs.Row];value;dfc-generated | | System.Data;DataRowChangeEventHandler;BeginInvoke;(System.Object,System.Data.DataRowChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataRowCollection;Add;(System.Data.DataRow);Argument[0];Argument[this].Element;value;manual | | System.Data;DataRowCollection;Add;(System.Object[]);Argument[0];Argument[this].Element;value;manual | @@ -10207,6 +10781,7 @@ summary | System.Data;DataTable;remove_TableCleared;(System.Data.DataTableClearEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataTable;remove_TableClearing;(System.Data.DataTableClearEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataTable;remove_TableNewRow;(System.Data.DataTableNewRowEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Data;DataTableClearEventArgs;DataTableClearEventArgs;(System.Data.DataTable);Argument[0];Argument[this].Property[System.Data.DataTableClearEventArgs.Table];value;dfc-generated | | System.Data;DataTableClearEventArgs;get_TableName;();Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.TableName];ReturnValue;value;dfc-generated | | System.Data;DataTableClearEventArgs;get_TableNamespace;();Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.Namespace];ReturnValue;value;dfc-generated | | System.Data;DataTableClearEventHandler;BeginInvoke;(System.Object,System.Data.DataTableClearEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -10238,6 +10813,7 @@ summary | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[0].Element.Property[System.Data.DataRow.ItemArray];Argument[1].SyntheticField[System.Data.DataTable._rowCollection].Element;value;hq-generated | | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Data;DataTableNewRowEventArgs;DataTableNewRowEventArgs;(System.Data.DataRow);Argument[0];Argument[this].Property[System.Data.DataTableNewRowEventArgs.Row];value;dfc-generated | | System.Data;DataTableNewRowEventHandler;BeginInvoke;(System.Object,System.Data.DataTableNewRowEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataTableReader;DataTableReader;(System.Data.DataTable);Argument[0];Argument[this];taint;df-generated | | System.Data;DataTableReader;DataTableReader;(System.Data.DataTable[]);Argument[0].Element;Argument[this];taint;df-generated | @@ -10276,8 +10852,10 @@ summary | System.Data;DataView;OnListChanged;(System.ComponentModel.ListChangedEventArgs);Argument[0];Argument[this];taint;df-generated | | System.Data;DataView;ToTable;();Argument[this];ReturnValue;taint;df-generated | | System.Data;DataView;ToTable;(System.Boolean,System.String[]);Argument[this];ReturnValue;taint;df-generated | -| System.Data;DataView;ToTable;(System.String);Argument[0];ReturnValue.Property[System.Data.DataTable.TableName];value;dfc-generated | -| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[0];ReturnValue.Property[System.Data.DataTable.TableName];value;dfc-generated | +| System.Data;DataView;ToTable;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[0];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[this];ReturnValue;taint;df-generated | | System.Data;DataView;add_Initialized;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataView;add_ListChanged;(System.ComponentModel.ListChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataView;get_DataViewManager;();Argument[this].SyntheticField[System.Data.DataView._dataViewManager];ReturnValue;value;dfc-generated | @@ -10373,6 +10951,8 @@ summary | System.Data;IColumnMappingCollection;GetByDataSetColumn;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Data;IColumnMappingCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Data;IColumnMappingCollection;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element;value;manual | +| System.Data;IDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[0];ReturnValue;taint;df-generated | +| System.Data;IDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[this];ReturnValue;taint;df-generated | | System.Data;IDataAdapter;GetFillParameters;();Argument[this];ReturnValue;taint;df-generated | | System.Data;IDataParameterCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Data;IDataParameterCollection;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element;value;manual | @@ -10392,6 +10972,8 @@ summary | System.Data;InternalDataCollectionBase;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Data;InternalDataCollectionBase;get_List;();Argument[this];ReturnValue;taint;df-generated | | System.Data;InternalDataCollectionBase;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | +| System.Data;MergeFailedEventArgs;MergeFailedEventArgs;(System.Data.DataTable,System.String);Argument[0];Argument[this].Property[System.Data.MergeFailedEventArgs.Table];value;dfc-generated | +| System.Data;MergeFailedEventArgs;MergeFailedEventArgs;(System.Data.DataTable,System.String);Argument[1];Argument[this].Property[System.Data.MergeFailedEventArgs.Conflict];value;dfc-generated | | System.Data;MergeFailedEventHandler;BeginInvoke;(System.Object,System.Data.MergeFailedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;PropertyCollection;Clone;();Argument[this].Element;ReturnValue.Element;value;manual | | System.Data;StateChangeEventHandler;BeginInvoke;(System.Object,System.Data.StateChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -10427,6 +11009,11 @@ summary | System.Data;UniqueConstraint;UniqueConstraint;(System.String,System.String[],System.Boolean);Argument[1].Element;Argument[this];taint;df-generated | | System.Data;UniqueConstraint;get_Columns;();Argument[this];ReturnValue;taint;df-generated | | System.Data;UniqueConstraint;get_Table;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members].Element;value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String[]);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members];value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String);Argument[1];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members].Element;value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String[]);Argument[1];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members];value;dfc-generated | +| System.Diagnostics.CodeAnalysis;NotNullIfNotNullAttribute;NotNullIfNotNullAttribute;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName];value;dfc-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Int32,System.Int32,System.Predicate);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Collections.Generic.IEnumerable,System.Predicate);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Collections.Generic.IEnumerable,System.Predicate);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | @@ -10459,8 +11046,17 @@ summary | System.Diagnostics.Eventing.Reader;EventLogException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Diagnostics.Eventing.Reader;EventLogWatcher;add_EventRecordWritten;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Eventing.Reader;EventLogWatcher;remove_EventRecordWritten;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.KeyValuePair[]);Argument[1].Element;Argument[this];taint;df-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.ReadOnlySpan>);Argument[1];Argument[this];taint;df-generated | +| System.Diagnostics.Metrics;IMeterFactory;Create;(System.Diagnostics.Metrics.MeterOptions);Argument[this];Argument[0];taint;df-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Meter];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Name];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[2];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Unit];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[3];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Description];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>,System.Diagnostics.Metrics.InstrumentAdvice);Argument[5];Argument[this].Property[System.Diagnostics.Metrics.Instrument`1.Advice];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.KeyValuePair[]);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Diagnostics.TagList);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.ReadOnlySpan>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | | System.Diagnostics.Metrics;MeasurementCallback;BeginInvoke;(System.Diagnostics.Metrics.Instrument,T,System.ReadOnlySpan>,System.Object,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -10480,6 +11076,10 @@ summary | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func>,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func,System.String,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.Diagnostics.Metrics.MeterOptions);Argument[0];Argument[this];taint;df-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Meter.Name];value;dfc-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[1];Argument[this].Property[System.Diagnostics.Metrics.Meter.Version];value;dfc-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[3];Argument[this].Property[System.Diagnostics.Metrics.Meter.Scope];value;dfc-generated | | System.Diagnostics.Metrics;MeterListener;DisableMeasurementEvents;(System.Diagnostics.Metrics.Instrument);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics.Metrics;MeterListener;EnableMeasurementEvents;(System.Diagnostics.Metrics.Instrument,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics.Metrics;MeterListener;EnableMeasurementEvents;(System.Diagnostics.Metrics.Instrument,System.Object);Argument[1];Argument[this];taint;df-generated | @@ -10490,11 +11090,14 @@ summary | System.Diagnostics.Metrics;ObservableCounter;Observe;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Metrics;ObservableGauge;Observe;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Metrics;ObservableUpDownCounter;Observe;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetCheckSum;(System.Guid,System.Byte[]);Argument[0];Argument[this];taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetCheckSum;(System.Guid,System.Byte[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetSource;(System.Byte[]);Argument[0].Element;Argument[this];taint;df-generated | | System.Diagnostics.Tracing;EventCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;EventListener;DisableEvents;(System.Diagnostics.Tracing.EventSource);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords);Argument[this];Argument[0];taint;df-generated | -| System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary);Argument[this];Argument[0];taint;df-generated | +| System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary);Argument[3];Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments];value;dfc-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;dfc-generated | @@ -10506,6 +11109,7 @@ summary | System.Diagnostics.Tracing;EventSource;GenerateManifest;(System.Type,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;GenerateManifest;(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;GetTrait;(System.String);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_traits].Element;ReturnValue;value;dfc-generated | +| System.Diagnostics.Tracing;EventSource;SendCommand;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary);Argument[2];Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T);Argument[1];ReturnValue;value;dfc-generated | | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T);Argument[2];ReturnValue;value;dfc-generated | @@ -10515,6 +11119,8 @@ summary | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,T);Argument[2];ReturnValue;value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands];Argument[0].Parameter[1];value;dfc-generated | +| System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands];Argument[0].Parameter[1];value;hq-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;hq-generated | | System.Diagnostics.Tracing;EventSource;get_ConstructionException;();Argument[this];ReturnValue;taint;df-generated | @@ -10522,14 +11128,18 @@ summary | System.Diagnostics.Tracing;EventSource;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;remove_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_ActivityId;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.Tracing;EventWrittenEventArgs;get_RelatedActivityId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;IncrementingEventCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;IncrementingPollingCounter;IncrementingPollingCounter;(System.String,System.Diagnostics.Tracing.EventSource,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;IncrementingPollingCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;PollingCounter;PollingCounter;(System.String,System.Diagnostics.Tracing.EventSource,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;PollingCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics;Activity+Enumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;Activity;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.Activity.OperationName];value;dfc-generated | | System.Diagnostics;Activity;AddBaggage;(System.String,System.String);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddEvent;(System.Diagnostics.ActivityEvent);Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;AddException;(System.Exception,System.Diagnostics.TagList,System.DateTimeOffset);Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;AddLink;(System.Diagnostics.ActivityLink);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddTag;(System.String,System.Object);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddTag;(System.String,System.String);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;EnumerateEvents;();Argument[this];ReturnValue;taint;df-generated | @@ -10562,10 +11172,14 @@ summary | System.Diagnostics;Activity;get_TraceId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;Activity;remove_CurrentChanged;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Activity;set_TraceIdGenerator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[0];Argument[this].Property[System.Diagnostics.ActivityContext.TraceId];value;dfc-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[1];Argument[this].Property[System.Diagnostics.ActivityContext.SpanId];value;dfc-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[3];Argument[this].Property[System.Diagnostics.ActivityContext.TraceState];value;dfc-generated | | System.Diagnostics;ActivityCreationOptions;get_SamplingTags;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityCreationOptions;get_TraceId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityEvent;EnumerateTagObjects;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityEvent;get_Tags;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivityLink;ActivityLink;(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection);Argument[0];Argument[this].Property[System.Diagnostics.ActivityLink.Context];value;dfc-generated | | System.Diagnostics;ActivityLink;EnumerateTagObjects;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityLink;get_Tags;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityListener;set_ActivityStarted;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -10574,11 +11188,17 @@ summary | System.Diagnostics;ActivityListener;set_Sample;(System.Diagnostics.SampleActivity);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;ActivityListener;set_SampleUsingParentId;(System.Diagnostics.SampleActivity);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;ActivityListener;set_ShouldListenTo;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[2];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivitySource;ActivitySource;(System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.ActivitySource.Name];value;dfc-generated | +| System.Diagnostics;ActivitySource;ActivitySource;(System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[this].Property[System.Diagnostics.ActivitySource.Version];value;dfc-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[2];ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId];value;dfc-generated | -| System.Diagnostics;ActivitySource;StartActivity;(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String);Argument[1];ReturnValue;taint;df-generated | -| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[2];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[2];ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySpanId;ToHexString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivitySpanId;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityTagsCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -10626,6 +11246,7 @@ summary | System.Diagnostics;DelimitedListTraceListener;TraceEvent;(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[]);Argument[1];Argument[this];taint;df-generated | | System.Diagnostics;DelimitedListTraceListener;TraceEvent;(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[]);Argument[4];Argument[this];taint;df-generated | | System.Diagnostics;DelimitedListTraceListener;TraceEvent;(System.Diagnostics.TraceEventCache,System.String,System.Diagnostics.TraceEventType,System.Int32,System.String,System.Object[]);Argument[5].Element;Argument[this];taint;df-generated | +| System.Diagnostics;DiagnosticListener;DiagnosticListener;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.DiagnosticListener.Name];value;dfc-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>);Argument[0];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>);Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -10634,6 +11255,9 @@ summary | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Func,System.Action,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Predicate);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;DiagnosticListener;ToString;();Argument[this].Property[System.Diagnostics.DiagnosticListener.Name];ReturnValue;value;dfc-generated | +| System.Diagnostics;DiagnosticMethodInfo;Create;(System.Delegate);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;Create;(System.Diagnostics.StackFrame);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticSource;StartActivity;(System.Diagnostics.Activity,System.Object);Argument[0];ReturnValue;value;dfc-generated | | System.Diagnostics;DiagnosticSource;StartActivity;(System.Diagnostics.Activity,T);Argument[0];ReturnValue;value;dfc-generated | | System.Diagnostics;DistributedContextPropagator+PropagatorGetterCallback;BeginInvoke;(System.Object,System.String,System.String,System.Collections.Generic.IEnumerable,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | @@ -10690,6 +11314,8 @@ summary | System.Diagnostics;FileVersionInfo;get_ProductName;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;FileVersionInfo;get_ProductVersion;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;FileVersionInfo;get_SpecialBuild;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics;InitializingSwitchEventArgs;InitializingSwitchEventArgs;(System.Diagnostics.Switch);Argument[0];Argument[this].Property[System.Diagnostics.InitializingSwitchEventArgs.Switch];value;dfc-generated | +| System.Diagnostics;InitializingTraceSourceEventArgs;InitializingTraceSourceEventArgs;(System.Diagnostics.TraceSource);Argument[0];Argument[this].Property[System.Diagnostics.InitializingTraceSourceEventArgs.TraceSource];value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];ReturnValue;value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description];Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description];ReturnValue;value;dfc-generated | @@ -10698,6 +11324,9 @@ summary | System.Diagnostics;Process;GetProcessById;(System.Int32,System.String);Argument[1];ReturnValue.SyntheticField[System.Diagnostics.Process._machineName];value;dfc-generated | | System.Diagnostics;Process;GetProcesses;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Diagnostics;Process;Start;(System.Diagnostics.ProcessStartInfo);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics;Process;add_ErrorDataReceived;(System.Diagnostics.DataReceivedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Process;add_Exited;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Process;add_OutputDataReceived;(System.Diagnostics.DataReceivedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -10753,10 +11382,10 @@ summary | System.Diagnostics;TagList;Add;(System.Collections.Generic.KeyValuePair);Argument[0];Argument[this].Element;value;manual | | System.Diagnostics;TagList;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Diagnostics;TagList;CopyTo;(System.Collections.Generic.KeyValuePair[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | +| System.Diagnostics;TagList;CopyTo;(System.Span>);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics;TagList;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Diagnostics;TagList;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Diagnostics;TagList;Insert;(System.Int32,System.Collections.Generic.KeyValuePair);Argument[1];Argument[this].Element;value;manual | -| System.Diagnostics;TagList;TagList;(System.ReadOnlySpan>);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics;TagList;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Diagnostics;TagList;set_Item;(System.Int32,System.Collections.Generic.KeyValuePair);Argument[1];Argument[this].Element;value;manual | | System.Diagnostics;TextWriterTraceListener;TextWriterTraceListener;(System.IO.TextWriter,System.String);Argument[0];Argument[this];taint;df-generated | @@ -11007,9 +11636,16 @@ summary | System.Dynamic;BindingRestrictions;Merge;(System.Dynamic.BindingRestrictions);Argument[this];ReturnValue;value;dfc-generated | | System.Dynamic;BindingRestrictions;ToExpression;();Argument[this];ReturnValue;taint;df-generated | | System.Dynamic;ConvertBinder;FallbackConvert;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | +| System.Dynamic;CreateInstanceBinder;CreateInstanceBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.CreateInstanceBinder.CallInfo];value;dfc-generated | +| System.Dynamic;DeleteIndexBinder;DeleteIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.DeleteIndexBinder.CallInfo];value;dfc-generated | +| System.Dynamic;DeleteMemberBinder;DeleteMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.DeleteMemberBinder.Name];value;dfc-generated | | System.Dynamic;DynamicMetaObject;Create;(System.Object,System.Linq.Expressions.Expression);Argument[0];ReturnValue.SyntheticField[System.Dynamic.DynamicMetaObject._value];value;dfc-generated | +| System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions);Argument[0];Argument[this].Property[System.Dynamic.DynamicMetaObject.Expression];value;dfc-generated | +| System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions);Argument[1];Argument[this].Property[System.Dynamic.DynamicMetaObject.Restrictions];value;dfc-generated | | System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions,System.Object);Argument[2];Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value];value;dfc-generated | | System.Dynamic;DynamicMetaObject;get_Value;();Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value];ReturnValue;value;dfc-generated | +| System.Dynamic;DynamicMetaObjectBinder;Bind;(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue].Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Dynamic;DynamicMetaObjectBinder;Bind;(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Dynamic;ExpandoObject;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Dynamic;ExpandoObject;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Dynamic;ExpandoObject;Add;(System.Collections.Generic.KeyValuePair);Argument[0];Argument[this].Element;value;manual | @@ -11028,11 +11664,18 @@ summary | System.Dynamic;ExpandoObject;set_Item;(System.String,System.Object);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Dynamic;ExpandoObject;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Dynamic;GetIndexBinder;FallbackGetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;GetIndexBinder;GetIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.GetIndexBinder.CallInfo];value;dfc-generated | | System.Dynamic;GetMemberBinder;FallbackGetMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | +| System.Dynamic;GetMemberBinder;GetMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.GetMemberBinder.Name];value;dfc-generated | | System.Dynamic;InvokeBinder;FallbackInvoke;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;InvokeBinder;InvokeBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.InvokeBinder.CallInfo];value;dfc-generated | | System.Dynamic;InvokeMemberBinder;FallbackInvokeMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;InvokeMemberBinder;InvokeMemberBinder;(System.String,System.Boolean,System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.InvokeMemberBinder.Name];value;dfc-generated | +| System.Dynamic;InvokeMemberBinder;InvokeMemberBinder;(System.String,System.Boolean,System.Dynamic.CallInfo);Argument[2];Argument[this].Property[System.Dynamic.InvokeMemberBinder.CallInfo];value;dfc-generated | | System.Dynamic;SetIndexBinder;FallbackSetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[3];ReturnValue;value;dfc-generated | +| System.Dynamic;SetIndexBinder;SetIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.SetIndexBinder.CallInfo];value;dfc-generated | | System.Dynamic;SetMemberBinder;FallbackSetMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;SetMemberBinder;SetMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.SetMemberBinder.Name];value;dfc-generated | | System.Dynamic;UnaryOperationBinder;FallbackUnaryOperation;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | | System.Formats.Asn1;AsnDecoder;ReadBitString;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | System.Formats.Asn1;AsnDecoder;ReadEnumeratedBytes;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Nullable);Argument[0].Element;ReturnValue.Element;value;dfc-generated | @@ -11187,6 +11830,7 @@ summary | System.IO.Compression;BrotliStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;BrotliStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;BrotliStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.Compression;BrotliStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Compression;BrotliStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.Compression;BrotliStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.Compression;BrotliStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11210,6 +11854,7 @@ summary | System.IO.Compression;DeflateStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;DeflateStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;DeflateStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.Compression;DeflateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Compression;DeflateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.Compression;DeflateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.Compression;DeflateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11224,6 +11869,7 @@ summary | System.IO.Compression;GZipStream;FlushAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue.SyntheticField[System.Threading.Tasks.Task.m_stateObject];value;dfc-generated | | System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | +| System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;GZipStream;Read;(System.Byte[],System.Int32,System.Int32);Argument[this];Argument[0].Element;taint;manual | | System.IO.Compression;GZipStream;Read;(System.Span);Argument[this];Argument[0].Element;taint;manual | | System.IO.Compression;GZipStream;ReadAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | @@ -11231,6 +11877,7 @@ summary | System.IO.Compression;GZipStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;GZipStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;GZipStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.Compression;GZipStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Compression;GZipStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.Compression;GZipStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.Compression;GZipStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11250,11 +11897,13 @@ summary | System.IO.Compression;ZLibStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;ZLibStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.Compression;ZLibStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.Compression;ZLibStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Compression;ZLibStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.Compression;ZLibStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.Compression;ZLibStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | +| System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;ZLibStream;get_BaseStream;();Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];ReturnValue;value;dfc-generated | | System.IO.Compression;ZipArchive;CreateEntry;(System.String);Argument[0];ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._storedEntryName];value;dfc-generated | | System.IO.Compression;ZipArchive;CreateEntry;(System.String);Argument[this];ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._archive];value;dfc-generated | @@ -11303,6 +11952,7 @@ summary | System.IO.IsolatedStorage;IsolatedStorageFileStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.IsolatedStorage;IsolatedStorageFileStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11316,6 +11966,9 @@ summary | System.IO.Pipelines;Pipe;Pipe;(System.IO.Pipelines.PipeOptions);Argument[0];Argument[this];taint;df-generated | | System.IO.Pipelines;Pipe;get_Reader;();Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;Pipe;get_Writer;();Argument[this];ReturnValue;taint;df-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.PipeOptions.Pool];value;dfc-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[1];Argument[this].Property[System.IO.Pipelines.PipeOptions.ReaderScheduler];value;dfc-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[2];Argument[this].Property[System.IO.Pipelines.PipeOptions.WriterScheduler];value;dfc-generated | | System.IO.Pipelines;PipeReader;AsStream;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeReader;CopyToAsync;(System.IO.Stream,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | | System.IO.Pipelines;PipeReader;Create;(System.Buffers.ReadOnlySequence);Argument[0];ReturnValue;taint;df-generated | @@ -11332,8 +11985,11 @@ summary | System.IO.Pipelines;PipeWriter;GetMemory;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeWriter;GetSpan;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeWriter;OnReaderCompleted;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.IO.Pipelines;PipeWriter;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Pipelines;ReadResult;ReadResult;(System.Buffers.ReadOnlySequence,System.Boolean,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer];value;dfc-generated | | System.IO.Pipelines;ReadResult;get_Buffer;();Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer];ReturnValue;value;dfc-generated | +| System.IO.Pipelines;StreamPipeReaderOptions;StreamPipeReaderOptions;(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.StreamPipeReaderOptions.Pool];value;dfc-generated | +| System.IO.Pipelines;StreamPipeWriterOptions;StreamPipeWriterOptions;(System.Buffers.MemoryPool,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.StreamPipeWriterOptions.Pool];value;dfc-generated | | System.IO.Pipes;AnonymousPipeClientStream;AnonymousPipeClientStream;(System.IO.Pipes.PipeDirection,Microsoft.Win32.SafeHandles.SafePipeHandle);Argument[1];Argument[this];taint;df-generated | | System.IO.Pipes;AnonymousPipeServerStream;AnonymousPipeServerStream;(System.IO.Pipes.PipeDirection,Microsoft.Win32.SafeHandles.SafePipeHandle,Microsoft.Win32.SafeHandles.SafePipeHandle);Argument[2];Argument[this].SyntheticField[System.IO.Pipes.AnonymousPipeServerStream._clientHandle];value;dfc-generated | | System.IO.Pipes;AnonymousPipeServerStream;get_ClientSafePipeHandle;();Argument[this].SyntheticField[System.IO.Pipes.AnonymousPipeServerStream._clientHandle];ReturnValue;value;dfc-generated | @@ -11355,6 +12011,7 @@ summary | System.IO.Pipes;PipeStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO.Pipes;PipeStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO.Pipes;PipeStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO.Pipes;PipeStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Pipes;PipeStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO.Pipes;PipeStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO.Pipes;PipeStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11369,6 +12026,7 @@ summary | System.IO;BinaryWriter;DisposeAsync;();Argument[this];ReturnValue;taint;df-generated | | System.IO;BinaryWriter;Write;(System.Byte[]);Argument[0].Element;Argument[this];taint;df-generated | | System.IO;BinaryWriter;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;df-generated | +| System.IO;BinaryWriter;Write;(System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | | System.IO;BinaryWriter;get_BaseStream;();Argument[this].Field[System.IO.BinaryWriter.OutStream];ReturnValue;value;dfc-generated | | System.IO;BufferedStream;BeginRead;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;manual | | System.IO;BufferedStream;BeginRead;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[this];Argument[0].Element;taint;manual | @@ -11387,6 +12045,7 @@ summary | System.IO;BufferedStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;BufferedStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;BufferedStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;BufferedStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO;BufferedStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO;BufferedStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO;BufferedStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11397,6 +12056,7 @@ summary | System.IO;Directory;CreateDirectory;(System.String,System.IO.UnixFileMode);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | | System.IO;Directory;CreateSymbolicLink;(System.String,System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;Directory;CreateSymbolicLink;(System.String,System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | +| System.IO;Directory;GetDirectoryRoot;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.IO;Directory;GetParent;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;Directory;GetParent;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | | System.IO;DirectoryInfo;CreateSubdirectory;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | @@ -11425,6 +12085,8 @@ summary | System.IO;DirectoryInfo;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.IO;DirectoryInfo;get_Parent;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;DirectoryInfo;get_Parent;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | +| System.IO;DirectoryInfo;get_Root;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];taint;dfc-generated | +| System.IO;DirectoryInfo;get_Root;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];taint;dfc-generated | | System.IO;DriveInfo;DriveInfo;(System.String);Argument[0];Argument[this].SyntheticField[System.IO.DriveInfo._name];value;dfc-generated | | System.IO;DriveInfo;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.IO;DriveInfo;ToString;();Argument[this].Property[System.IO.DriveInfo.Name];ReturnValue;value;dfc-generated | @@ -11434,8 +12096,11 @@ summary | System.IO;ErrorEventArgs;GetException;();Argument[this].SyntheticField[System.IO.ErrorEventArgs._exception];ReturnValue;value;dfc-generated | | System.IO;ErrorEventHandler;BeginInvoke;(System.Object,System.IO.ErrorEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.IO;File;AppendAllBytesAsync;(System.String,System.Byte[],System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllBytesAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;AppendAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;AppendAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllTextAsync;(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllTextAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;AppendAllTextAsync;(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;AppendAllTextAsync;(System.String,System.String,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;Create;(System.String);Argument[0];ReturnValue;taint;dfc-generated | @@ -11456,8 +12121,11 @@ summary | System.IO;File;ReadLines;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;df-generated | | System.IO;File;ReadLines;(System.String,System.Text.Encoding);Argument[1];ReturnValue;taint;df-generated | | System.IO;File;WriteAllBytesAsync;(System.String,System.Byte[],System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllBytesAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;WriteAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;WriteAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllTextAsync;(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllTextAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;WriteAllTextAsync;(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;WriteAllTextAsync;(System.String,System.String,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;FileInfo;CopyTo;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | @@ -11508,6 +12176,7 @@ summary | System.IO;FileStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;FileStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;FileStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;FileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO;FileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO;FileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO;FileStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11565,9 +12234,16 @@ summary | System.IO;MemoryStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;MemoryStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;MemoryStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0].Property[System.ReadOnlyMemory`1.Span].Element;Argument[this];taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0].Property[System.ReadOnlyMemory`1.Span].Element;Argument[this];taint;dfc-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;dfc-generated | | System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;dfc-generated | | System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;dfc-generated | | System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;dfc-generated | | System.IO;MemoryStream;WriteTo;(System.IO.Stream);Argument[this];Argument[0];taint;df-generated | | System.IO;Path;ChangeExtension;(System.String,System.String);Argument[0];ReturnValue;value;dfc-generated | | System.IO;Path;Combine;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;manual | @@ -11662,6 +12338,7 @@ summary | System.IO;Stream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;Stream;WriteAsync;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;Stream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11713,6 +12390,8 @@ summary | System.IO;StreamWriter;Write;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;StreamWriter;Write;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;StreamWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;StreamWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;StreamWriter;Write;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;StreamWriter;WriteAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.IO;StreamWriter;WriteAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;dfc-generated | | System.IO;StreamWriter;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | @@ -11731,6 +12410,8 @@ summary | System.IO;StreamWriter;WriteLine;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;StreamWriter;WriteLine;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;StreamWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;StreamWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;StreamWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;StreamWriter;WriteLineAsync;();Argument[this];ReturnValue;taint;df-generated | | System.IO;StreamWriter;WriteLineAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.IO;StreamWriter;WriteLineAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;df-generated | @@ -11818,6 +12499,8 @@ summary | System.IO;TextWriter;Write;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;TextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;TextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.Text.StringBuilder);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.IO;TextWriter;WriteAsync;(System.Char[]);Argument[0].Element;Argument[this];taint;df-generated | @@ -11845,6 +12528,8 @@ summary | System.IO;TextWriter;WriteLine;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;TextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;TextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.Text.StringBuilder);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLineAsync;();Argument[this];ReturnValue;taint;df-generated | | System.IO;TextWriter;WriteLineAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | @@ -11883,6 +12568,7 @@ summary | System.IO;UnmanagedMemoryStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;UnmanagedMemoryStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;UnmanagedMemoryStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;UnmanagedMemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO;UnmanagedMemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO;UnmanagedMemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO;UnmanagedMemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -11902,8 +12588,13 @@ summary | System.Linq.Expressions;BlockExpression;get_Result;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;BlockExpression;get_Variables;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;CatchBlock;ToString;();Argument[this].Property[System.Linq.Expressions.CatchBlock.Variable].Property[System.Linq.Expressions.ParameterExpression.Name];ReturnValue;taint;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | | System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;get_IfFalse;();Argument[this].SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];ReturnValue;value;dfc-generated | @@ -11942,6 +12633,8 @@ summary | System.Linq.Expressions;ElementInit;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;ElementInit;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;dfc-generated | | System.Linq.Expressions;ElementInit;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments];value;dfc-generated | +| System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.ElementInit.AddMethod];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | | System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;Add;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -11957,8 +12650,11 @@ summary | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;Expression;ArrayIndex;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;ArrayLength;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Bind;(System.Reflection.MemberInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;Expression;Bind;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;Expression;Block;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue;taint;df-generated | @@ -11979,17 +12675,26 @@ summary | System.Linq.Expressions;Expression;Block;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg0];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg1];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | @@ -12003,9 +12708,34 @@ summary | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | | System.Linq.Expressions;Expression;Coalesce;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Constant;(System.Object);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Constant;(System.Object,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[2];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[2];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Divide;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;DivideAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;DivideAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -12021,16 +12751,46 @@ summary | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | | System.Linq.Expressions;Expression;Equal;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOr;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;Field;(System.Linq.Expressions.Expression,System.Reflection.FieldInfo);Argument[1];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;GreaterThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;GreaterThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThen;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThen;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Invoke;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.String);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name];value;dfc-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Boolean,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue;taint;df-generated | @@ -12043,10 +12803,28 @@ summary | System.Linq.Expressions;Expression;LeftShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;LessThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;LessThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.ElementInit[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[4];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[4];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[5];ReturnValue.SyntheticField[System.Linq.Expressions.CoalesceConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[5];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | @@ -12058,9 +12836,26 @@ summary | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | | System.Linq.Expressions;Expression;MakeMemberAccess;(System.Linq.Expressions.Expression,System.Reflection.MemberInfo);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.FieldExpression._field];value;dfc-generated | | System.Linq.Expressions;Expression;MakeMemberAccess;(System.Linq.Expressions.Expression,System.Reflection.MemberInfo);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.PropertyExpression._property];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[4];ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[3];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.MemberBinding[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | | System.Linq.Expressions;Expression;Modulo;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ModuloAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ModuloAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -12073,28 +12868,74 @@ summary | System.Linq.Expressions;Expression;MultiplyAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MultiplyAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;MultiplyChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[]);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;NotEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Or;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;OrElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Parameter;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Power;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo);Argument[1];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.String,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Quote;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Reduce;();Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;ReduceAndCheck;();Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;ReduceExtensions;();Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;RightShift;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;RuntimeVariables;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;Expression;Subtract;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -12103,12 +12944,50 @@ summary | System.Linq.Expressions;Expression;SubtractAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[4];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;SymbolDocument;(System.String);Argument[0];ReturnValue.Property[System.Linq.Expressions.SymbolDocumentInfo.FileName];value;dfc-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[3];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatch;(System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatchFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatchFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFault;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFault;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeAs;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeEqual;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeIs;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Unbox;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Variable;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name];value;dfc-generated | | System.Linq.Expressions;Expression;VisitChildren;(System.Linq.Expressions.ExpressionVisitor);Argument[this];Argument[0];taint;df-generated | | System.Linq.Expressions;Expression;VisitChildren;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | @@ -12157,19 +13036,28 @@ summary | System.Linq.Expressions;ExpressionVisitor;VisitMemberBinding;(System.Linq.Expressions.MemberBinding);Argument[0];Argument[this];taint;df-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberBinding;(System.Linq.Expressions.MemberBinding);Argument[0];ReturnValue;taint;df-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberInit;(System.Linq.Expressions.MemberInitExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitMemberListBinding;(System.Linq.Expressions.MemberListBinding);Argument[0].Property[System.Linq.Expressions.MemberListBinding.Initializers];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberListBinding;(System.Linq.Expressions.MemberListBinding);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitMemberMemberBinding;(System.Linq.Expressions.MemberMemberBinding);Argument[0].Property[System.Linq.Expressions.MemberMemberBinding.Bindings];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberMemberBinding;(System.Linq.Expressions.MemberMemberBinding);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMethodCall;(System.Linq.Expressions.MethodCallExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitNewArray;(System.Linq.Expressions.NewArrayExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitParameter;(System.Linq.Expressions.ParameterExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitRuntimeVariables;(System.Linq.Expressions.RuntimeVariablesExpression);Argument[0].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitRuntimeVariables;(System.Linq.Expressions.RuntimeVariablesExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitSwitch;(System.Linq.Expressions.SwitchExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitSwitchCase;(System.Linq.Expressions.SwitchCase);Argument[0].Property[System.Linq.Expressions.SwitchCase.TestValues];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitSwitchCase;(System.Linq.Expressions.SwitchCase);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitTry;(System.Linq.Expressions.TryExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitTypeBinary;(System.Linq.Expressions.TypeBinaryExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitUnary;(System.Linq.Expressions.UnaryExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;GotoExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | | System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;IArgumentProvider;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;IndexExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | @@ -12177,13 +13065,18 @@ summary | System.Linq.Expressions;IndexExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments].Element;ReturnValue;value;dfc-generated | | System.Linq.Expressions;IndexExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;IndexExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;dfc-generated | +| System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.IndexExpression.Indexer];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;IndexExpression;get_Arguments;();Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments];ReturnValue;value;dfc-generated | | System.Linq.Expressions;InvocationExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;InvocationExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;InvocationExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LabelExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue];value;dfc-generated | | System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LabelTarget;ToString;();Argument[this].Property[System.Linq.Expressions.LabelTarget.Name];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LambdaExpression;get_Body;();Argument[this];ReturnValue;taint;df-generated | @@ -12191,12 +13084,18 @@ summary | System.Linq.Expressions;LambdaExpression;get_Parameters;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;ListInitExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ListInitExpression;Reduce;();Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers];value;dfc-generated | | System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LoopExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel];value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | | System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberAssignment;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;MemberAssignment;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberAssignment;get_Expression;();Argument[this].SyntheticField[System.Linq.Expressions.MemberAssignment._expression];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberBinding;MemberBinding;(System.Linq.Expressions.MemberBindingType,System.Reflection.MemberInfo);Argument[1];Argument[this].Property[System.Linq.Expressions.MemberBinding.Member];value;dfc-generated | | System.Linq.Expressions;MemberBinding;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;MemberExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;df-generated | @@ -12204,8 +13103,12 @@ summary | System.Linq.Expressions;MemberExpression;get_Member;();Argument[this].SyntheticField[System.Linq.Expressions.PropertyExpression._property];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberInitExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberInitExpression;Reduce;();Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings];value;dfc-generated | | System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberListBinding;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | | System.Linq.Expressions;MemberListBinding;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberMemberBinding;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | | System.Linq.Expressions;MemberMemberBinding;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MethodCallExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MethodCallExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | @@ -12214,26 +13117,45 @@ summary | System.Linq.Expressions;MethodCallExpression;get_Object;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;NewArrayExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewArrayExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;NewExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;NewExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments].Element;ReturnValue;value;df-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments].Element;ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;dfc-generated | | System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewExpression;get_Arguments;();Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ParameterExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;RuntimeVariablesExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;RuntimeVariablesExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;RuntimeVariablesExpression;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;RuntimeVariablesExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | +| System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | | System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;SwitchExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this].Property[System.Linq.Expressions.SwitchExpression.Comparison];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | | System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;TryExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | | System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;TypeBinaryExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;TypeBinaryExpression;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | | System.Linq.Expressions;TypeBinaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;UnaryExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;UnaryExpression;Reduce;();Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this].Property[System.Linq.Expressions.UnaryExpression.Method];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;Aggregate;(System.Collections.Generic.IEnumerable,TAccumulate,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[1];value;manual | | System.Linq;Enumerable;Aggregate;(System.Collections.Generic.IEnumerable,TAccumulate,System.Func,System.Func);Argument[1];Argument[2].Parameter[0];value;manual | @@ -12361,7 +13283,6 @@ summary | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;hq-generated | -| System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[0].Element;ReturnValue;value;dfc-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[1];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;GroupBy;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,TResult>);Argument[0].Element;Argument[1].Parameter[0];value;manual | | System.Linq;Enumerable;GroupBy;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,TResult>);Argument[0].Element;Argument[2].Parameter[0];value;manual | @@ -12465,7 +13386,6 @@ summary | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;hq-generated | -| System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[0].Element;ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[1];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LongCount;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;manual | | System.Linq;Enumerable;LongCount;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;manual | @@ -12778,6 +13698,7 @@ summary | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray+Builder);Argument[0].Element;ReturnValue;value;manual | | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray+Builder);Argument[0].Element;ReturnValue;value;manual | | System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;Select;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -12796,6 +13717,7 @@ summary | System.Linq;ImmutableArrayExtensions;SequenceEqual;(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;Single;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;Single;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;ToArray;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;ToDictionary;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | @@ -13569,11 +14491,10 @@ summary | System.Net.Http.Headers;ContentDispositionHeaderValue;ContentDispositionHeaderValue;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];value;dfc-generated | | System.Net.Http.Headers;ContentDispositionHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];ReturnValue;taint;dfc-generated | | System.Net.Http.Headers;ContentRangeHeaderValue;Clone;();Argument[this];ReturnValue;value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;Clone;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue.SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;Clone;();Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue.Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];value;dfc-generated | | System.Net.Http.Headers;EntityTagHeaderValue;Clone;();Argument[this];ReturnValue;value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;EntityTagHeaderValue;(System.String,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue;value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;get_Tag;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue;value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;EntityTagHeaderValue;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;ToString;();Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this].Property[System.Net.Http.Headers.HeaderStringValues+Enumerator.Current];ReturnValue;value;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this].Property[System.Net.Http.Headers.HeaderStringValues+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -13587,6 +14508,7 @@ summary | System.Net.Http.Headers;HttpHeaderValueCollection;CopyTo;(T[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Net.Http.Headers;HttpHeaderValueCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Net.Http.Headers;HttpHeaderValueCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Net.Http.Headers;HttpHeaderValueCollection;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Headers;HttpHeaders;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Net.Http.Headers;HttpHeaders;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Net.Http.Headers;HttpHeaders;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | @@ -13652,7 +14574,7 @@ summary | System.Net.Http.Headers;RangeConditionHeaderValue;Clone;();Argument[this];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;RangeConditionHeaderValue;(System.DateTimeOffset);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date];value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;RangeConditionHeaderValue;(System.Net.Http.Headers.EntityTagHeaderValue);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];value;dfc-generated | -| System.Net.Http.Headers;RangeConditionHeaderValue;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Http.Headers;RangeConditionHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;get_Date;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;get_EntityTag;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeHeaderValue;Clone;();Argument[this];ReturnValue;value;dfc-generated | @@ -13699,8 +14621,10 @@ summary | System.Net.Http.Headers;WarningHeaderValue;get_Agent;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._agent];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;WarningHeaderValue;get_Date;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._date];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;WarningHeaderValue;get_Text;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._text];ReturnValue;value;dfc-generated | -| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[1];ReturnValue;taint;df-generated | -| System.Net.Http.Json;JsonContent;Create;(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[1];ReturnValue;taint;df-generated | +| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(T,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | | System.Net.Http.Json;JsonContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | | System.Net.Http.Json;JsonContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext);Argument[0];ReturnValue;taint;df-generated | | System.Net.Http.Json;JsonContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext);Argument[this];Argument[0];taint;df-generated | @@ -13755,8 +14679,6 @@ summary | System.Net.Http;HttpContent;CreateContentReadStream;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;CreateContentReadStreamAsync;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;CreateContentReadStreamAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;HttpContent;ReadAsByteArrayAsync;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;HttpContent;ReadAsByteArrayAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStream;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStream;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStreamAsync;();Argument[this];ReturnValue;taint;df-generated | @@ -13777,10 +14699,11 @@ summary | System.Net.Http;HttpMethod;HttpMethod;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];value;dfc-generated | | System.Net.Http;HttpMethod;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];ReturnValue;value;dfc-generated | | System.Net.Http;HttpMethod;get_Method;();Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];ReturnValue;value;dfc-generated | +| System.Net.Http;HttpRequestException;HttpRequestException;(System.String,System.Exception,System.Nullable);Argument[2];Argument[this].Property[System.Net.Http.HttpRequestException.StatusCode];value;dfc-generated | | System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.String);Argument[0];Argument[this];taint;manual | | System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.String);Argument[1];Argument[this];taint;manual | -| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[0];Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method];value;dfc-generated | -| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[1];Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._requestUri];value;dfc-generated | +| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[0];Argument[this];taint;manual | +| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[1];Argument[this];taint;manual | | System.Net.Http;HttpRequestMessage;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method];ReturnValue;taint;dfc-generated | | System.Net.Http;HttpRequestMessage;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._requestUri];ReturnValue;taint;dfc-generated | | System.Net.Http;HttpRequestMessage;get_Properties;();Argument[this].Property[System.Net.Http.HttpRequestMessage.Options];ReturnValue;value;dfc-generated | @@ -13800,6 +14723,7 @@ summary | System.Net.Http;HttpRequestOptions;get_Values;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpRequestOptions;set_Item;(System.String,System.Object);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Net.Http;HttpRequestOptions;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | +| System.Net.Http;HttpRequestOptionsKey;HttpRequestOptionsKey;(System.String);Argument[0];Argument[this].Property[System.Net.Http.HttpRequestOptionsKey`1.Key];value;dfc-generated | | System.Net.Http;HttpResponseMessage;EnsureSuccessStatusCode;();Argument[this];ReturnValue;value;dfc-generated | | System.Net.Http;HttpResponseMessage;ToString;();Argument[this].Property[System.Net.Http.HttpResponseMessage.ReasonPhrase];ReturnValue;taint;dfc-generated | | System.Net.Http;MultipartContent;Add;(System.Net.Http.HttpContent);Argument[0];Argument[this].Element;value;manual | @@ -13847,7 +14771,10 @@ summary | System.Net.Http;SocketsHttpPlaintextStreamFilterContext;get_PlaintextStream;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;StreamContent;CreateContentReadStream;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;StreamContent;CreateContentReadStreamAsync;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this].SyntheticField[System.Net.Http.StreamContent._content];Argument[0];taint;df-generated | +| System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this].SyntheticField[System.Net.Http.StreamContent._content];Argument[0];taint;dfc-generated | | System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | +| System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];Argument[0];taint;dfc-generated | | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext);Argument[0];ReturnValue;taint;df-generated | | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext);Argument[this];Argument[0];taint;df-generated | | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext);Argument[this];ReturnValue;taint;df-generated | @@ -13855,8 +14782,8 @@ summary | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | | System.Net.Http;StreamContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream);Argument[0];Argument[this];taint;df-generated | -| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream);Argument[0];Argument[this].SyntheticField[System.Net.Http.StreamContent._content];value;dfc-generated | +| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream,System.Int32);Argument[0];Argument[this].SyntheticField[System.Net.Http.StreamContent._content];value;dfc-generated | | System.Net.Http;StringContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Http;StringContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.Net.Http;StringContent;SerializeToStreamAsync;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | @@ -14011,6 +14938,10 @@ summary | System.Net.NetworkInformation;NetworkInterface;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Net.NetworkInformation;PhysicalAddress;GetAddressBytes;();Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address].Element;ReturnValue.Element;value;dfc-generated | | System.Net.NetworkInformation;PhysicalAddress;PhysicalAddress;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.String,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | | System.Net.NetworkInformation;Ping;add_PingCompleted;(System.Net.NetworkInformation.PingCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.NetworkInformation;Ping;remove_PingCompleted;(System.Net.NetworkInformation.PingCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.NetworkInformation;PingCompletedEventHandler;BeginInvoke;(System.Object,System.Net.NetworkInformation.PingCompletedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -14026,7 +14957,9 @@ summary | System.Net.PeerToPeer;PnrpPermission;Copy;();Argument[this];ReturnValue;value;dfc-generated | | System.Net.PeerToPeer;PnrpPermission;Intersect;(System.Security.IPermission);Argument[0];ReturnValue;value;dfc-generated | | System.Net.PeerToPeer;PnrpPermission;Union;(System.Security.IPermission);Argument[this];ReturnValue;taint;df-generated | +| System.Net.Quic;QuicConnection;ConnectAsync;(System.Net.Quic.QuicClientConnectionOptions,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;DisposeAsync;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Quic;QuicConnection;OpenOutboundStreamAsync;(System.Net.Quic.QuicStreamType,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_LocalEndPoint;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_NegotiatedApplicationProtocol;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_RemoteCertificate;();Argument[this];ReturnValue;taint;df-generated | @@ -14048,6 +14981,7 @@ summary | System.Net.Quic;QuicStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.Net.Quic;QuicStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.Net.Quic;QuicStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.Net.Quic;QuicStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Quic;QuicStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Quic;QuicStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Net.Quic;QuicStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -14086,6 +15020,7 @@ summary | System.Net.Security;NegotiateStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | System.Net.Security;NegotiateStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.Net.Security;NegotiateStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.Net.Security;NegotiateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;NegotiateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Security;NegotiateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Net.Security;NegotiateStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -14098,17 +15033,31 @@ summary | System.Net.Security;SslCertificateTrust;CreateForX509Store;(System.Security.Cryptography.X509Certificates.X509Store,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Net.Security;SslClientAuthenticationOptions;set_LocalCertificateSelectionCallback;(System.Net.Security.LocalCertificateSelectionCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslClientAuthenticationOptions;set_RemoteCertificateValidationCallback;(System.Net.Security.RemoteCertificateValidationCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslClientHelloInfo;SslClientHelloInfo;(System.String,System.Security.Authentication.SslProtocols);Argument[0];Argument[this].Property[System.Net.Security.SslClientHelloInfo.ServerName];value;dfc-generated | | System.Net.Security;SslServerAuthenticationOptions;set_RemoteCertificateValidationCallback;(System.Net.Security.RemoteCertificateValidationCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslServerAuthenticationOptions;set_ServerCertificateSelectionCallback;(System.Net.Security.ServerCertificateSelectionCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;AuthenticateAsClient;(System.Net.Security.SslClientAuthenticationOptions);Argument[0];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | | System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken);Argument[1];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | | System.Net.Security;SslStream;AuthenticateAsServer;(System.Net.Security.SslServerAuthenticationOptions);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.ServerOptionsSelectionCallback,System.Object,System.Threading.CancellationToken);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | -| System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken);Argument[1];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | @@ -14119,7 +15068,6 @@ summary | System.Net.Security;SslStream;BeginWrite;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;manual | | System.Net.Security;SslStream;DisposeAsync;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;FlushAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue.SyntheticField[System.Threading.Tasks.Task.m_stateObject];value;dfc-generated | -| System.Net.Security;SslStream;NegotiateClientCertificateAsync;(System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;SslStream;Read;(System.Byte[],System.Int32,System.Int32);Argument[this];Argument[0].Element;taint;manual | | System.Net.Security;SslStream;ReadAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | System.Net.Security;SslStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | @@ -14131,15 +15079,17 @@ summary | System.Net.Security;SslStream;Write;(System.Byte[]);Argument[0].Element;Argument[this];taint;dfc-generated | | System.Net.Security;SslStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.Net.Security;SslStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.Net.Security;SslStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;SslStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;get_LocalCertificate;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;get_NegotiatedApplicationProtocol;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;get_RemoteCertificate;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Security;SslStream;get_TargetHostName;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Security;SslStream;get_TargetHostName;();Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];ReturnValue;value;dfc-generated | | System.Net.Security;SslStream;get_TransportContext;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust);Argument[3];ReturnValue;taint;df-generated | +| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean);Argument[0];ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate];value;dfc-generated | +| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust);Argument[0];ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate];value;dfc-generated | | System.Net.Sockets;IPPacketInformation;get_Address;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;IPv6MulticastOption;IPv6MulticastOption;(System.Net.IPAddress);Argument[0];Argument[this];taint;df-generated | | System.Net.Sockets;IPv6MulticastOption;IPv6MulticastOption;(System.Net.IPAddress,System.Int64);Argument[0];Argument[this];taint;df-generated | @@ -14160,10 +15110,15 @@ summary | System.Net.Sockets;NetworkStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.Net.Sockets;NetworkStream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.Net.Sockets;NetworkStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.Net.Sockets;NetworkStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Sockets;NetworkStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Net.Sockets;NetworkStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Net.Sockets;NetworkStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;NetworkStream;get_Socket;();Argument[this].SyntheticField[System.Net.Sockets.NetworkStream._streamSocket];ReturnValue;value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.Byte[],System.Int32,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.Buffer];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.IO.FileStream,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.FileStream];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.ReadOnlyMemory,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.MemoryBuffer];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.FilePath];value;dfc-generated | | System.Net.Sockets;Socket;Accept;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;Socket;AcceptAsync;(System.Net.Sockets.SocketAsyncEventArgs);Argument[this];Argument[0];taint;df-generated | | System.Net.Sockets;Socket;BeginAccept;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -14261,8 +15216,6 @@ summary | System.Net.Sockets;UdpClient;BeginSend;(System.Byte[],System.Int32,System.Net.IPEndPoint,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Net.Sockets;UdpClient;BeginSend;(System.Byte[],System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Net.Sockets;UdpClient;Connect;(System.Net.IPEndPoint);Argument[0];Argument[this];taint;df-generated | -| System.Net.Sockets;UdpClient;EndReceive;(System.IAsyncResult,System.Net.IPEndPoint);Argument[this];ReturnValue;taint;df-generated | -| System.Net.Sockets;UdpClient;Receive;(System.Net.IPEndPoint);Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;UdpClient;Send;(System.Byte[],System.Int32,System.Net.IPEndPoint);Argument[2];Argument[this];taint;df-generated | | System.Net.Sockets;UdpClient;Send;(System.ReadOnlySpan,System.Net.IPEndPoint);Argument[1];Argument[this];taint;df-generated | | System.Net.Sockets;UdpClient;SendAsync;(System.Byte[],System.Int32,System.Net.IPEndPoint);Argument[2];Argument[this];taint;df-generated | @@ -14302,6 +15255,8 @@ summary | System.Net.WebSockets;WebSocketContext;get_User;();Argument[this];ReturnValue;taint;df-generated | | System.Net.WebSockets;WebSocketContext;get_WebSocket;();Argument[this];ReturnValue;taint;df-generated | | System.Net.WebSockets;WebSocketException;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String);Argument[3];Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatus];value;dfc-generated | +| System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String);Argument[4];Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatusDescription];value;dfc-generated | | System.Net;AuthenticationSchemeSelector;BeginInvoke;(System.Net.HttpListenerRequest,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;BindIPEndPoint;BeginInvoke;(System.Net.ServicePoint,System.Net.IPEndPoint,System.Int32,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Net;Cookie;Cookie;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | @@ -14329,6 +15284,10 @@ summary | System.Net;Dns;BeginGetHostEntry;(System.Net.IPAddress,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;Dns;BeginGetHostEntry;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;Dns;BeginResolve;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Net;Dns;GetHostByName;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;GetHostEntry;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;GetHostEntry;(System.String,System.Net.Sockets.AddressFamily);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;Resolve;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | | System.Net;DnsEndPoint;DnsEndPoint;(System.String,System.Int32,System.Net.Sockets.AddressFamily);Argument[0];Argument[this].SyntheticField[System.Net.DnsEndPoint._host];value;dfc-generated | | System.Net;DnsEndPoint;ToString;();Argument[this].SyntheticField[System.Net.DnsEndPoint._host];ReturnValue;taint;dfc-generated | | System.Net;DnsEndPoint;get_Host;();Argument[this].SyntheticField[System.Net.DnsEndPoint._host];ReturnValue;value;dfc-generated | @@ -14373,6 +15332,8 @@ summary | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[1];ReturnValue.SyntheticField[System.Net.ListenerAsyncResult._state];value;dfc-generated | | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[1];ReturnValue.SyntheticField[System.Net.ListenerAsyncResult._state];value;hq-generated | +| System.Net;HttpListener;EndGetContext;(System.IAsyncResult);Argument[0];ReturnValue;taint;df-generated | +| System.Net;HttpListener;GetContext;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_DefaultServiceNames;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_Prefixes;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_TimeoutManager;();Argument[this];ReturnValue;taint;df-generated | @@ -14558,6 +15519,8 @@ summary | System.Net;WebProxy;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Net;WebProxy;GetProxy;(System.Uri);Argument[0];ReturnValue;value;dfc-generated | | System.Net;WebProxy;GetProxy;(System.Uri);Argument[this].Property[System.Net.WebProxy.Address];ReturnValue;value;dfc-generated | +| System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[],System.Net.ICredentials);Argument[0];Argument[this].Property[System.Net.WebProxy.Address];value;dfc-generated | +| System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[],System.Net.ICredentials);Argument[3];Argument[this].Property[System.Net.WebProxy.Credentials];value;dfc-generated | | System.Net;WebRequest;BeginGetRequestStream;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;WebRequest;BeginGetResponse;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;WebRequest;Create;(System.String);Argument[0];ReturnValue;taint;df-generated | @@ -14608,6 +15571,7 @@ summary | System.Numerics;BigInteger;MinMagnitudeNumber;(System.Numerics.BigInteger,System.Numerics.BigInteger);Argument[1];ReturnValue;value;dfc-generated | | System.Numerics;BigInteger;MinNumber;(System.Numerics.BigInteger,System.Numerics.BigInteger);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;BigInteger;MinNumber;(System.Numerics.BigInteger,System.Numerics.BigInteger);Argument[1];ReturnValue;value;dfc-generated | +| System.Numerics;BigInteger;MultiplyAddEstimate;(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger);Argument[2];ReturnValue;taint;dfc-generated | | System.Numerics;BigInteger;Pow;(System.Numerics.BigInteger,System.Int32);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;BigInteger;Remainder;(System.Numerics.BigInteger,System.Numerics.BigInteger);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;BigInteger;RotateLeft;(System.Numerics.BigInteger,System.Int32);Argument[0];ReturnValue;value;dfc-generated | @@ -14624,9 +15588,12 @@ summary | System.Numerics;Complex;MinMagnitude;(System.Numerics.Complex,System.Numerics.Complex);Argument[1];ReturnValue;value;dfc-generated | | System.Numerics;Complex;MinMagnitudeNumber;(System.Numerics.Complex,System.Numerics.Complex);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Complex;MinMagnitudeNumber;(System.Numerics.Complex,System.Numerics.Complex);Argument[1];ReturnValue;value;dfc-generated | +| System.Numerics;Complex;MultiplyAddEstimate;(System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex);Argument[2];ReturnValue;taint;dfc-generated | | System.Numerics;Complex;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System.Numerics;IAdditionOperators;op_CheckedAddition;(TSelf,TOther);Argument[0];ReturnValue;taint;dfc-generated | | System.Numerics;IAdditionOperators;op_CheckedAddition;(TSelf,TOther);Argument[1];ReturnValue;taint;dfc-generated | +| System.Numerics;IFloatingPoint;ConvertToInteger;(TSelf);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;IFloatingPoint;ConvertToIntegerNative;(TSelf);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[1];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[2];ReturnValue;value;dfc-generated | @@ -14642,21 +15609,25 @@ summary | System.Numerics;INumberBase;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumberBase;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumberBase;CreateTruncating;(TOther);Argument[0];ReturnValue;value;dfc-generated | -| System.Numerics;Plane;Normalize;(System.Numerics.Plane);Argument[0];ReturnValue;value;dfc-generated | -| System.Numerics;Plane;Plane;(System.Numerics.Vector3,System.Single);Argument[0];Argument[this].Field[System.Numerics.Plane.Normal];value;dfc-generated | +| System.Numerics;INumberBase;MultiplyAddEstimate;(TSelf,TSelf,TSelf);Argument[2];ReturnValue;taint;dfc-generated | | System.Numerics;Plane;ToString;();Argument[this].Field[System.Numerics.Plane.Normal];ReturnValue;taint;dfc-generated | | System.Numerics;Vector2;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System.Numerics;Vector3;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System.Numerics;Vector4;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System.Numerics;Vector;Abs;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;CopySign;(System.Numerics.Vector,System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;StoreUnsafe;(System.Numerics.Vector,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Truncate;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Truncate;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;WithElement;(System.Numerics.Vector,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System.Numerics;Vector;op_UnaryPlus;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicAssembly;(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicAssembly;(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;GetDynamicModuleCore;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;GetFile;(System.String);Argument[this];ReturnValue;taint;df-generated | @@ -14745,6 +15716,7 @@ summary | System.Reflection.Emit;EnumBuilder;GetEvent;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;EnumBuilder;GetField;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;EnumBuilder;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;EnumBuilder;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;EnumBuilder;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;EnumBuilder;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;EnumBuilder;GetNestedType;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | @@ -14786,6 +15758,7 @@ summary | System.Reflection.Emit;GenericTypeParameterBuilder;GetGenericArguments;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetGenericTypeDefinition;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;GenericTypeParameterBuilder;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetNestedType;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | @@ -14811,6 +15784,7 @@ summary | System.Reflection.Emit;GenericTypeParameterBuilder;get_UnderlyingSystemType;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Emit;ILGenerator;DeclareLocal;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ILGenerator;DeclareLocal;(System.Type,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;LocalBuilder;SetLocalSymInfoCore;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;LocalBuilder;get_LocalType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;DefineGenericParametersCore;(System.String[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;DefineGenericParametersCore;(System.String[]);Argument[this];ReturnValue;taint;df-generated | @@ -14839,6 +15813,12 @@ summary | System.Reflection.Emit;MethodBuilder;get_ReturnParameter;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;get_ReturnType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;get_ReturnTypeCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocumentCore;(System.String,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocumentCore;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnum;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnum;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnumCore;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[0];ReturnValue;taint;df-generated | @@ -14863,8 +15843,10 @@ summary | System.Reflection.Emit;ModuleBuilder;DefineTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[4].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[4].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetField;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetType;(System.String,System.Boolean,System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -14883,6 +15865,10 @@ summary | System.Reflection.Emit;ParameterBuilder;SetCustomAttribute;(System.Reflection.Emit.CustomAttributeBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;SetCustomAttributeCore;(System.Reflection.ConstructorInfo,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;get_Name;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];ReturnValue.SyntheticField[System.Reflection.Emit.ModuleBuilderImpl._name];value;dfc-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;GenerateMetadata;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;GenerateMetadata;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.MetadataBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;PersistedAssemblyBuilder;(System.Reflection.AssemblyName,System.Reflection.Assembly,System.Collections.Generic.IEnumerable);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Emit;PersistedAssemblyBuilder;get_FullName;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;PersistedAssemblyBuilder;get_ManifestModule;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;PropertyBuilder;AddOtherMethodCore;(System.Reflection.Emit.MethodBuilder);Argument[0];Argument[this];taint;df-generated | @@ -14926,8 +15912,14 @@ summary | System.Reflection.Emit;TypeBuilder;DefineMethodCore;(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefineNestedTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefineNestedTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[2];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[6].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[7].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[9].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[10].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[4].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[5].Element;ReturnValue;taint;df-generated | @@ -14935,6 +15927,7 @@ summary | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[7].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[8].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefineTypeInitializerCore;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetConstructor;(System.Type,System.Reflection.ConstructorInfo);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetConstructorImpl;(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetElementType;();Argument[this];ReturnValue;taint;df-generated | @@ -14944,6 +15937,7 @@ summary | System.Reflection.Emit;TypeBuilder;GetGenericArguments;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetGenericTypeDefinition;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Emit;TypeBuilder;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetMethod;(System.Type,System.Reflection.MethodInfo);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | @@ -14967,19 +15961,35 @@ summary | System.Reflection.Emit;TypeBuilder;get_ReflectedType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;get_TypeHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;get_UnderlyingSystemType;();Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ArrayShapeEncoder;ArrayShapeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ArrayShapeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;BlobEncoder;BlobEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.BlobEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;CustomAttributeArrayTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;CustomAttributeElementTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeElementTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeNamedArgumentsEncoder;CustomAttributeNamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;AddModifier;(System.Reflection.Metadata.EntityHandle,System.Boolean);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;CustomModifiersEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomModifiersEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;EditAndContinueLogEntry;(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.Ecma335.EditAndContinueOperation);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry.Handle];value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;Add;(System.Reflection.Metadata.ExceptionRegionKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddCatch;(System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFault;(System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFilter;(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFinally;(System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;FieldTypeEncoder;FieldTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.FieldTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;FixedArgumentsEncoder;FixedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;GenericTypeArgumentsEncoder;GenericTypeArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.GenericTypeArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;InstructionEncoder;InstructionEncoder;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.CodeBuilder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;InstructionEncoder;InstructionEncoder;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder);Argument[1];Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.ControlFlowBuilder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;Switch;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;LiteralEncoder;LiteralEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedVector;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedVector;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;LiteralsEncoder;LiteralsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;LocalVariableTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariableTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;LocalVariablesEncoder;LocalVariablesEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariablesEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[2];Argument[this];taint;df-generated | @@ -14988,18 +15998,35 @@ summary | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[2];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[3];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[4];Argument[this];taint;df-generated | -| System.Reflection.Metadata.Ecma335;MetadataRootBuilder;MetadataRootBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveGuid;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveUserString;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataRootBuilder;MetadataRootBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean);Argument[1];Argument[this].Property[System.Reflection.Metadata.Ecma335.MetadataRootBuilder.MetadataVersion];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MetadataRootBuilder;get_Sizes;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes);Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean);Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;MethodBodyStreamEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;MethodSignatureEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodSignatureEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;NameEncoder;NameEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NameEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;NamedArgumentTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentTypeEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;NamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;ParameterTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ParameterTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ParametersEncoder;ParametersEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ParametersEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;PermissionSetEncoder;AddPermission;(System.String,System.Collections.Immutable.ImmutableArray);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;PermissionSetEncoder;AddPermission;(System.String,System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PermissionSetEncoder;PermissionSetEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.PermissionSetEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[this].Property[System.Reflection.Metadata.Ecma335.PortablePdbBuilder.IdProvider];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[this].Property[System.Reflection.Metadata.Ecma335.PortablePdbBuilder.IdProvider];value;hq-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;ReturnTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ReturnTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ScalarEncoder;ScalarEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ScalarEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeFieldSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeLocalSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeMethodSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | @@ -15017,6 +16044,8 @@ summary | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Array;(System.Reflection.Metadata.Ecma335.SignatureTypeEncoder,System.Reflection.Metadata.Ecma335.ArrayShapeEncoder);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Pointer;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SZArray;();Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SignatureTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;VectorEncoder;VectorEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.VectorEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata;AssemblyDefinition;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyDefinition;GetDeclarativeSecurityAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyFile;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | @@ -15026,6 +16055,11 @@ summary | System.Reflection.Metadata;AssemblyFileHandleCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Reflection.Metadata;AssemblyFileHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Reflection.Metadata;AssemblyFileHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[0];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Name];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[1];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Version];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[2];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.CultureName];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[4];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.PublicKeyOrToken];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_FullName;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyReference;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyReferenceHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;AssemblyReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyReferenceHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | @@ -15067,6 +16101,13 @@ summary | System.Reflection.Metadata;CustomAttributeHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Reflection.Metadata;CustomAttributeHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Reflection.Metadata;CustomAttributeHandleCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Name];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[2];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Type];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[3];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Value];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(TType,System.Object);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Type];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(TType,System.Object);Argument[1];Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Value];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeValue;CustomAttributeValue;(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.FixedArguments];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeValue;CustomAttributeValue;(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>);Argument[1];Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.NamedArguments];value;dfc-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomDebugInformationHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomDebugInformationHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -15249,8 +16290,9 @@ summary | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbImage;(System.Byte*,System.Int32);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbImage;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbStream;(System.IO.Stream,System.Reflection.Metadata.MetadataStreamOptions,System.Int32);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Metadata;MetadataReaderProvider;GetMetadataReader;(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;MetadataReaderProvider;GetMetadataReader;(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[1];ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder];value;dfc-generated | | System.Reflection.Metadata;MetadataStringDecoder;GetString;(System.Byte*,System.Int32);Argument[0].Element;ReturnValue;taint;dfc-generated | +| System.Reflection.Metadata;MetadataStringDecoder;MetadataStringDecoder;(System.Text.Encoding);Argument[0];Argument[this].Property[System.Reflection.Metadata.MetadataStringDecoder.Encoding];value;dfc-generated | | System.Reflection.Metadata;MethodBodyBlock;Create;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodBodyBlock;GetILReader;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodBodyBlock;get_ExceptionRegions;();Argument[this];ReturnValue;taint;df-generated | @@ -15282,6 +16324,9 @@ summary | System.Reflection.Metadata;MethodImplementationHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Reflection.Metadata;MethodImport;get_Module;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodImport;get_Name;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[0];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.Header];value;dfc-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[1];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ReturnType];value;dfc-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[4];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ParameterTypes];value;dfc-generated | | System.Reflection.Metadata;MethodSpecification;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ModuleDefinition;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ModuleReference;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | @@ -15292,7 +16337,7 @@ summary | System.Reflection.Metadata;NamespaceDefinition;get_TypeDefinitions;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[2];ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder];value;dfc-generated | | System.Reflection.Metadata;Parameter;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ParameterHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.ParameterHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;ParameterHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.ParameterHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | @@ -15328,6 +16373,26 @@ summary | System.Reflection.Metadata;TypeDefinitionHandleCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Reflection.Metadata;TypeDefinitionHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Reflection.Metadata;TypeDefinitionHandleCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | +| System.Reflection.Metadata;TypeName;GetElementType;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;GetGenericArguments;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._genericArguments];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;GetGenericTypeDefinition;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeArrayTypeName;(System.Int32);Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeArrayTypeName;(System.Int32);Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeByRefTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeByRefTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[0];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._genericArguments];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakePointerTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakePointerTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeSZArrayTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeSZArrayTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;WithAssemblyName;(System.Reflection.Metadata.AssemblyNameInfo);Argument[0];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;WithAssemblyName;(System.Reflection.Metadata.AssemblyNameInfo);Argument[0];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType].Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;get_DeclaringType;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;get_FullName;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;TypeName;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;TypeReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeReferenceHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;TypeReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeReferenceHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;TypeReferenceHandleCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -15346,7 +16411,12 @@ summary | System.Reflection.PortableExecutable;PEBuilder+Section;Section;(System.String,System.Reflection.PortableExecutable.SectionCharacteristics);Argument[0];Argument[this].Field[System.Reflection.PortableExecutable.PEBuilder+Section.Name];value;dfc-generated | | System.Reflection.PortableExecutable;PEBuilder;GetDirectories;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;GetSections;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[0];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.Header];value;dfc-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[0];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.Header];value;hq-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.IdProvider];value;dfc-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.IdProvider];value;hq-generated | | System.Reflection.PortableExecutable;PEBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;SerializeSection;(System.String,System.Reflection.PortableExecutable.SectionLocation);Argument[this];ReturnValue;taint;df-generated | @@ -15413,17 +16483,23 @@ summary | System.Reflection;Binder;ReorderArgumentArray;(System.Object[],System.Object);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection;Binder;SelectMethod;(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]);Argument[1].Element;ReturnValue;value;dfc-generated | | System.Reflection;Binder;SelectProperty;(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[]);Argument[1].Element;ReturnValue;value;dfc-generated | +| System.Reflection;ConstructorInvoker;Invoke;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object);Argument[0];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[2];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[2];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Span);Argument[0];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Span);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_Constructor;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_ConstructorArguments;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_NamedArguments;();Argument[this];ReturnValue;taint;df-generated | @@ -15436,8 +16512,7 @@ summary | System.Reflection;CustomAttributeNamedArgument;get_TypedValue;();Argument[this].SyntheticField[System.Reflection.CustomAttributeNamedArgument._value];ReturnValue;value;dfc-generated | | System.Reflection;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(System.Object);Argument[0];Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];value;dfc-generated | | System.Reflection;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(System.Type,System.Object);Argument[1];Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];value;dfc-generated | -| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this].Property[System.Reflection.CustomAttributeTypedArgument.Value];ReturnValue;taint;dfc-generated | -| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];ReturnValue;taint;dfc-generated | +| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeTypedArgument;get_Value;();Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];ReturnValue;value;dfc-generated | | System.Reflection;EventInfo;GetAddMethod;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;EventInfo;GetAddMethod;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -15454,6 +16529,8 @@ summary | System.Reflection;EventInfoExtensions;GetRemoveMethod;(System.Reflection.EventInfo,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;ExceptionHandlingClause;get_CatchType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;GetModifiedFieldType;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection;FieldInfo;GetOptionalCustomModifiers;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection;FieldInfo;GetRequiredCustomModifiers;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;get_FieldHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;get_FieldType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;IReflect;GetField;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | @@ -15541,7 +16618,7 @@ summary | System.Reflection;Module;get_ModuleVersionId;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;Module;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;Module;get_ScopeName;();Argument[this];ReturnValue;taint;df-generated | -| System.Reflection;ModuleExtensions;GetModuleVersionId;(System.Reflection.Module);Argument[0].Property[System.Reflection.Module.ModuleVersionId];ReturnValue;value;dfc-generated | +| System.Reflection;ModuleExtensions;GetModuleVersionId;(System.Reflection.Module);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;ModuleResolveEventHandler;BeginInvoke;(System.Object,System.ResolveEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Reflection;ParameterInfo;GetModifiedParameterType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ParameterInfo;GetRealObject;(System.Runtime.Serialization.StreamingContext);Argument[this];ReturnValue;taint;df-generated | @@ -15581,6 +16658,7 @@ summary | System.Reflection;ReflectionTypeLoadException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Reflection;RuntimeReflectionExtensions;GetMethodInfo;(System.Delegate);Argument[0].Property[System.Delegate.Method];ReturnValue;value;dfc-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeBaseDefinition;(System.Reflection.MethodInfo);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection;RuntimeReflectionExtensions;GetRuntimeInterfaceMap;(System.Reflection.TypeInfo,System.Type);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;StrongNameKeyPair;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Reflection;TypeDelegator;GetConstructorImpl;(System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetElementType;();Argument[this];ReturnValue;taint;df-generated | @@ -15589,6 +16667,7 @@ summary | System.Reflection;TypeDelegator;GetFunctionPointerParameterTypes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetFunctionPointerReturnType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection;TypeDelegator;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;TypeDelegator;GetNestedType;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | @@ -15850,6 +16929,9 @@ summary | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;FromManaged;(System.ReadOnlySpan,System.Span);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray];value;dfc-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;GetManagedValuesSource;();Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;GetUnmanagedValuesDestination;();Argument[this];ReturnValue;taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;FromUnmanaged;(TUnmanagedElement*);Argument[0];Argument[this];taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;GetManagedValuesDestination;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;ToManaged;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+UnmanagedToManagedOut;GetManagedValuesSource;(System.ReadOnlySpan);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;SafeHandleMarshaller+ManagedToUnmanagedIn;FromManaged;(T);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle];value;dfc-generated | | System.Runtime.InteropServices.Marshalling;SafeHandleMarshaller+ManagedToUnmanagedIn;ToUnmanaged;();Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle].Field[System.Runtime.InteropServices.SafeHandle.handle];ReturnValue;value;dfc-generated | @@ -15867,9 +16949,12 @@ summary | System.Runtime.InteropServices.Marshalling;SpanMarshaller+ManagedToUnmanagedIn;FromManaged;(System.Span,System.Span);Argument[1];Argument[this];taint;df-generated | | System.Runtime.InteropServices.Marshalling;SpanMarshaller+ManagedToUnmanagedIn;GetUnmanagedValuesDestination;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;SpanMarshaller;GetManagedValuesDestination;(System.Span);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;CreateObject;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;Utf8StringMarshaller+ManagedToUnmanagedIn;ToUnmanaged;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;Deconstruct;(System.Void*,System.Void**);Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;Deconstruct;(System.Void*,System.Void**);Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;VirtualMethodTableInfo;(System.Void*,System.Void**);Argument[0];Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer];value;dfc-generated | +| System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;VirtualMethodTableInfo;(System.Void*,System.Void**);Argument[1];Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable];value;dfc-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal+UnhandledExceptionPropagationHandler;BeginInvoke;(System.Exception,System.RuntimeMethodHandle,System.IntPtr,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;Initialize;(System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal+UnhandledExceptionPropagationHandler);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices;ArrayWithOffset;ArrayWithOffset;(System.Object,System.Int32);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.ArrayWithOffset.m_array];value;dfc-generated | @@ -15878,7 +16963,7 @@ summary | System.Runtime.InteropServices;CLong;get_Value;();Argument[this].SyntheticField[System.Runtime.InteropServices.CLong._value];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;CULong;CULong;(System.UIntPtr);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value];value;dfc-generated | | System.Runtime.InteropServices;CULong;get_Value;();Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value];ReturnValue;value;dfc-generated | -| System.Runtime.InteropServices;CollectionsMarshal;AsSpan;(System.Collections.Generic.List);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Runtime.InteropServices;ComAliasNameAttribute;ComAliasNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.InteropServices.ComAliasNameAttribute.Value];value;dfc-generated | | System.Runtime.InteropServices;ComAwareEventInfo;GetAddMethod;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;GetRaiseMethod;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;GetRemoveMethod;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -15886,11 +16971,13 @@ summary | System.Runtime.InteropServices;ComAwareEventInfo;get_Module;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;get_ReflectedType;();Argument[this];ReturnValue;taint;df-generated | +| System.Runtime.InteropServices;ComWrappers;CreateObject;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;CriticalHandle;CriticalHandle;(System.IntPtr);Argument[0];Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;CriticalHandle;SetHandle;(System.IntPtr);Argument[0];Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;DllImportResolver;BeginInvoke;(System.String,System.Reflection.Assembly,System.Nullable,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices;GCHandle;FromIntPtr;(System.IntPtr);Argument[0];ReturnValue.SyntheticField[System.Runtime.InteropServices.GCHandle._handle];value;dfc-generated | | System.Runtime.InteropServices;GCHandle;ToIntPtr;(System.Runtime.InteropServices.GCHandle);Argument[0].SyntheticField[System.Runtime.InteropServices.GCHandle._handle];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices;HandleCollector;HandleCollector;(System.String,System.Int32,System.Int32);Argument[0];Argument[this].Property[System.Runtime.InteropServices.HandleCollector.Name];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;HandleRef;(System.Object,System.IntPtr);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;HandleRef;(System.Object,System.IntPtr);Argument[1];Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._handle];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;ToIntPtr;(System.Runtime.InteropServices.HandleRef);Argument[0].SyntheticField[System.Runtime.InteropServices.HandleRef._handle];ReturnValue;value;dfc-generated | @@ -15898,6 +16985,8 @@ summary | System.Runtime.InteropServices;HandleRef;get_Wrapper;();Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;ImmutableCollectionsMarshal;AsArray;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ImmutableCollectionsMarshal;AsImmutableArray;(T[]);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Runtime.InteropServices;ImportedFromTypeLibAttribute;ImportedFromTypeLibAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.InteropServices.ImportedFromTypeLibAttribute.Value];value;dfc-generated | +| System.Runtime.InteropServices;ManagedToNativeComInteropStubAttribute;ManagedToNativeComInteropStubAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.MethodName];value;dfc-generated | | System.Runtime.InteropServices;Marshal;InitHandle;(System.Runtime.InteropServices.SafeHandle,System.IntPtr);Argument[1];Argument[0].Field[System.Runtime.InteropServices.SafeHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;MemoryMarshal;CreateFromPinnedArray;(T[],System.Int32,System.Int32);Argument[0].Element;ReturnValue;taint;df-generated | | System.Runtime.InteropServices;MemoryMarshal;CreateSpan;(T,System.Int32);Argument[0];ReturnValue;value;dfc-generated | @@ -15908,6 +16997,8 @@ summary | System.Runtime.InteropServices;NFloat;Clamp;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;Clamp;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[1];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;Clamp;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[2];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices;NFloat;ConvertToInteger;(System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices;NFloat;ConvertToIntegerNative;(System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;CopySign;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | @@ -15920,6 +17011,7 @@ summary | System.Runtime.InteropServices;NFloat;Min;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[1];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;MinNumber;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;NFloat;MinNumber;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices;NFloat;MultiplyAddEstimate;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[2];ReturnValue;taint;dfc-generated | | System.Runtime.InteropServices;NFloat;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[0];ReturnValue;taint;dfc-generated | | System.Runtime.InteropServices;NFloat;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);Argument[1];ReturnValue;taint;dfc-generated | | System.Runtime.InteropServices;NFloat;ToString;(System.IFormatProvider);Argument[0];ReturnValue;taint;df-generated | @@ -15938,35 +17030,80 @@ summary | System.Runtime.Intrinsics;Vector64;Abs;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Ceiling;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Ceiling;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;CopySign;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Floor;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Floor;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;StoreUnsafe;(System.Runtime.Intrinsics.Vector64,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Truncate;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Truncate;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;WithElement;(System.Runtime.Intrinsics.Vector64,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;op_UnaryPlus;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Abs;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;CopySign;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;GetLower;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector128;GetUpper;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;StoreUnsafe;(System.Runtime.Intrinsics.Vector128,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Truncate;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Truncate;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithElement;(System.Runtime.Intrinsics.Vector128,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithLower;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithUpper;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;op_UnaryPlus;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Abs;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;CopySign;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;GetLower;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector256;GetUpper;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;StoreUnsafe;(System.Runtime.Intrinsics.Vector256,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Truncate;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Truncate;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithElement;(System.Runtime.Intrinsics.Vector256,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithLower;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithUpper;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;op_UnaryPlus;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Abs;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;CopySign;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;GetLower;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector512;GetUpper;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;StoreUnsafe;(System.Runtime.Intrinsics.Vector512,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Truncate;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Truncate;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithElement;(System.Runtime.Intrinsics.Vector512,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithLower;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithUpper;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;op_UnaryPlus;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Loader;AssemblyDependencyResolver;AssemblyDependencyResolver;(System.String);Argument[0];Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element;value;dfc-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveAssemblyToPath;(System.Reflection.AssemblyName);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveAssemblyToPath;(System.Reflection.AssemblyName);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveUnmanagedDllToPath;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| System.Runtime.Loader;AssemblyDependencyResolver;ResolveUnmanagedDllToPath;(System.String);Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element;ReturnValue;value;dfc-generated | | System.Runtime.Loader;AssemblyLoadContext;EnterContextualReflection;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyLoadContext;ToString;();Argument[this].Property[System.Runtime.Loader.AssemblyLoadContext.Name];ReturnValue;taint;dfc-generated | | System.Runtime.Loader;AssemblyLoadContext;add_Resolving;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -15989,11 +17126,6 @@ summary | System.Runtime.Serialization.Formatters.Binary;BinaryFormatter;BinaryFormatter;(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext);Argument[1];Argument[this];taint;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;DataContractJsonSerializer;(System.Type,System.Runtime.Serialization.Json.DataContractJsonSerializerSettings);Argument[1].Property[System.Runtime.Serialization.Json.DataContractJsonSerializerSettings.DateTimeFormat];Argument[this].SyntheticField[System.Runtime.Serialization.Json.DataContractJsonSerializer._dateTimeFormat];value;dfc-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;GetSerializationSurrogateProvider;();Argument[this].SyntheticField[System.Runtime.Serialization.Json.DataContractJsonSerializer._serializationSurrogateProvider];ReturnValue;value;dfc-generated | -| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.IO.Stream);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlDictionaryReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;SetSerializationSurrogateProvider;(System.Runtime.Serialization.ISerializationSurrogateProvider);Argument[0];Argument[this].SyntheticField[System.Runtime.Serialization.Json.DataContractJsonSerializer._serializationSurrogateProvider];value;dfc-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;get_DateTimeFormat;();Argument[this].SyntheticField[System.Runtime.Serialization.Json.DataContractJsonSerializer._dateTimeFormat];ReturnValue;value;dfc-generated | | System.Runtime.Serialization.Json;IXmlJsonReaderInitializer;SetInput;(System.Byte[],System.Int32,System.Int32,System.Text.Encoding,System.Xml.XmlDictionaryReaderQuotas,System.Xml.OnXmlDictionaryReaderClose);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | @@ -16012,13 +17144,10 @@ summary | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[4];ReturnValue;taint;df-generated | +| System.Runtime.Serialization;ContractNamespaceAttribute;ContractNamespaceAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.Serialization.ContractNamespaceAttribute.ContractNamespace];value;dfc-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Runtime.Serialization.DataContractSerializerSettings);Argument[1].Property[System.Runtime.Serialization.DataContractSerializerSettings.DataContractResolver];Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver];value;dfc-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable);Argument[1];Argument[this];taint;df-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable);Argument[2];Argument[this];taint;df-generated | -| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;DataContractSerializer;get_DataContractResolver;();Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;DataContractSerializerExtensions;GetSerializationSurrogateProvider;(System.Runtime.Serialization.DataContractSerializer);Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;DataContractSerializerExtensions;SetSerializationSurrogateProvider;(System.Runtime.Serialization.DataContractSerializer,System.Runtime.Serialization.ISerializationSurrogateProvider);Argument[1];Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider];value;dfc-generated | @@ -16037,6 +17166,7 @@ summary | System.Runtime.Serialization;IObjectReference;GetRealObject;(System.Runtime.Serialization.StreamingContext);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;ISerializable;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Runtime.Serialization;ISurrogateSelector;GetSurrogate;(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector);Argument[this];ReturnValue;value;dfc-generated | +| System.Runtime.Serialization;KnownTypeAttribute;KnownTypeAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.Serialization.KnownTypeAttribute.MethodName];value;dfc-generated | | System.Runtime.Serialization;ObjectIDGenerator;GetId;(System.Object,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Runtime.Serialization;ObjectManager;GetObject;(System.Int64);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;ObjectManager;ObjectManager;(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext);Argument[0];Argument[this];taint;df-generated | @@ -16084,11 +17214,6 @@ summary | System.Runtime.Serialization;SurrogateSelector;GetSurrogate;(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector);Argument[this].SyntheticField[System.Runtime.Serialization.SurrogateSelector._nextSelector];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;SurrogateSelector;GetSurrogate;(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector);Argument[this];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;XPathQueryGenerator;CreateFromDataContractSerializer;(System.Type,System.Reflection.MemberInfo[],System.Text.StringBuilder,System.Xml.XmlNamespaceManager);Argument[2];ReturnValue;taint;dfc-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.IO.Stream);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;XmlSerializableServices;WriteNodes;(System.Xml.XmlWriter,System.Xml.XmlNode[]);Argument[1].Element;Argument[0];taint;df-generated | | System.Runtime.Serialization;XsdDataContractExporter;XsdDataContractExporter;(System.Xml.Schema.XmlSchemaSet);Argument[0];Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas];value;dfc-generated | | System.Runtime.Serialization;XsdDataContractExporter;get_Schemas;();Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas];ReturnValue;value;dfc-generated | @@ -16130,13 +17255,13 @@ summary | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;Merge;(System.String);Argument[0];ReturnValue.Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;ServiceNameCollection;(System.Collections.ICollection);Argument[0].Element;Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;ServiceNameCollection;(System.Collections.ICollection);Argument[0].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | -| System.Security.Claims;Claim;Claim;(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this];taint;df-generated | -| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[0];Argument[this];taint;df-generated | -| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this];taint;df-generated | +| System.Security.Claims;Claim;Claim;(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this].SyntheticField[System.Security.Claims.Claim._subject];value;dfc-generated | +| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this].SyntheticField[System.Security.Claims.Claim._subject];value;dfc-generated | | System.Security.Claims;Claim;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_CustomSerializationData;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_Issuer;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_OriginalIssuer;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Claims;Claim;get_Subject;();Argument[this].SyntheticField[System.Security.Claims.Claim._subject];ReturnValue;value;dfc-generated | | System.Security.Claims;Claim;get_Type;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_Value;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_ValueType;();Argument[this];ReturnValue;taint;df-generated | @@ -16179,16 +17304,21 @@ summary | System.Security.Claims;ClaimsPrincipal;get_Identity;();Argument[this].SyntheticField[System.Security.Claims.ClaimsPrincipal._identities].Element;ReturnValue;value;dfc-generated | | System.Security.Claims;ClaimsPrincipal;set_ClaimsPrincipalSelector;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Security.Claims;ClaimsPrincipal;set_PrimaryIdentitySelector;(System.Func,System.Security.Claims.ClaimsIdentity>);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;PublicKey;PublicKey;(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;Pkcs12LoaderLimits;(System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;get_Key;();Argument[this];ReturnValue;taint;df-generated | -| System.Security.Cryptography.X509Certificates;PublicKey;get_Oid;();Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid];ReturnValue;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;PublicKey;get_Oid;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;Format;(System.Boolean);Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;X500DistinguishedName;(System.Security.Cryptography.X509Certificates.X500DistinguishedName);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;X500DistinguishedName;(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags);Argument[0];Argument[this];taint;df-generated | @@ -16209,6 +17339,7 @@ summary | System.Security.Cryptography.X509Certificates;X509Certificate2;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject];ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_Extensions;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_PublicKey;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2;get_RawDataMemory;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;Add;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;AddRange;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;AddRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;manual | @@ -16219,6 +17350,8 @@ summary | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Element;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -16228,8 +17361,6 @@ summary | System.Security.Cryptography.X509Certificates;X509Certificate;GetIssuerName;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetName;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertData;();Argument[this];ReturnValue;taint;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertDataString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Issuer];ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject];ReturnValue;taint;dfc-generated | @@ -16246,6 +17377,7 @@ summary | System.Security.Cryptography.X509Certificates;X509CertificateCollection;X509CertificateCollection;(System.Security.Cryptography.X509Certificates.X509Certificate[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;set_Item;(System.Int32,System.Security.Cryptography.X509Certificates.X509Certificate);Argument[1];Argument[this].Element;value;manual | +| System.Security.Cryptography.X509Certificates;X509Chain;Build;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;get_SafeHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;CopyTo;(System.Array,System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;CopyTo;(System.Security.Cryptography.X509Certificates.X509ChainElement[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | @@ -16282,6 +17414,7 @@ summary | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForECDsa;(System.Security.Cryptography.ECDsa);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForRSA;(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForRSA;(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding);Argument[1];ReturnValue;taint;df-generated | +| System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.String,System.Security.Cryptography.X509Certificates.StoreLocation);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Store.Name];value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData];Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData];value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectKeyIdentifierExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;value;dfc-generated | @@ -16381,6 +17514,7 @@ summary | System.Security.Cryptography.Xml;ReferenceList;Insert;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Security.Cryptography.Xml;ReferenceList;Item;(System.Int32);Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element;ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | +| System.Security.Cryptography.Xml;ReferenceList;get_ItemOf;(System.Int32);Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element;ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;get_SyncRoot;();Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Property[System.Collections.ArrayList.SyncRoot];ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;get_SyncRoot;();Argument[this];ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | @@ -16529,6 +17663,7 @@ summary | System.Security.Cryptography;CngKeyBlobFormat;CngKeyBlobFormat;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];value;dfc-generated | | System.Security.Cryptography;CngKeyBlobFormat;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];ReturnValue;value;dfc-generated | | System.Security.Cryptography;CngKeyBlobFormat;get_Format;();Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[0];Argument[this].Property[System.Security.Cryptography.CngProperty.Name];value;dfc-generated | | System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[1].Element;Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element;value;dfc-generated | | System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[1];Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value];value;dfc-generated | | System.Security.Cryptography;CngProperty;GetValue;();Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element;ReturnValue.Element;value;dfc-generated | @@ -16536,6 +17671,10 @@ summary | System.Security.Cryptography;CngProvider;CngProvider;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];value;dfc-generated | | System.Security.Cryptography;CngProvider;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];ReturnValue;value;dfc-generated | | System.Security.Cryptography;CngProvider;get_Provider;();Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[1];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.FriendlyName];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[2];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.Description];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[3];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.UseContext];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[4];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.CreationTitle];value;dfc-generated | | System.Security.Cryptography;CryptoStream;BeginRead;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;manual | | System.Security.Cryptography;CryptoStream;BeginRead;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[this];Argument[0].Element;taint;manual | | System.Security.Cryptography;CryptoStream;BeginWrite;(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object);Argument[0].Element;Argument[this];taint;manual | @@ -16551,6 +17690,7 @@ summary | System.Security.Cryptography;CryptoStream;ReadAsync;(System.Memory,System.Threading.CancellationToken);Argument[this];Argument[0].Element;taint;manual | | System.Security.Cryptography;CryptoStream;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.Security.Cryptography;CryptoStream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.Security.Cryptography;CryptoStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;CryptoStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;CryptoStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Security.Cryptography;CryptoStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -16571,12 +17711,14 @@ summary | System.Security.Cryptography;ECDiffieHellman;get_SignatureAlgorithm;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDiffieHellmanCng;get_LegalKeySizes;();Argument[this].Field[System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizesValue].Element;ReturnValue.Element;value;dfc-generated | | System.Security.Cryptography;ECDiffieHellmanCng;get_PublicKey;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;ECDiffieHellmanOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDiffieHellmanOpenSsl;get_PublicKey;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDiffieHellmanPublicKey;ECDiffieHellmanPublicKey;(System.Byte[]);Argument[0].Element;Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element;value;dfc-generated | | System.Security.Cryptography;ECDiffieHellmanPublicKey;ToByteArray;();Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element;ReturnValue.Element;value;dfc-generated | | System.Security.Cryptography;ECDsa;get_KeyExchangeAlgorithm;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDsa;get_SignatureAlgorithm;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDsaCng;get_LegalKeySizes;();Argument[this].Field[System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizesValue].Element;ReturnValue.Element;value;dfc-generated | +| System.Security.Cryptography;ECDsaOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0].Element;Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue].Element;value;dfc-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0];Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue];value;dfc-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.HMACMD5._hMacCommon].SyntheticField[System.Security.Cryptography.HMACCommon.ActualKey];value;dfc-generated | @@ -16617,6 +17759,7 @@ summary | System.Security.Cryptography;HashAlgorithmName;HashAlgorithmName;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];value;dfc-generated | | System.Security.Cryptography;HashAlgorithmName;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];ReturnValue;value;dfc-generated | | System.Security.Cryptography;HashAlgorithmName;get_Name;();Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;IncrementalHash;Clone;();Argument[this].SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];value;dfc-generated | | System.Security.Cryptography;IncrementalHash;CreateHMAC;(System.Security.Cryptography.HashAlgorithmName,System.Byte[]);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;IncrementalHash;CreateHMAC;(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;IncrementalHash;CreateHash;(System.Security.Cryptography.HashAlgorithmName);Argument[0];ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];value;dfc-generated | @@ -16643,6 +17786,7 @@ summary | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[1].Element;Argument[this];taint;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[2];Argument[this];taint;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[4];Argument[this];taint;df-generated | +| System.Security.Cryptography;PbeParameters;PbeParameters;(System.Security.Cryptography.PbeEncryptionAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Int32);Argument[1];Argument[this].Property[System.Security.Cryptography.PbeParameters.HashAlgorithm];value;dfc-generated | | System.Security.Cryptography;RSA;get_KeyExchangeAlgorithm;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;RSA;get_SignatureAlgorithm;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;RSACng;get_LegalKeySizes;();Argument[this].Field[System.Security.Cryptography.AsymmetricAlgorithm.LegalKeySizesValue].Element;ReturnValue.Element;value;dfc-generated | @@ -16656,6 +17800,7 @@ summary | System.Security.Cryptography;RSAOAEPKeyExchangeDeformatter;SetKey;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;RSAOAEPKeyExchangeFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;SetKey;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | +| System.Security.Cryptography;RSAOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;RSAPKCS1KeyExchangeDeformatter;RSAPKCS1KeyExchangeDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1KeyExchangeDeformatter;SetKey;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1KeyExchangeFormatter;RSAPKCS1KeyExchangeFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | @@ -16666,9 +17811,11 @@ summary | System.Security.Cryptography;RSAPKCS1SignatureFormatter;RSAPKCS1SignatureFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1SignatureFormatter;SetHashAlgorithm;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1SignatureFormatter;SetKey;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | +| System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Int32,System.Int32,System.Security.Cryptography.HashAlgorithmName);Argument[3];Argument[this].Property[System.Security.Cryptography.Rfc2898DeriveBytes.HashAlgorithm];value;dfc-generated | | System.Security.Cryptography;RijndaelManaged;get_LegalKeySizes;();Argument[this].Field[System.Security.Cryptography.SymmetricAlgorithm.LegalKeySizesValue].Element;ReturnValue.Element;value;dfc-generated | -| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.Byte[],System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | +| System.Security.Cryptography;SafeEvpPKeyHandle;DuplicateHandle;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;Shake128;Clone;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;Shake256;Clone;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;SignatureDescription;CreateDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;SignatureDescription;CreateFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;SymmetricAlgorithm;EncryptCbc;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.Security.Cryptography.PaddingMode);Argument[0].Element;Argument[2].Element;value;dfc-generated | @@ -16861,8 +18008,6 @@ summary | System.Text.Json.Nodes;JsonArray;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Text.Json.Nodes;JsonArray;GetValues;();Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Nodes;JsonArray;Insert;(System.Int32,System.Text.Json.Nodes.JsonNode);Argument[1];Argument[this].Element;value;manual | -| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[]);Argument[this];Argument[1].Element;taint;df-generated | -| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNode[]);Argument[this];Argument[0].Element;taint;df-generated | | System.Text.Json.Nodes;JsonNode;AsArray;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json.Nodes;JsonNode;AsObject;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json.Nodes;JsonNode;AsValue;();Argument[this];ReturnValue;value;dfc-generated | @@ -16887,10 +18032,9 @@ summary | System.Text.Json.Nodes;JsonObject;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current];value;manual | | System.Text.Json.Nodes;JsonObject;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Text.Json.Nodes;JsonObject;Insert;(System.Int32,System.Collections.Generic.KeyValuePair);Argument[1];Argument[this].Element;value;manual | -| System.Text.Json.Nodes;JsonObject;JsonObject;(System.Collections.Generic.IEnumerable>,System.Nullable);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | -| System.Text.Json.Nodes;JsonObject;JsonObject;(System.Collections.Generic.IEnumerable>,System.Nullable);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | -| System.Text.Json.Nodes;JsonObject;TryGetPropertyValue;(System.String,System.Text.Json.Nodes.JsonNode);Argument[this];ReturnValue;taint;df-generated | -| System.Text.Json.Nodes;JsonObject;TryGetValue;(System.String,System.Text.Json.Nodes.JsonNode);Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json.Nodes;JsonObject;Insert;(System.Int32,System.String,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[2];taint;df-generated | +| System.Text.Json.Nodes;JsonObject;SetAt;(System.Int32,System.String,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[2];taint;df-generated | +| System.Text.Json.Nodes;JsonObject;SetAt;(System.Int32,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[1];taint;df-generated | | System.Text.Json.Nodes;JsonObject;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Text.Json.Nodes;JsonObject;get_Keys;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element;value;manual | | System.Text.Json.Nodes;JsonObject;get_Values;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue.Element;value;manual | @@ -16904,6 +18048,7 @@ summary | System.Text.Json.Serialization.Metadata;IJsonTypeInfoResolver;GetTypeInfo;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonCollectionInfoValues;set_ObjectCreator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonCollectionInfoValues;set_SerializeHandler;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonDerivedType;JsonDerivedType;(System.Type,System.String);Argument[1];Argument[this].Property[System.Text.Json.Serialization.Metadata.JsonDerivedType.TypeDiscriminator];value;dfc-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateArrayInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateConcurrentQueueInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateConcurrentStackInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | @@ -16937,6 +18082,7 @@ summary | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_ObjectWithParameterizedConstructorCreator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_PropertyMetadataInitializer;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_SerializeHandler;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_AttributeProvider;();Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_Get;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_Set;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_ShouldSerialize;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -16953,11 +18099,15 @@ summary | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_OnSerialized;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_OnSerializing;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_CreateObject;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;Combine;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;Combine;(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;WithAddedModifier;(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization;JsonConverter;ReadAsPropertyName;(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions);Argument[0].Property[System.Text.Json.Utf8JsonReader.ValueSpan].Element;ReturnValue;taint;dfc-generated | | System.Text.Json.Serialization;JsonConverter;ReadAsPropertyName;(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue;value;dfc-generated | | System.Text.Json.Serialization;JsonConverterFactory;CreateConverter;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json.Serialization;JsonDerivedTypeAttribute;JsonDerivedTypeAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.Text.Json.Serialization.JsonDerivedTypeAttribute.TypeDiscriminator];value;dfc-generated | | System.Text.Json.Serialization;JsonNumberEnumConverter;CreateConverter;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json.Serialization;JsonPropertyNameAttribute;JsonPropertyNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Text.Json.Serialization.JsonPropertyNameAttribute.Name];value;dfc-generated | | System.Text.Json.Serialization;JsonSerializerContext;GetTypeInfo;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Serialization;JsonSerializerContext;GetTypeInfo;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization;JsonSerializerContext;JsonSerializerContext;(System.Text.Json.JsonSerializerOptions);Argument[0];Argument[this].SyntheticField[System.Text.Json.Serialization.JsonSerializerContext._options];value;dfc-generated | @@ -16966,6 +18116,7 @@ summary | System.Text.Json.Serialization;JsonStringEnumConverter;JsonStringEnumConverter;(System.Text.Json.JsonNamingPolicy,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;CreateConverter;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;JsonStringEnumConverter;(System.Text.Json.JsonNamingPolicy,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.Text.Json.Serialization;JsonStringEnumMemberNameAttribute;JsonStringEnumMemberNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute.Name];value;dfc-generated | | System.Text.Json;JsonDocument;Parse;(System.Buffers.ReadOnlySequence,System.Text.Json.JsonDocumentOptions);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json;JsonDocument;Parse;(System.ReadOnlyMemory,System.Text.Json.JsonDocumentOptions);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json;JsonDocument;ParseValue;(System.Text.Json.Utf8JsonReader);Argument[0];ReturnValue;value;dfc-generated | @@ -17004,7 +18155,13 @@ summary | System.Text.Json;JsonException;JsonException;(System.String);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.Exception);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[1];Argument[this].Property[System.Text.Json.JsonException.Path];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[2];Argument[this].Property[System.Text.Json.JsonException.LineNumber];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[3];Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[1];Argument[this].Property[System.Text.Json.JsonException.Path];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[2];Argument[this].Property[System.Text.Json.JsonException.LineNumber];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[3];Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine];value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].Property[System.Exception.Message];ReturnValue;value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].SyntheticField[System.Text.Json.JsonException._message];ReturnValue;value;dfc-generated | @@ -17025,7 +18182,9 @@ summary | System.Text.Json;JsonSerializer;Serialize;(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;Serialize;(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;Serialize;(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | @@ -17086,7 +18245,7 @@ summary | System.Text.RegularExpressions;GroupCollection;get_Values;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;GroupCollection;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Text.RegularExpressions;GroupCollection;set_Item;(System.Int32,System.Text.RegularExpressions.Group);Argument[1];Argument[this].Element;value;manual | -| System.Text.RegularExpressions;Match;NextMatch;();Argument[this];ReturnValue;value;dfc-generated | +| System.Text.RegularExpressions;Match;NextMatch;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Match;Synchronized;(System.Text.RegularExpressions.Match);Argument[0];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;MatchCollection;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.Text.RegularExpressions;MatchCollection;Add;(System.Text.RegularExpressions.Match);Argument[0];Argument[this].Element;value;manual | @@ -17104,6 +18263,8 @@ summary | System.Text.RegularExpressions;MatchEvaluator;BeginInvoke;(System.Text.RegularExpressions.Match,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Text.RegularExpressions;Regex+ValueMatchEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex+ValueMatchEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex+ValueSplitEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System.Text.RegularExpressions;Regex+ValueSplitEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Count;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan);Argument[this];ReturnValue;taint;df-generated | @@ -17116,14 +18277,40 @@ summary | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Escape;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Text.RegularExpressions;Regex;GroupNameFromNumber;(System.Int32);Argument[this].Field[System.Text.RegularExpressions.Regex.capslist].Element;ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String,System.Int32);Argument[0];ReturnValue;taint;df-generated | @@ -17179,6 +18366,9 @@ summary | System.Text.RegularExpressions;RegexCompilationInfo;RegexCompilationInfo;(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan);Argument[3];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexCompilationInfo;RegexCompilationInfo;(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan);Argument[5];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[0];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Input];value;dfc-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[1];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Pattern];value;dfc-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[2];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.MatchTimeout];value;dfc-generated | | System.Text.RegularExpressions;RegexParseException;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Text.RegularExpressions;RegexRunner;Scan;(System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexRunner;Scan;(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean);Argument[1];Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runtext];value;dfc-generated | @@ -17464,7 +18654,11 @@ summary | System.Threading.Channels;Channel;CreateBounded;(System.Threading.Channels.BoundedChannelOptions,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Threading.RateLimiting;ConcurrencyLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;FixedWindowRateLimiter;(System.Threading.RateLimiting.FixedWindowRateLimiterOptions);Argument[0].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];value;dfc-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];ReturnValue;value;df-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];ReturnValue;value;dfc-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;dfc-generated | | System.Threading.RateLimiting;MetadataName;MetadataName;(System.String);Argument[0];Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];value;dfc-generated | | System.Threading.RateLimiting;MetadataName;ToString;();Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];ReturnValue;value;dfc-generated | | System.Threading.RateLimiting;MetadataName;get_Name;();Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];ReturnValue;value;dfc-generated | @@ -17481,30 +18675,37 @@ summary | System.Threading.RateLimiting;RateLimitPartition;GetFixedWindowLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Threading.RateLimiting;RateLimitPartition;GetSlidingWindowLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Threading.RateLimiting;RateLimitPartition;GetTokenBucketLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[0];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey];value;dfc-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[0];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.Factory];value;dfc-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.Factory];value;hq-generated | | System.Threading.RateLimiting;RateLimiter;AttemptAcquire;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;RateLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;RateLimiter;DisposeAsync;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;ReplenishingRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;SlidingWindowRateLimiter;SlidingWindowRateLimiter;(System.Threading.RateLimiting.SlidingWindowRateLimiterOptions);Argument[0];Argument[this];taint;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;TokenBucketRateLimiter;(System.Threading.RateLimiting.TokenBucketRateLimiterOptions);Argument[0].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];value;dfc-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];ReturnValue;value;df-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];ReturnValue;value;dfc-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;dfc-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Action,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Func,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Threading.Tasks.Dataflow;ActionBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;BatchBlock;(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[1];Argument[this];taint;df-generated | -| System.Threading.Tasks.Dataflow;BatchBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);Argument[1];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;TryReceive;(System.Predicate,T[]);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;BatchBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;BatchedJoinBlock;(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[1];Argument[this];taint;df-generated | -| System.Threading.Tasks.Dataflow;BatchedJoinBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>);Argument[1];Argument[this];taint;df-generated | @@ -17514,7 +18715,6 @@ summary | System.Threading.Tasks.Dataflow;BatchedJoinBlock;get_Target2;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;get_Target3;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;BatchedJoinBlock;(System.Int32,System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[1];Argument[this];taint;df-generated | -| System.Threading.Tasks.Dataflow;BatchedJoinBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>);Argument[1];Argument[this];taint;df-generated | @@ -17525,7 +18725,6 @@ summary | System.Threading.Tasks.Dataflow;BroadcastBlock;BroadcastBlock;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;BroadcastBlock;(System.Func,System.Threading.Tasks.Dataflow.DataflowBlockOptions);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);Argument[this];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;BroadcastBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);Argument[1];Argument[this];taint;df-generated | @@ -17533,7 +18732,6 @@ summary | System.Threading.Tasks.Dataflow;BroadcastBlock;TryReceiveAll;(System.Collections.Generic.IList);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;BufferBlock;(System.Threading.Tasks.Dataflow.DataflowBlockOptions);Argument[0];Argument[this];taint;df-generated | -| System.Threading.Tasks.Dataflow;BufferBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);Argument[1];Argument[this];taint;df-generated | @@ -17570,10 +18768,8 @@ summary | System.Threading.Tasks.Dataflow;DataflowBlock;SendAsync;(System.Threading.Tasks.Dataflow.ITargetBlock,TInput);Argument[1];Argument[0];taint;df-generated | | System.Threading.Tasks.Dataflow;DataflowBlock;SendAsync;(System.Threading.Tasks.Dataflow.ITargetBlock,TInput,System.Threading.CancellationToken);Argument[1];Argument[0];taint;df-generated | | System.Threading.Tasks.Dataflow;DataflowBlock;TryReceive;(System.Threading.Tasks.Dataflow.IReceivableSourceBlock,TOutput);Argument[0];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;IDataflowBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;IDataflowBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;IReceivableSourceBlock;TryReceive;(System.Predicate,TOutput);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Threading.Tasks.Dataflow;JoinBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;JoinBlock;(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | @@ -17583,7 +18779,6 @@ summary | System.Threading.Tasks.Dataflow;JoinBlock;get_Target1;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;get_Target2;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;get_Target3;();Argument[this];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;JoinBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;JoinBlock;(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | @@ -17592,7 +18787,6 @@ summary | System.Threading.Tasks.Dataflow;JoinBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;get_Target1;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;get_Target2;();Argument[this];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;TransformBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);Argument[1];Argument[this];taint;df-generated | @@ -17602,7 +18796,6 @@ summary | System.Threading.Tasks.Dataflow;TransformBlock;TransformBlock;(System.Func,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;TransformBlock;TryReceive;(System.Predicate,TOutput);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;TransformBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;TransformManyBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);Argument[1];Argument[this];taint;df-generated | @@ -17615,7 +18808,6 @@ summary | System.Threading.Tasks.Dataflow;TransformManyBlock;TryReceive;(System.Predicate,TOutput);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);Argument[this].SyntheticField[System.Threading.Tasks.Dataflow.WriteOnceBlock`1._value];ReturnValue;value;dfc-generated | -| System.Threading.Tasks.Dataflow;WriteOnceBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];Argument[0];taint;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);Argument[this];ReturnValue;taint;df-generated | @@ -17790,6 +18982,7 @@ summary | System.Threading.Tasks;Task;WhenAll;(System.ReadOnlySpan>);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAll;(System.Threading.Tasks.Task[]);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Threading.Tasks;Task;WhenAny;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[0];ReturnValue.Property[System.Threading.Tasks.Task`1.Result];value;dfc-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[1];ReturnValue.Property[System.Threading.Tasks.Task`1.Result];value;dfc-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task[]);Argument[0].Element;ReturnValue;taint;df-generated | @@ -17798,6 +18991,8 @@ summary | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[1].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task[]);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | +| System.Threading.Tasks;Task;WhenEach;(System.ReadOnlySpan);Argument[0].Element;ReturnValue.Element;value;dfc-generated | +| System.Threading.Tasks;Task;WhenEach;(System.Threading.Tasks.Task[]);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | System.Threading.Tasks;Task;get_AsyncState;();Argument[this].SyntheticField[System.Threading.Tasks.Task.m_stateObject];ReturnValue;value;df-generated | | System.Threading.Tasks;Task;get_AsyncState;();Argument[this].SyntheticField[System.Threading.Tasks.Task.m_stateObject];ReturnValue;value;dfc-generated | | System.Threading.Tasks;Task;get_AsyncState;();Argument[this];ReturnValue;taint;df-generated | @@ -17894,13 +19089,16 @@ summary | System.Threading.Tasks;Task;get_Result;();Argument[this];ReturnValue;taint;manual | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;ConfigureAwait;(System.IAsyncDisposable,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;ConfigureAwait;(System.Collections.Generic.IAsyncEnumerable,System.Boolean);Argument[0];ReturnValue;taint;df-generated | +| System.Threading.Tasks;TaskAsyncEnumerableExtensions;ToBlockingEnumerable;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[0].Property[System.Collections.Generic.IAsyncEnumerator`1.Current];ReturnValue.Element;value;dfc-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;WithCancellation;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;WithCancellation;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskCanceledException;TaskCanceledException;(System.Threading.Tasks.Task);Argument[0];Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask];value;dfc-generated | | System.Threading.Tasks;TaskCanceledException;get_Task;();Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask];ReturnValue;value;dfc-generated | | System.Threading.Tasks;TaskCompletionSource;TaskCompletionSource;(System.Object,System.Threading.Tasks.TaskCreationOptions);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;get_Task;();Argument[this];ReturnValue;taint;df-generated | +| System.Threading.Tasks;TaskCompletionSource;SetFromTask;(System.Threading.Tasks.Task);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetResult;(TResult);Argument[0];Argument[this];taint;df-generated | +| System.Threading.Tasks;TaskCompletionSource;TrySetFromTask;(System.Threading.Tasks.Task);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;TrySetResult;(TResult);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;get_Task;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskExtensions;Unwrap;(System.Threading.Tasks.Task);Argument[0];ReturnValue;taint;df-generated | @@ -18601,10 +19799,6 @@ summary | System.Web;HttpUtility;UrlEncode;(System.Byte[],System.Int32,System.Int32);Argument[0];ReturnValue;taint;manual | | System.Web;HttpUtility;UrlEncode;(System.String);Argument[0];ReturnValue;taint;manual | | System.Web;HttpUtility;UrlEncode;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;manual | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[]);Argument[0].Element;ReturnValue.Element;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[]);Argument[0];ReturnValue;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;ReturnValue.Element;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[],System.Int32,System.Int32);Argument[0];ReturnValue;value;dfc-generated | | System.Web;HttpUtility;UrlEncodeToBytes;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Web;HttpUtility;UrlEncodeToBytes;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;dfc-generated | | System.Web;HttpUtility;UrlPathEncode;(System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -18759,8 +19953,6 @@ summary | System.Xml.Linq;XNode;get_NextNode;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Linq;XNodeDocumentOrderComparer;Compare;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Xml.Linq;XNodeDocumentOrderComparer;Compare;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | -| System.Xml.Linq;XNodeEqualityComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System.Xml.Linq;XNodeEqualityComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Xml.Linq;XNodeEqualityComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Xml.Linq;XObject;AddAnnotation;(System.Object);Argument[0];Argument[this].SyntheticField[System.Xml.Linq.XObject.annotations].Element;value;dfc-generated | | System.Xml.Linq;XObject;AddAnnotation;(System.Object);Argument[0];Argument[this].SyntheticField[System.Xml.Linq.XObject.annotations];value;dfc-generated | @@ -18878,6 +20070,7 @@ summary | System.Xml.Schema;XmlSchemaDatatype;ChangeType;(System.Object,System.Type,System.Xml.IXmlNamespaceResolver);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[0];Argument[2];taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[2];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaElement;get_ElementSchemaType;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaElement;get_ElementType;();Argument[this];ReturnValue;taint;df-generated | @@ -18936,6 +20129,7 @@ summary | System.Xml.Schema;XmlSchemaSet;Reprocess;(System.Xml.Schema.XmlSchema);Argument[0];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaSet;Reprocess;(System.Xml.Schema.XmlSchema);Argument[0];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaSet;Schemas;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Schema;XmlSchemaSet;Schemas;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaSet;XmlSchemaSet;(System.Xml.XmlNameTable);Argument[0];Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable];value;dfc-generated | | System.Xml.Schema;XmlSchemaSet;add_ValidationEventHandler;(System.Xml.Schema.ValidationEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Xml.Schema;XmlSchemaSet;get_NameTable;();Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable];ReturnValue;value;dfc-generated | @@ -18963,7 +20157,11 @@ summary | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[2];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.Xml.Schema.XmlValueGetter,System.Xml.Schema.XmlSchemaInfo);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[1];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[this];Argument[2];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[this];Argument[2];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateEndElement;(System.Xml.Schema.XmlSchemaInfo);Argument[this];Argument[0];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateEndElement;(System.Xml.Schema.XmlSchemaInfo);Argument[this];ReturnValue;taint;df-generated | @@ -19092,6 +20290,7 @@ summary | System.Xml.Serialization;XmlSchemaExporter;ExportMembersMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportMembersMapping;(System.Xml.Serialization.XmlMembersMapping,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlTypeMapping);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;XmlSchemaExporter;(System.Xml.Serialization.XmlSchemas);Argument[0].Element;Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaProviderAttribute;XmlSchemaProviderAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.Xml.Serialization.XmlSchemaProviderAttribute._methodName];value;dfc-generated | @@ -19139,24 +20338,37 @@ summary | System.Xml.Serialization;XmlSerializationReader;CollapseWhitespace;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;EnsureArrayIndex;(System.Array,System.Int32,System.Type);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;GetTarget;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;GetXsiType;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadElementQualifiedName;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadNullableQualifiedName;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadNullableString;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReference;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadSerializable;(System.Xml.Serialization.IXmlSerializable);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadSerializable;(System.Xml.Serialization.IXmlSerializable,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadString;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadString;(System.String,System.Boolean);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadTypedPrimitive;(System.Xml.XmlQualifiedName);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadXmlDocument;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadXmlNode;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ShrinkArray;(System.Array,System.Int32,System.Type,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToByteArrayBase64;(System.String);Argument[0];ReturnValue.Element;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNCName;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlName;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNmToken;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNmTokens;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| System.Xml.Serialization;XmlSerializationReader;ToXmlQualifiedName;(System.String);Argument[0];ReturnValue.Property[System.Xml.XmlQualifiedName.Name];value;dfc-generated | +| System.Xml.Serialization;XmlSerializationReader;ToXmlQualifiedName;(System.String);Argument[0];ReturnValue.Property[System.Xml.XmlQualifiedName.Namespace];taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;get_Document;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;get_Reader;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationWriteCallback;BeginInvoke;(System.Object,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -19270,6 +20482,8 @@ summary | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object);Argument[2];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object,System.Boolean);Argument[2];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSerializationWriter;WriteRpcResult;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSerializationWriter;WriteRpcResult;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteSerializable;(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteSerializable;(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteStartElement;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -19374,7 +20588,7 @@ summary | System.Xml.XPath;XPathNavigator;SelectDescendants;(System.String,System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;SelectDescendants;(System.Xml.XPath.XPathNodeType,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;SelectSingleNode;(System.Xml.XPath.XPathExpression);Argument[0];ReturnValue;taint;df-generated | -| System.Xml.XPath;XPathNavigator;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.XPath;XPathNavigator;ToString;();Argument[this].Property[System.Xml.XPath.XPathItem.Value];ReturnValue;value;dfc-generated | | System.Xml.XPath;XPathNavigator;ValueAs;(System.Type,System.Xml.IXmlNamespaceResolver);Argument[1];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;ValueAs;(System.Type,System.Xml.IXmlNamespaceResolver);Argument[this];Argument[1];taint;df-generated | | System.Xml.XPath;XPathNavigator;ValueAs;(System.Type,System.Xml.IXmlNamespaceResolver);Argument[this];ReturnValue;taint;df-generated | @@ -19548,7 +20762,6 @@ summary | System.Xml;XmlDataDocument;CreateElement;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | | System.Xml;XmlDataDocument;CreateElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDataDocument;CreateEntityReference;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[0];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | | System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DataDocumentXPathNavigator._doc];value;dfc-generated | | System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._document];value;dfc-generated | | System.Xml;XmlDataDocument;GetElementFromRow;(System.Data.DataRow);Argument[0];ReturnValue;taint;df-generated | @@ -19713,11 +20926,7 @@ summary | System.Xml;XmlDocument;CreateElement;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateEntityReference;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;df-generated | -| System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | | System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue;taint;df-generated | -| System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue;taint;dfc-generated | -| System.Xml;XmlDocument;CreateNavigator;(System.Xml.XmlNode);Argument[0];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | | System.Xml;XmlDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._document];value;dfc-generated | | System.Xml;XmlDocument;CreateNode;(System.String,System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateNode;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | @@ -19745,6 +20954,8 @@ summary | System.Xml;XmlDocument;Load;(System.IO.TextReader);Argument[0];Argument[this];taint;manual | | System.Xml;XmlDocument;Load;(System.String);Argument[0];Argument[this];taint;manual | | System.Xml;XmlDocument;Load;(System.Xml.XmlReader);Argument[0];Argument[this];taint;manual | +| System.Xml;XmlDocument;ReadNode;(System.Xml.XmlReader);Argument[0];ReturnValue;taint;df-generated | +| System.Xml;XmlDocument;ReadNode;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;Save;(System.Xml.XmlWriter);Argument[this];Argument[0];taint;df-generated | | System.Xml;XmlDocument;Validate;(System.Xml.Schema.ValidationEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Xml;XmlDocument;Validate;(System.Xml.Schema.ValidationEventHandler,System.Xml.XmlNode);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -20026,6 +21237,8 @@ summary | System.Xml;XmlQualifiedName;ToString;();Argument[this].Property[System.Xml.XmlQualifiedName.Namespace];ReturnValue;taint;dfc-generated | | System.Xml;XmlQualifiedName;ToString;(System.String,System.String);Argument[0];ReturnValue;value;dfc-generated | | System.Xml;XmlQualifiedName;ToString;(System.String,System.String);Argument[1];ReturnValue;taint;dfc-generated | +| System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String,System.String);Argument[0];Argument[this].Property[System.Xml.XmlQualifiedName.Name];value;dfc-generated | +| System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String,System.String);Argument[1];Argument[this].Property[System.Xml.XmlQualifiedName.Namespace];value;dfc-generated | | System.Xml;XmlReader;Create;(System.IO.Stream);Argument[0];ReturnValue;taint;manual | | System.Xml;XmlReader;Create;(System.IO.Stream,System.Xml.XmlReaderSettings);Argument[0];ReturnValue;taint;manual | | System.Xml;XmlReader;Create;(System.IO.Stream,System.Xml.XmlReaderSettings,System.String);Argument[0];ReturnValue;taint;manual | @@ -20227,6 +21440,8 @@ summary | System.Xml;XmlTextWriter;WriteStartElement;(System.String,System.String,System.String);Argument[1];Argument[this].SyntheticField[System.Xml.XmlTextWriter._textWriter];taint;dfc-generated | | System.Xml;XmlTextWriter;WriteStartElement;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlTextWriter;WriteStartElement;(System.String,System.String,System.String);Argument[1];Argument[this];taint;dfc-generated | +| System.Xml;XmlTextWriter;WriteStartElement;(System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | +| System.Xml;XmlTextWriter;WriteStartElement;(System.String,System.String,System.String);Argument[2];Argument[this];taint;dfc-generated | | System.Xml;XmlTextWriter;WriteString;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlTextWriter;WriteWhitespace;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlTextWriter;XmlTextWriter;(System.IO.Stream,System.Text.Encoding);Argument[1];Argument[this];taint;df-generated | @@ -20325,9 +21540,11 @@ summary | System.Xml;XmlWriter;WriteElementString;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[3];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementStringAsync;(System.String,System.String,System.String,System.String);Argument[3];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteEntityRef;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -20353,8 +21570,10 @@ summary | System.Xml;XmlWriter;WriteStartAttributeAsync;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteStartElement;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteString;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStringAsync;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteValue;(System.Object);Argument[0];Argument[this];taint;df-generated | @@ -20558,6 +21777,7 @@ summary | System;Byte;Min;(System.Byte,System.Byte);Argument[1];ReturnValue;value;dfc-generated | | System;Byte;MinNumber;(System.Byte,System.Byte);Argument[0];ReturnValue;value;dfc-generated | | System;Byte;MinNumber;(System.Byte,System.Byte);Argument[1];ReturnValue;value;dfc-generated | +| System;Byte;MultiplyAddEstimate;(System.Byte,System.Byte,System.Byte);Argument[2];ReturnValue;taint;dfc-generated | | System;Byte;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Byte,System.Byte);Argument[0];ReturnValue;taint;dfc-generated | | System;Byte;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Byte,System.Byte);Argument[1];ReturnValue;taint;dfc-generated | | System;Byte;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -20565,6 +21785,7 @@ summary | System;Byte;ToString;(System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | | System;Byte;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System;Byte;ToType;(System.Type,System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | +| System;Char;MultiplyAddEstimate;(System.Char,System.Char,System.Char);Argument[2];ReturnValue;taint;dfc-generated | | System;Char;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Char,System.Char);Argument[0];ReturnValue;taint;dfc-generated | | System;Char;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Char,System.Char);Argument[1];ReturnValue;taint;dfc-generated | | System;Char;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -20925,6 +22146,8 @@ summary | System;Decimal;Clamp;(System.Decimal,System.Decimal,System.Decimal);Argument[0];ReturnValue;value;dfc-generated | | System;Decimal;Clamp;(System.Decimal,System.Decimal,System.Decimal);Argument[1];ReturnValue;value;dfc-generated | | System;Decimal;Clamp;(System.Decimal,System.Decimal,System.Decimal);Argument[2];ReturnValue;value;dfc-generated | +| System;Decimal;ConvertToInteger;(System.Decimal);Argument[0];ReturnValue;value;dfc-generated | +| System;Decimal;ConvertToIntegerNative;(System.Decimal);Argument[0];ReturnValue;value;dfc-generated | | System;Decimal;CopySign;(System.Decimal,System.Decimal);Argument[0];ReturnValue;value;dfc-generated | | System;Decimal;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System;Decimal;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | @@ -20938,15 +22161,20 @@ summary | System;Decimal;Min;(System.Decimal,System.Decimal);Argument[1];ReturnValue;value;dfc-generated | | System;Decimal;MinNumber;(System.Decimal,System.Decimal);Argument[0];ReturnValue;value;dfc-generated | | System;Decimal;MinNumber;(System.Decimal,System.Decimal);Argument[1];ReturnValue;value;dfc-generated | +| System;Decimal;MultiplyAddEstimate;(System.Decimal,System.Decimal,System.Decimal);Argument[2];ReturnValue;taint;dfc-generated | | System;Decimal;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Decimal;ToDecimal;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Decimal;ToString;(System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | | System;Decimal;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System;Decimal;ToType;(System.Type,System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | +| System;Delegate+InvocationListEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System;Delegate+InvocationListEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System;Delegate;Clone;();Argument[this];ReturnValue;value;dfc-generated | | System;Delegate;Combine;(System.Delegate,System.Delegate);Argument[1];ReturnValue;value;dfc-generated | | System;Delegate;Combine;(System.Delegate[]);Argument[0].Element;ReturnValue;value;dfc-generated | +| System;Delegate;Combine;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;value;dfc-generated | | System;Delegate;CombineImpl;(System.Delegate);Argument[this];ReturnValue;value;dfc-generated | +| System;Delegate;CreateDelegate;(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean);Argument[2];ReturnValue;taint;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Reflection.MethodInfo,System.Boolean);Argument[1];ReturnValue;taint;df-generated | | System;Delegate;Delegate;(System.Object,System.String);Argument[0];Argument[this].SyntheticField[System.Delegate._target];value;dfc-generated | | System;Delegate;Delegate;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | @@ -20962,6 +22190,8 @@ summary | System;Double;Clamp;(System.Double,System.Double,System.Double);Argument[0];ReturnValue;value;dfc-generated | | System;Double;Clamp;(System.Double,System.Double,System.Double);Argument[1];ReturnValue;value;dfc-generated | | System;Double;Clamp;(System.Double,System.Double,System.Double);Argument[2];ReturnValue;value;dfc-generated | +| System;Double;ConvertToInteger;(System.Double);Argument[0];ReturnValue;value;dfc-generated | +| System;Double;ConvertToIntegerNative;(System.Double);Argument[0];ReturnValue;value;dfc-generated | | System;Double;CopySign;(System.Double,System.Double);Argument[0];ReturnValue;value;dfc-generated | | System;Double;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System;Double;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | @@ -20974,6 +22204,7 @@ summary | System;Double;Min;(System.Double,System.Double);Argument[1];ReturnValue;value;dfc-generated | | System;Double;MinNumber;(System.Double,System.Double);Argument[0];ReturnValue;value;dfc-generated | | System;Double;MinNumber;(System.Double,System.Double);Argument[1];ReturnValue;value;dfc-generated | +| System;Double;MultiplyAddEstimate;(System.Double,System.Double,System.Double);Argument[2];ReturnValue;taint;dfc-generated | | System;Double;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Double;ToDecimal;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Double;ToString;(System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | @@ -21033,6 +22264,8 @@ summary | System;Half;Clamp;(System.Half,System.Half,System.Half);Argument[0];ReturnValue;value;dfc-generated | | System;Half;Clamp;(System.Half,System.Half,System.Half);Argument[1];ReturnValue;value;dfc-generated | | System;Half;Clamp;(System.Half,System.Half,System.Half);Argument[2];ReturnValue;value;dfc-generated | +| System;Half;ConvertToInteger;(System.Half);Argument[0];ReturnValue;value;dfc-generated | +| System;Half;ConvertToIntegerNative;(System.Half);Argument[0];ReturnValue;value;dfc-generated | | System;Half;CopySign;(System.Half,System.Half);Argument[0];ReturnValue;value;dfc-generated | | System;Half;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System;Half;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | @@ -21049,6 +22282,7 @@ summary | System;Half;MinMagnitudeNumber;(System.Half,System.Half);Argument[1];ReturnValue;value;dfc-generated | | System;Half;MinNumber;(System.Half,System.Half);Argument[0];ReturnValue;value;dfc-generated | | System;Half;MinNumber;(System.Half,System.Half);Argument[1];ReturnValue;value;dfc-generated | +| System;Half;MultiplyAddEstimate;(System.Half,System.Half,System.Half);Argument[2];ReturnValue;taint;dfc-generated | | System;Half;ToString;(System.IFormatProvider);Argument[0];ReturnValue;taint;df-generated | | System;Half;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | | System;HashCode;Add;(T,System.Collections.Generic.IEqualityComparer);Argument[0];Argument[1];taint;df-generated | @@ -21078,6 +22312,7 @@ summary | System;Int16;Min;(System.Int16,System.Int16);Argument[1];ReturnValue;value;dfc-generated | | System;Int16;MinNumber;(System.Int16,System.Int16);Argument[0];ReturnValue;value;dfc-generated | | System;Int16;MinNumber;(System.Int16,System.Int16);Argument[1];ReturnValue;value;dfc-generated | +| System;Int16;MultiplyAddEstimate;(System.Int16,System.Int16,System.Int16);Argument[2];ReturnValue;taint;dfc-generated | | System;Int16;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int16,System.Int16);Argument[0];ReturnValue;taint;dfc-generated | | System;Int16;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int16,System.Int16);Argument[1];ReturnValue;taint;dfc-generated | | System;Int16;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -21100,6 +22335,7 @@ summary | System;Int32;Min;(System.Int32,System.Int32);Argument[1];ReturnValue;value;dfc-generated | | System;Int32;MinNumber;(System.Int32,System.Int32);Argument[0];ReturnValue;value;dfc-generated | | System;Int32;MinNumber;(System.Int32,System.Int32);Argument[1];ReturnValue;value;dfc-generated | +| System;Int32;MultiplyAddEstimate;(System.Int32,System.Int32,System.Int32);Argument[2];ReturnValue;taint;dfc-generated | | System;Int32;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);Argument[0].Element;ReturnValue;taint;manual | | System;Int32;Parse;(System.String);Argument[0];ReturnValue;taint;manual | | System;Int32;Parse;(System.String,System.Globalization.NumberStyles);Argument[0];ReturnValue;taint;manual | @@ -21135,6 +22371,7 @@ summary | System;Int64;Min;(System.Int64,System.Int64);Argument[1];ReturnValue;value;dfc-generated | | System;Int64;MinNumber;(System.Int64,System.Int64);Argument[0];ReturnValue;value;dfc-generated | | System;Int64;MinNumber;(System.Int64,System.Int64);Argument[1];ReturnValue;value;dfc-generated | +| System;Int64;MultiplyAddEstimate;(System.Int64,System.Int64,System.Int64);Argument[2];ReturnValue;taint;dfc-generated | | System;Int64;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int64,System.Int64);Argument[0];ReturnValue;taint;dfc-generated | | System;Int64;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int64,System.Int64);Argument[1];ReturnValue;taint;dfc-generated | | System;Int64;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -21166,6 +22403,7 @@ summary | System;Int128;MinMagnitudeNumber;(System.Int128,System.Int128);Argument[1];ReturnValue;value;dfc-generated | | System;Int128;MinNumber;(System.Int128,System.Int128);Argument[0];ReturnValue;value;dfc-generated | | System;Int128;MinNumber;(System.Int128,System.Int128);Argument[1];ReturnValue;value;dfc-generated | +| System;Int128;MultiplyAddEstimate;(System.Int128,System.Int128,System.Int128);Argument[2];ReturnValue;taint;dfc-generated | | System;Int128;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int128,System.Int128);Argument[0];ReturnValue;taint;dfc-generated | | System;Int128;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.Int128,System.Int128);Argument[1];ReturnValue;taint;dfc-generated | | System;Int128;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | @@ -21195,6 +22433,7 @@ summary | System;IntPtr;MinMagnitudeNumber;(System.IntPtr,System.IntPtr);Argument[1];ReturnValue;value;dfc-generated | | System;IntPtr;MinNumber;(System.IntPtr,System.IntPtr);Argument[0];ReturnValue;value;dfc-generated | | System;IntPtr;MinNumber;(System.IntPtr,System.IntPtr);Argument[1];ReturnValue;value;dfc-generated | +| System;IntPtr;MultiplyAddEstimate;(System.IntPtr,System.IntPtr,System.IntPtr);Argument[2];ReturnValue;taint;dfc-generated | | System;IntPtr;System.Numerics.IAdditionOperators.op_Addition;(System.IntPtr,System.IntPtr);Argument[0];ReturnValue;taint;dfc-generated | | System;IntPtr;System.Numerics.IAdditionOperators.op_Addition;(System.IntPtr,System.IntPtr);Argument[1];ReturnValue;taint;dfc-generated | | System;IntPtr;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.IntPtr,System.IntPtr);Argument[0];ReturnValue;taint;dfc-generated | @@ -21249,6 +22488,7 @@ summary | System;Memory;ToArray;();Argument[this].Property[System.Memory`1.Span].Element;ReturnValue.Element;value;dfc-generated | | System;Memory;ToString;();Argument[this].SyntheticField[System.Memory`1._object];ReturnValue;value;dfc-generated | | System;Memory;TryCopyTo;(System.Memory);Argument[this].Property[System.Memory`1.Span].Element;Argument[0].Property[System.Memory`1.Span].Element;value;dfc-generated | +| System;MemoryExtensions+SpanSplitEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.Boolean);Argument[2];Argument[this];taint;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean);Argument[2];Argument[this];taint;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean);Argument[3];Argument[this];taint;df-generated | @@ -21292,6 +22532,14 @@ summary | System;MemoryExtensions;Sort;(System.Span,System.Comparison);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System;MemoryExtensions;Sort;(System.Span,System.Comparison);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System;MemoryExtensions;Sort;(System.Span,System.Span,System.Comparison);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,T);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,T);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.Buffers.SearchValues);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.Buffers.SearchValues);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | | System;MemoryExtensions;Trim;(System.Memory);Argument[0];ReturnValue;taint;df-generated | | System;MemoryExtensions;Trim;(System.ReadOnlyMemory);Argument[0].SyntheticField[System.ReadOnlyMemory`1._object];ReturnValue.SyntheticField[System.ReadOnlyMemory`1._object];value;dfc-generated | | System;MemoryExtensions;Trim;(System.ReadOnlySpan);Argument[0].Element;ReturnValue.Element;value;dfc-generated | @@ -21442,6 +22690,7 @@ summary | System;SByte;Min;(System.SByte,System.SByte);Argument[1];ReturnValue;value;dfc-generated | | System;SByte;MinNumber;(System.SByte,System.SByte);Argument[0];ReturnValue;value;dfc-generated | | System;SByte;MinNumber;(System.SByte,System.SByte);Argument[1];ReturnValue;value;dfc-generated | +| System;SByte;MultiplyAddEstimate;(System.SByte,System.SByte,System.SByte);Argument[2];ReturnValue;taint;dfc-generated | | System;SByte;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.SByte,System.SByte);Argument[0];ReturnValue;taint;dfc-generated | | System;SByte;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.SByte,System.SByte);Argument[1];ReturnValue;taint;dfc-generated | | System;SByte;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -21454,6 +22703,8 @@ summary | System;Single;Clamp;(System.Single,System.Single,System.Single);Argument[0];ReturnValue;value;dfc-generated | | System;Single;Clamp;(System.Single,System.Single,System.Single);Argument[1];ReturnValue;value;dfc-generated | | System;Single;Clamp;(System.Single,System.Single,System.Single);Argument[2];ReturnValue;value;dfc-generated | +| System;Single;ConvertToInteger;(System.Single);Argument[0];ReturnValue;value;dfc-generated | +| System;Single;ConvertToIntegerNative;(System.Single);Argument[0];ReturnValue;value;dfc-generated | | System;Single;CopySign;(System.Single,System.Single);Argument[0];ReturnValue;value;dfc-generated | | System;Single;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System;Single;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | @@ -21466,6 +22717,7 @@ summary | System;Single;Min;(System.Single,System.Single);Argument[1];ReturnValue;value;dfc-generated | | System;Single;MinNumber;(System.Single,System.Single);Argument[0];ReturnValue;value;dfc-generated | | System;Single;MinNumber;(System.Single,System.Single);Argument[1];ReturnValue;value;dfc-generated | +| System;Single;MultiplyAddEstimate;(System.Single,System.Single,System.Single);Argument[2];ReturnValue;taint;dfc-generated | | System;Single;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Single;ToDecimal;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | | System;Single;ToString;(System.IFormatProvider);Argument[this];ReturnValue;value;dfc-generated | @@ -21643,8 +22895,6 @@ summary | System;String;TryParse;(System.String,System.IFormatProvider,System.String);Argument[0];ReturnValue;value;dfc-generated | | System;StringComparer;Compare;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System;StringComparer;Compare;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | -| System;StringComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System;StringComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System;StringComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System;StringNormalizationExtensions;Normalize;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;StringNormalizationExtensions;Normalize;(System.String,System.Text.NormalizationForm);Argument[0];ReturnValue;value;dfc-generated | @@ -22032,6 +23282,7 @@ summary | System;Type;GetGenericArguments;();Argument[this];ReturnValue;taint;df-generated | | System;Type;GetGenericTypeDefinition;();Argument[this];ReturnValue;value;dfc-generated | | System;Type;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System;Type;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System;Type;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System;Type;GetMethodImpl;(System.String,System.Int32,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System;Type;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | @@ -22085,6 +23336,7 @@ summary | System;UInt16;Min;(System.UInt16,System.UInt16);Argument[1];ReturnValue;value;dfc-generated | | System;UInt16;MinNumber;(System.UInt16,System.UInt16);Argument[0];ReturnValue;value;dfc-generated | | System;UInt16;MinNumber;(System.UInt16,System.UInt16);Argument[1];ReturnValue;value;dfc-generated | +| System;UInt16;MultiplyAddEstimate;(System.UInt16,System.UInt16,System.UInt16);Argument[2];ReturnValue;taint;dfc-generated | | System;UInt16;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt16,System.UInt16);Argument[0];ReturnValue;taint;dfc-generated | | System;UInt16;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt16,System.UInt16);Argument[1];ReturnValue;taint;dfc-generated | | System;UInt16;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -22107,6 +23359,7 @@ summary | System;UInt32;Min;(System.UInt32,System.UInt32);Argument[1];ReturnValue;value;dfc-generated | | System;UInt32;MinNumber;(System.UInt32,System.UInt32);Argument[0];ReturnValue;value;dfc-generated | | System;UInt32;MinNumber;(System.UInt32,System.UInt32);Argument[1];ReturnValue;value;dfc-generated | +| System;UInt32;MultiplyAddEstimate;(System.UInt32,System.UInt32,System.UInt32);Argument[2];ReturnValue;taint;dfc-generated | | System;UInt32;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt32,System.UInt32);Argument[0];ReturnValue;taint;dfc-generated | | System;UInt32;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt32,System.UInt32);Argument[1];ReturnValue;taint;dfc-generated | | System;UInt32;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -22129,6 +23382,7 @@ summary | System;UInt64;Min;(System.UInt64,System.UInt64);Argument[1];ReturnValue;value;dfc-generated | | System;UInt64;MinNumber;(System.UInt64,System.UInt64);Argument[0];ReturnValue;value;dfc-generated | | System;UInt64;MinNumber;(System.UInt64,System.UInt64);Argument[1];ReturnValue;value;dfc-generated | +| System;UInt64;MultiplyAddEstimate;(System.UInt64,System.UInt64,System.UInt64);Argument[2];ReturnValue;taint;dfc-generated | | System;UInt64;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt64,System.UInt64);Argument[0];ReturnValue;taint;dfc-generated | | System;UInt64;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt64,System.UInt64);Argument[1];ReturnValue;taint;dfc-generated | | System;UInt64;ToDateTime;(System.IFormatProvider);Argument[this];ReturnValue;value;df-generated | @@ -22160,6 +23414,7 @@ summary | System;UInt128;MinMagnitudeNumber;(System.UInt128,System.UInt128);Argument[1];ReturnValue;value;dfc-generated | | System;UInt128;MinNumber;(System.UInt128,System.UInt128);Argument[0];ReturnValue;value;dfc-generated | | System;UInt128;MinNumber;(System.UInt128,System.UInt128);Argument[1];ReturnValue;value;dfc-generated | +| System;UInt128;MultiplyAddEstimate;(System.UInt128,System.UInt128,System.UInt128);Argument[2];ReturnValue;taint;dfc-generated | | System;UInt128;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt128,System.UInt128);Argument[0];ReturnValue;taint;dfc-generated | | System;UInt128;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UInt128,System.UInt128);Argument[1];ReturnValue;taint;dfc-generated | | System;UInt128;ToString;(System.String,System.IFormatProvider);Argument[this];ReturnValue;taint;dfc-generated | @@ -22189,6 +23444,7 @@ summary | System;UIntPtr;MinMagnitudeNumber;(System.UIntPtr,System.UIntPtr);Argument[1];ReturnValue;value;dfc-generated | | System;UIntPtr;MinNumber;(System.UIntPtr,System.UIntPtr);Argument[0];ReturnValue;value;dfc-generated | | System;UIntPtr;MinNumber;(System.UIntPtr,System.UIntPtr);Argument[1];ReturnValue;value;dfc-generated | +| System;UIntPtr;MultiplyAddEstimate;(System.UIntPtr,System.UIntPtr,System.UIntPtr);Argument[2];ReturnValue;taint;dfc-generated | | System;UIntPtr;System.Numerics.IAdditionOperators.op_Addition;(System.UIntPtr,System.UIntPtr);Argument[0];ReturnValue;taint;dfc-generated | | System;UIntPtr;System.Numerics.IAdditionOperators.op_Addition;(System.UIntPtr,System.UIntPtr);Argument[1];ReturnValue;taint;dfc-generated | | System;UIntPtr;System.Numerics.IAdditionOperators.op_CheckedAddition;(System.UIntPtr,System.UIntPtr);Argument[0];ReturnValue;taint;dfc-generated | @@ -22198,6 +23454,7 @@ summary | System;UnhandledExceptionEventArgs;UnhandledExceptionEventArgs;(System.Object,System.Boolean);Argument[0];Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception];value;dfc-generated | | System;UnhandledExceptionEventArgs;get_ExceptionObject;();Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception];ReturnValue;value;dfc-generated | | System;UnhandledExceptionEventHandler;BeginInvoke;(System.Object,System.UnhandledExceptionEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System;Uri;EscapeDataString;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;dfc-generated | | System;Uri;EscapeDataString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;EscapeString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;EscapeUriString;(System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -22214,6 +23471,9 @@ summary | System;Uri;TryCreate;(System.Uri,System.String,System.Uri);Argument[1];ReturnValue.SyntheticField[System.Uri._string];value;dfc-generated | | System;Uri;TryCreate;(System.Uri,System.Uri,System.Uri);Argument[0];ReturnValue;taint;df-generated | | System;Uri;TryCreate;(System.Uri,System.Uri,System.Uri);Argument[1];ReturnValue;taint;df-generated | +| System;Uri;TryEscapeDataString;(System.ReadOnlySpan,System.Span,System.Int32);Argument[0].Element;Argument[1].Element;value;dfc-generated | +| System;Uri;TryUnescapeDataString;(System.ReadOnlySpan,System.Span,System.Int32);Argument[0].Element;Argument[1].Element;value;dfc-generated | +| System;Uri;UnescapeDataString;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;dfc-generated | | System;Uri;UnescapeDataString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;Uri;(System.String);Argument[0];Argument[this];taint;manual | | System;Uri;Uri;(System.String,System.Boolean);Argument[0];Argument[this];taint;manual | @@ -22234,13 +23494,49 @@ summary | System;Uri;get_Query;();Argument[this];ReturnValue;taint;manual | | System;Uri;get_Scheme;();Argument[this];ReturnValue;taint;df-generated | | System;Uri;get_UserInfo;();Argument[this];ReturnValue;taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].SyntheticField[System.UriBuilder._uri];taint;dfc-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[3];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].SyntheticField[System.UriBuilder._uri];value;dfc-generated | -| System;UriBuilder;get_Uri;();Argument[this].SyntheticField[System.UriBuilder._uri];ReturnValue;value;dfc-generated | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Fragment];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Host];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Password];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Path];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Port];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Query];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Scheme];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.UserName];ReturnValue;taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[3];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[3];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Fragment];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Host];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Password];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Path];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Port];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Query];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Scheme];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.UserName];ReturnValue;taint;manual | | System;UriFormatException;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System;UriParser;GetComponents;(System.Uri,System.UriComponents,System.UriFormat);Argument[0];ReturnValue;taint;df-generated | | System;UriParser;OnNewUri;();Argument[this];ReturnValue;value;dfc-generated | @@ -22642,6 +23938,10 @@ neutral | Microsoft.Extensions.Caching.Distributed;DistributedCacheExtensions;SetString;(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;DistributedCacheExtensions;SetStringAsync;(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;DistributedCacheExtensions;SetStringAsync;(Microsoft.Extensions.Caching.Distributed.IDistributedCache,System.String,System.String,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Distributed;IBufferDistributedCache;Set;(System.String,System.Buffers.ReadOnlySequence,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions);summary;df-generated | +| Microsoft.Extensions.Caching.Distributed;IBufferDistributedCache;SetAsync;(System.String,System.Buffers.ReadOnlySequence,Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Distributed;IBufferDistributedCache;TryGet;(System.String,System.Buffers.IBufferWriter);summary;df-generated | +| Microsoft.Extensions.Caching.Distributed;IBufferDistributedCache;TryGetAsync;(System.String,System.Buffers.IBufferWriter,System.Threading.CancellationToken);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;IDistributedCache;Get;(System.String);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;IDistributedCache;GetAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;IDistributedCache;Refresh;(System.String);summary;df-generated | @@ -22660,6 +23960,16 @@ neutral | Microsoft.Extensions.Caching.Distributed;MemoryDistributedCache;RemoveAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;MemoryDistributedCache;Set;(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions);summary;df-generated | | Microsoft.Extensions.Caching.Distributed;MemoryDistributedCache;SetAsync;(System.String,System.Byte[],Microsoft.Extensions.Caching.Distributed.DistributedCacheEntryOptions,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;GetOrCreateAsync;(System.String,System.Func>,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;GetOrCreateAsync;(System.String,TState,System.Func>,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;RemoveAsync;(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;RemoveAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;RemoveByTagAsync;(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;RemoveByTagAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;HybridCache;SetAsync;(System.String,T,Microsoft.Extensions.Caching.Hybrid.HybridCacheEntryOptions,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;IHybridCacheSerializer;Deserialize;(System.Buffers.ReadOnlySequence);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;IHybridCacheSerializer;Serialize;(T,System.Buffers.IBufferWriter);summary;df-generated | +| Microsoft.Extensions.Caching.Hybrid;IHybridCacheSerializerFactory;TryCreateSerializer;(Microsoft.Extensions.Caching.Hybrid.IHybridCacheSerializer);summary;df-generated | | Microsoft.Extensions.Caching.Memory;CacheExtensions;Get;(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object);summary;df-generated | | Microsoft.Extensions.Caching.Memory;CacheExtensions;Get;(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object);summary;df-generated | | Microsoft.Extensions.Caching.Memory;CacheExtensions;GetOrCreateAsync;(Microsoft.Extensions.Caching.Memory.IMemoryCache,System.Object,System.Func>);summary;df-generated | @@ -22678,47 +23988,35 @@ neutral | Microsoft.Extensions.Caching.Memory;MemoryCache;Remove;(System.Object);summary;df-generated | | Microsoft.Extensions.Caching.Memory;MemoryCache;TryGetValue;(System.Object,System.Object);summary;df-generated | | Microsoft.Extensions.Caching.Memory;MemoryCache;get_Count;();summary;df-generated | +| Microsoft.Extensions.Caching.Memory;MemoryCache;get_Keys;();summary;df-generated | | Microsoft.Extensions.Caching.Memory;MemoryCacheEntryOptions;get_ExpirationTokens;();summary;df-generated | | Microsoft.Extensions.Caching.Memory;MemoryCacheEntryOptions;get_PostEvictionCallbacks;();summary;df-generated | | Microsoft.Extensions.Caching.Memory;MemoryCacheOptions;get_Value;();summary;df-generated | -| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationProvider;CommandLineConfigurationProvider;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IDictionary);summary;df-generated | | Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationProvider;Load;();summary;df-generated | -| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | +| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationProvider;get_Args;();summary;df-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;Load;();summary;df-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;ToString;();summary;df-generated | -| Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Ini;IniConfigurationProvider;IniConfigurationProvider;(Microsoft.Extensions.Configuration.Ini.IniConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration.Ini;IniConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration.Ini;IniConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;IniStreamConfigurationProvider;(Microsoft.Extensions.Configuration.Ini.IniStreamConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Read;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Json;JsonConfigurationProvider;JsonConfigurationProvider;(Microsoft.Extensions.Configuration.Json.JsonConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration.Json;JsonConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration.Json;JsonConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Json;JsonStreamConfigurationProvider;JsonStreamConfigurationProvider;(Microsoft.Extensions.Configuration.Json.JsonStreamConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration.Json;JsonStreamConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration.Json;JsonStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationProvider;Dispose;();summary;df-generated | | Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationProvider;Load;();summary;df-generated | | Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationProvider;ToString;();summary;df-generated | -| Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Memory;MemoryConfigurationProvider;Add;(System.String,System.String);summary;df-generated | -| Microsoft.Extensions.Configuration.Memory;MemoryConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | -| Microsoft.Extensions.Configuration.UserSecrets;UserSecretsIdAttribute;UserSecretsIdAttribute;(System.String);summary;df-generated | | Microsoft.Extensions.Configuration.UserSecrets;UserSecretsIdAttribute;get_UserSecretsId;();summary;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlConfigurationProvider;XmlConfigurationProvider;(Microsoft.Extensions.Configuration.Xml.XmlConfigurationSource);summary;df-generated | -| Microsoft.Extensions.Configuration.Xml;XmlConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationProvider;XmlStreamConfigurationProvider;(Microsoft.Extensions.Configuration.Xml.XmlStreamConfigurationSource);summary;df-generated | -| Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;Dispose;();summary;df-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;Load;();summary;df-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;Set;(System.String,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ChainedConfigurationProvider;TryGet;(System.String,System.String);summary;df-generated | -| Microsoft.Extensions.Configuration;ChainedConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBinder;Bind;(Microsoft.Extensions.Configuration.IConfiguration,System.Object);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBinder;Bind;(Microsoft.Extensions.Configuration.IConfiguration,System.Object,System.Action);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBinder;Bind;(Microsoft.Extensions.Configuration.IConfiguration,System.String,System.Object);summary;df-generated | @@ -22727,7 +24025,6 @@ neutral | Microsoft.Extensions.Configuration;ConfigurationBinder;GetValue;(Microsoft.Extensions.Configuration.IConfiguration,System.Type,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBinder;GetValue;(Microsoft.Extensions.Configuration.IConfiguration,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationBuilder;get_Sources;();summary;df-generated | -| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;get_ConfigurationProvider;();summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;get_Key;();summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;get_Path;();summary;df-generated | @@ -22739,7 +24036,6 @@ neutral | Microsoft.Extensions.Configuration;ConfigurationExtensions;GetRequiredSection;(Microsoft.Extensions.Configuration.IConfiguration,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationKeyComparer;Compare;(System.String,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationKeyComparer;get_Instance;();summary;df-generated | -| Microsoft.Extensions.Configuration;ConfigurationKeyNameAttribute;ConfigurationKeyNameAttribute;(System.String);summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationKeyNameAttribute;get_Name;();summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Dispose;();summary;df-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;GetChildren;();summary;df-generated | @@ -22767,13 +24063,10 @@ neutral | Microsoft.Extensions.Configuration;ConfigurationSection;set_Item;(System.String,System.String);summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;Dispose;();summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;Dispose;(System.Boolean);summary;df-generated | -| Microsoft.Extensions.Configuration;FileConfigurationProvider;FileConfigurationProvider;(Microsoft.Extensions.Configuration.FileConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;Load;();summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;ToString;();summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;get_Source;();summary;df-generated | -| Microsoft.Extensions.Configuration;FileConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | -| Microsoft.Extensions.Configuration;FileConfigurationSource;EnsureDefaults;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationSource;ResolveFileProvider;();summary;df-generated | | Microsoft.Extensions.Configuration;IConfiguration;GetChildren;();summary;df-generated | | Microsoft.Extensions.Configuration;IConfiguration;GetSection;(System.String);summary;df-generated | @@ -22785,12 +24078,9 @@ neutral | Microsoft.Extensions.Configuration;IConfigurationRoot;Reload;();summary;df-generated | | Microsoft.Extensions.Configuration;IConfigurationSection;get_Key;();summary;df-generated | | Microsoft.Extensions.Configuration;IConfigurationSection;get_Path;();summary;df-generated | -| Microsoft.Extensions.Configuration;IConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.Configuration;StreamConfigurationProvider;Load;();summary;df-generated | | Microsoft.Extensions.Configuration;StreamConfigurationProvider;Load;(System.IO.Stream);summary;df-generated | -| Microsoft.Extensions.Configuration;StreamConfigurationProvider;StreamConfigurationProvider;(Microsoft.Extensions.Configuration.StreamConfigurationSource);summary;df-generated | | Microsoft.Extensions.Configuration;StreamConfigurationProvider;get_Source;();summary;df-generated | -| Microsoft.Extensions.Configuration;StreamConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);summary;df-generated | | Microsoft.Extensions.DependencyInjection.Extensions;ServiceCollectionDescriptorExtensions;TryAddKeyedScoped;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object);summary;df-generated | | Microsoft.Extensions.DependencyInjection.Extensions;ServiceCollectionDescriptorExtensions;TryAddKeyedScoped;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Func);summary;df-generated | | Microsoft.Extensions.DependencyInjection.Extensions;ServiceCollectionDescriptorExtensions;TryAddKeyedScoped;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Type,System.Object,System.Type);summary;df-generated | @@ -22835,7 +24125,6 @@ neutral | Microsoft.Extensions.DependencyInjection;AsyncServiceScope;Dispose;();summary;df-generated | | Microsoft.Extensions.DependencyInjection;DefaultServiceProviderFactory;CreateBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection);summary;df-generated | | Microsoft.Extensions.DependencyInjection;DefaultServiceProviderFactory;CreateServiceProvider;(Microsoft.Extensions.DependencyInjection.IServiceCollection);summary;df-generated | -| Microsoft.Extensions.DependencyInjection;FromKeyedServicesAttribute;FromKeyedServicesAttribute;(System.Object);summary;df-generated | | Microsoft.Extensions.DependencyInjection;FromKeyedServicesAttribute;get_Key;();summary;df-generated | | Microsoft.Extensions.DependencyInjection;HttpClientFactoryServiceCollectionExtensions;AddHttpClient;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action);summary;df-generated | | Microsoft.Extensions.DependencyInjection;HttpClientFactoryServiceCollectionExtensions;AddHttpClient;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action);summary;df-generated | @@ -22989,7 +24278,6 @@ neutral | Microsoft.Extensions.FileProviders;NotFoundDirectoryContents;get_Exists;();summary;df-generated | | Microsoft.Extensions.FileProviders;NotFoundDirectoryContents;get_Singleton;();summary;df-generated | | Microsoft.Extensions.FileProviders;NotFoundFileInfo;CreateReadStream;();summary;df-generated | -| Microsoft.Extensions.FileProviders;NotFoundFileInfo;NotFoundFileInfo;(System.String);summary;df-generated | | Microsoft.Extensions.FileProviders;NotFoundFileInfo;get_Exists;();summary;df-generated | | Microsoft.Extensions.FileProviders;NotFoundFileInfo;get_IsDirectory;();summary;df-generated | | Microsoft.Extensions.FileProviders;NotFoundFileInfo;get_LastModified;();summary;df-generated | @@ -23007,7 +24295,6 @@ neutral | Microsoft.Extensions.FileProviders;PhysicalFileProvider;GetDirectoryContents;(System.String);summary;df-generated | | Microsoft.Extensions.FileProviders;PhysicalFileProvider;GetFileInfo;(System.String);summary;df-generated | | Microsoft.Extensions.FileProviders;PhysicalFileProvider;PhysicalFileProvider;(System.String);summary;df-generated | -| Microsoft.Extensions.FileProviders;PhysicalFileProvider;PhysicalFileProvider;(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters);summary;df-generated | | Microsoft.Extensions.FileProviders;PhysicalFileProvider;Watch;(System.String);summary;df-generated | | Microsoft.Extensions.FileProviders;PhysicalFileProvider;get_Root;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoBase;GetFile;(System.String);summary;df-generated | @@ -23017,7 +24304,6 @@ neutral | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;CurrentPathSegment;get_CanProduceStem;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;Equals;(System.Object);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;GetHashCode;();summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;LiteralPathSegment;(System.String,System.StringComparison);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;Match;(System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;get_CanProduceStem;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;get_Value;();summary;df-generated | @@ -23026,7 +24312,6 @@ neutral | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;RecursiveWildcardSegment;Match;(System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;RecursiveWildcardSegment;get_CanProduceStem;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;Match;(System.String);summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;get_BeginsWith;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;get_CanProduceStem;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;get_Contains;();summary;df-generated | @@ -23039,7 +24324,6 @@ neutral | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContext;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear+FrameData;get_StemItems;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;IsLastSegment;();summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;PatternContextLinear;(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;TestMatchingSegment;(System.String);summary;df-generated | @@ -23052,7 +24336,6 @@ neutral | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged+FrameData;get_StemItems;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;IsEndingGroup;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;IsStartingGroup;();summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PatternContextRagged;(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PopDirectory;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);summary;df-generated | @@ -23082,12 +24365,10 @@ neutral | Microsoft.Extensions.FileSystemGlobbing.Internal;IRaggedPattern;get_Segments;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;IRaggedPattern;get_StartsWith;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;MatcherContext;Execute;();summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing.Internal;PatternTestResult;Success;(System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;PatternTestResult;get_IsSuccessful;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;PatternTestResult;get_Stem;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;Equals;(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;Equals;(System.Object);summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;FilePatternMatch;(System.String,System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;GetHashCode;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;get_Path;();summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;get_Stem;();summary;df-generated | @@ -23097,13 +24378,10 @@ neutral | Microsoft.Extensions.FileSystemGlobbing;Matcher;Matcher;(System.StringComparison);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;AddExcludePatterns;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable[]);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;AddIncludePatterns;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable[]);summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;GetResultsInFullPath;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;Match;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.Collections.Generic.IEnumerable);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;Match;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;Match;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.Collections.Generic.IEnumerable);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;Match;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String,System.String);summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable);summary;df-generated | -| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable,System.Boolean);summary;df-generated | | Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;get_HasMatches;();summary;df-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;NotifyStarted;();summary;df-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;NotifyStopped;();summary;df-generated | @@ -23127,7 +24405,6 @@ neutral | Microsoft.Extensions.Hosting;HostApplicationBuilder;get_Configuration;();summary;df-generated | | Microsoft.Extensions.Hosting;HostBuilder;Build;();summary;df-generated | | Microsoft.Extensions.Hosting;HostBuilder;get_Properties;();summary;df-generated | -| Microsoft.Extensions.Hosting;HostBuilderContext;HostBuilderContext;(System.Collections.Generic.IDictionary);summary;df-generated | | Microsoft.Extensions.Hosting;HostBuilderContext;get_Properties;();summary;df-generated | | Microsoft.Extensions.Hosting;HostEnvironmentEnvExtensions;IsDevelopment;(Microsoft.Extensions.Hosting.IHostEnvironment);summary;df-generated | | Microsoft.Extensions.Hosting;HostEnvironmentEnvExtensions;IsEnvironment;(Microsoft.Extensions.Hosting.IHostEnvironment,System.String);summary;df-generated | @@ -23178,7 +24455,17 @@ neutral | Microsoft.Extensions.Http;ITypedHttpClientFactory;CreateClient;(System.Net.Http.HttpClient);summary;df-generated | | Microsoft.Extensions.Internal;ISystemClock;get_UtcNow;();summary;df-generated | | Microsoft.Extensions.Internal;SystemClock;get_UtcNow;();summary;df-generated | -| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_ActivitySpanId;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_ActivityTraceId;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_Attributes;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_EventId;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_Exception;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_FormattedMessage;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_LogLevel;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_ManagedThreadId;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_MessageTemplate;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;BufferedLogRecord;get_Timestamp;();summary;df-generated | +| Microsoft.Extensions.Logging.Abstractions;IBufferedLogger;LogRecords;(System.Collections.Generic.IEnumerable);summary;df-generated | | Microsoft.Extensions.Logging.Abstractions;LogEntry;get_Category;();summary;df-generated | | Microsoft.Extensions.Logging.Abstractions;LogEntry;get_EventId;();summary;df-generated | | Microsoft.Extensions.Logging.Abstractions;LogEntry;get_Exception;();summary;df-generated | @@ -23199,7 +24486,6 @@ neutral | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;TryGetSwitch;(System.String,Microsoft.Extensions.Logging.LogLevel);summary;df-generated | | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;get_ChangeToken;();summary;df-generated | | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;get_IncludeScopes;();summary;df-generated | -| Microsoft.Extensions.Logging.Console;ConsoleFormatter;ConsoleFormatter;(System.String);summary;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleFormatter;get_Name;();summary;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleLoggerProvider;ConsoleLoggerProvider;(Microsoft.Extensions.Options.IOptionsMonitor);summary;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleLoggerProvider;Dispose;();summary;df-generated | @@ -23218,7 +24504,6 @@ neutral | Microsoft.Extensions.Logging.TraceSource;TraceSourceLoggerProvider;TraceSourceLoggerProvider;(System.Diagnostics.SourceSwitch);summary;df-generated | | Microsoft.Extensions.Logging;EventId;Equals;(Microsoft.Extensions.Logging.EventId);summary;df-generated | | Microsoft.Extensions.Logging;EventId;Equals;(System.Object);summary;df-generated | -| Microsoft.Extensions.Logging;EventId;EventId;(System.Int32,System.String);summary;df-generated | | Microsoft.Extensions.Logging;EventId;GetHashCode;();summary;df-generated | | Microsoft.Extensions.Logging;EventId;get_Id;();summary;df-generated | | Microsoft.Extensions.Logging;EventId;get_Name;();summary;df-generated | @@ -23265,7 +24550,6 @@ neutral | Microsoft.Extensions.Logging;LoggerFactory;LoggerFactory;(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions);summary;df-generated | | Microsoft.Extensions.Logging;LoggerFactoryExtensions;CreateLogger;(Microsoft.Extensions.Logging.ILoggerFactory,System.Type);summary;df-generated | | Microsoft.Extensions.Logging;LoggerFactoryExtensions;CreateLogger;(Microsoft.Extensions.Logging.ILoggerFactory);summary;df-generated | -| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);summary;df-generated | | Microsoft.Extensions.Logging;LoggerFilterRule;get_CategoryName;();summary;df-generated | | Microsoft.Extensions.Logging;LoggerFilterRule;get_Filter;();summary;df-generated | | Microsoft.Extensions.Logging;LoggerFilterRule;get_LogLevel;();summary;df-generated | @@ -23292,10 +24576,6 @@ neutral | Microsoft.Extensions.Logging;LoggerMessage;DefineScope;(System.String);summary;df-generated | | Microsoft.Extensions.Logging;LoggerMessage;DefineScope;(System.String);summary;df-generated | | Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(Microsoft.Extensions.Logging.LogLevel);summary;df-generated | -| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(Microsoft.Extensions.Logging.LogLevel,System.String);summary;df-generated | -| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String);summary;df-generated | -| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.String);summary;df-generated | -| Microsoft.Extensions.Logging;ProviderAliasAttribute;ProviderAliasAttribute;(System.String);summary;df-generated | | Microsoft.Extensions.Logging;ProviderAliasAttribute;get_Alias;();summary;df-generated | | Microsoft.Extensions.Options;ConfigurationChangeTokenSource;ConfigurationChangeTokenSource;(Microsoft.Extensions.Configuration.IConfiguration);summary;df-generated | | Microsoft.Extensions.Options;ConfigurationChangeTokenSource;GetChangeToken;();summary;df-generated | @@ -23303,7 +24583,6 @@ neutral | Microsoft.Extensions.Options;ConfigureFromConfigurationOptions;ConfigureFromConfigurationOptions;(Microsoft.Extensions.Configuration.IConfiguration);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency2;();summary;df-generated | @@ -23313,7 +24592,6 @@ neutral | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency2;();summary;df-generated | @@ -23322,7 +24600,6 @@ neutral | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency2;();summary;df-generated | @@ -23330,26 +24607,21 @@ neutral | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Dependency;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ConfigureOptions;Configure;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);summary;df-generated | | Microsoft.Extensions.Options;ConfigureOptions;get_Action;();summary;df-generated | -| Microsoft.Extensions.Options;DataAnnotationValidateOptions;DataAnnotationValidateOptions;(System.String);summary;df-generated | | Microsoft.Extensions.Options;DataAnnotationValidateOptions;Validate;(System.String,TOptions);summary;df-generated | | Microsoft.Extensions.Options;DataAnnotationValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;IConfigureNamedOptions;Configure;(System.String,TOptions);summary;df-generated | @@ -23372,7 +24644,6 @@ neutral | Microsoft.Extensions.Options;NamedConfigureFromConfigurationOptions;NamedConfigureFromConfigurationOptions;(System.String,Microsoft.Extensions.Configuration.IConfiguration);summary;df-generated | | Microsoft.Extensions.Options;NamedConfigureFromConfigurationOptions;NamedConfigureFromConfigurationOptions;(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action);summary;df-generated | | Microsoft.Extensions.Options;Options;Create;(TOptions);summary;df-generated | -| Microsoft.Extensions.Options;OptionsBuilder;OptionsBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String);summary;df-generated | | Microsoft.Extensions.Options;OptionsBuilder;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;OptionsBuilder;get_Services;();summary;df-generated | | Microsoft.Extensions.Options;OptionsCache;Clear;();summary;df-generated | @@ -23389,14 +24660,11 @@ neutral | Microsoft.Extensions.Options;OptionsMonitor;OnChange;(System.Action);summary;df-generated | | Microsoft.Extensions.Options;OptionsMonitor;get_CurrentValue;();summary;df-generated | | Microsoft.Extensions.Options;OptionsMonitorExtensions;OnChange;(Microsoft.Extensions.Options.IOptionsMonitor,System.Action);summary;df-generated | -| Microsoft.Extensions.Options;OptionsValidationException;OptionsValidationException;(System.String,System.Type,System.Collections.Generic.IEnumerable);summary;df-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_Failures;();summary;df-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_OptionsName;();summary;df-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_OptionsType;();summary;df-generated | -| Microsoft.Extensions.Options;OptionsWrapper;OptionsWrapper;(TOptions);summary;df-generated | | Microsoft.Extensions.Options;OptionsWrapper;get_Value;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency2;();summary;df-generated | @@ -23405,7 +24673,6 @@ neutral | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency5;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency2;();summary;df-generated | @@ -23413,25 +24680,21 @@ neutral | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency4;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency3;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Dependency;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Action;();summary;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateEnumeratedItemsAttribute;ValidateEnumeratedItemsAttribute;(System.Type);summary;df-generated | @@ -23439,7 +24702,6 @@ neutral | Microsoft.Extensions.Options;ValidateObjectMembersAttribute;ValidateObjectMembersAttribute;(System.Type);summary;df-generated | | Microsoft.Extensions.Options;ValidateObjectMembersAttribute;get_Validator;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency3;();summary;df-generated | @@ -23449,7 +24711,6 @@ neutral | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency3;();summary;df-generated | @@ -23458,7 +24719,6 @@ neutral | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency3;();summary;df-generated | @@ -23466,32 +24726,25 @@ neutral | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency1;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency2;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_FailureMessage;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Dependency;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_FailureMessage;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_FailureMessage;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Name;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptions;get_Validation;();summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.Collections.Generic.IEnumerable);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.String);summary;df-generated | -| Microsoft.Extensions.Options;ValidateOptionsResultBuilder;Build;();summary;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;Clear;();summary;df-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;get_ActiveChangeCallbacks;();summary;df-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;get_HasChanged;();summary;df-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action);summary;df-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action,TState);summary;df-generated | -| Microsoft.Extensions.Primitives;CompositeChangeToken;CompositeChangeToken;(System.Collections.Generic.IReadOnlyList);summary;df-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;get_ActiveChangeCallbacks;();summary;df-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;get_ChangeTokens;();summary;df-generated | | Microsoft.Extensions.Primitives;CompositeChangeToken;get_HasChanged;();summary;df-generated | @@ -23525,8 +24778,6 @@ neutral | Microsoft.Extensions.Primitives;StringSegment;LastIndexOf;(System.Char);summary;df-generated | | Microsoft.Extensions.Primitives;StringSegment;Split;(System.Char[]);summary;df-generated | | Microsoft.Extensions.Primitives;StringSegment;StartsWith;(System.String,System.StringComparison);summary;df-generated | -| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String);summary;df-generated | -| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String,System.Int32,System.Int32);summary;df-generated | | Microsoft.Extensions.Primitives;StringSegment;Subsegment;(System.Int32);summary;df-generated | | Microsoft.Extensions.Primitives;StringSegment;Subsegment;(System.Int32,System.Int32);summary;df-generated | | Microsoft.Extensions.Primitives;StringSegment;Trim;();summary;df-generated | @@ -24502,6 +25753,8 @@ neutral | ServiceStack.Script;ScriptContext;Dispose;();summary;df-generated | | ServiceStack.Script;SharpCodePage;Dispose;();summary;df-generated | | ServiceStack.Serialization;XmlSerializerWrapper;IsStartObject;(System.Xml.XmlDictionaryReader);summary;df-generated | +| ServiceStack.Serialization;XmlSerializerWrapper;ReadObject;(System.Xml.XmlDictionaryReader);summary;df-generated | +| ServiceStack.Serialization;XmlSerializerWrapper;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);summary;df-generated | | ServiceStack.Serialization;XmlSerializerWrapper;WriteEndObject;(System.Xml.XmlDictionaryWriter);summary;df-generated | | ServiceStack.Serialization;XmlSerializerWrapper;WriteObject;(System.Xml.XmlDictionaryWriter,System.Object);summary;df-generated | | ServiceStack.Serialization;XmlSerializerWrapper;WriteObjectContent;(System.Xml.XmlDictionaryWriter,System.Object);summary;df-generated | @@ -24520,7 +25773,6 @@ neutral | ServiceStack.Text;RecyclableMemoryStream;ReadByte;();summary;df-generated | | ServiceStack.Text;RecyclableMemoryStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | ServiceStack.Text;RecyclableMemoryStream;SetLength;(System.Int64);summary;df-generated | -| ServiceStack.Text;RecyclableMemoryStream;Write;(System.ReadOnlySpan);summary;df-generated | | ServiceStack.Text;RecyclableMemoryStream;WriteByte;(System.Byte);summary;df-generated | | ServiceStack.Text;RecyclableMemoryStream;get_CanRead;();summary;df-generated | | ServiceStack.Text;RecyclableMemoryStream;get_CanSeek;();summary;df-generated | @@ -24705,6 +25957,31 @@ neutral | System.Buffers.Text;Base64;IsValid;(System.ReadOnlySpan,System.Int32);summary;df-generated | | System.Buffers.Text;Base64;IsValid;(System.ReadOnlySpan);summary;df-generated | | System.Buffers.Text;Base64;IsValid;(System.ReadOnlySpan,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromChars;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromChars;(System.ReadOnlySpan,System.Span);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromChars;(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromUtf8;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromUtf8;(System.ReadOnlySpan,System.Span);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromUtf8;(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean);summary;df-generated | +| System.Buffers.Text;Base64Url;DecodeFromUtf8InPlace;(System.Span);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToChars;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToChars;(System.ReadOnlySpan,System.Span);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToChars;(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToString;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToUtf8;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToUtf8;(System.ReadOnlySpan,System.Span);summary;df-generated | +| System.Buffers.Text;Base64Url;EncodeToUtf8;(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Boolean);summary;df-generated | +| System.Buffers.Text;Base64Url;GetEncodedLength;(System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;GetMaxDecodedLength;(System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;IsValid;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;IsValid;(System.ReadOnlySpan,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;IsValid;(System.ReadOnlySpan);summary;df-generated | +| System.Buffers.Text;Base64Url;IsValid;(System.ReadOnlySpan,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;TryDecodeFromChars;(System.ReadOnlySpan,System.Span,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;TryDecodeFromUtf8;(System.ReadOnlySpan,System.Span,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;TryEncodeToChars;(System.ReadOnlySpan,System.Span,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;TryEncodeToUtf8;(System.ReadOnlySpan,System.Span,System.Int32);summary;df-generated | +| System.Buffers.Text;Base64Url;TryEncodeToUtf8InPlace;(System.Span,System.Int32,System.Int32);summary;df-generated | | System.Buffers.Text;Utf8Formatter;TryFormat;(System.Boolean,System.Span,System.Int32,System.Buffers.StandardFormat);summary;df-generated | | System.Buffers.Text;Utf8Formatter;TryFormat;(System.Byte,System.Span,System.Int32,System.Buffers.StandardFormat);summary;df-generated | | System.Buffers.Text;Utf8Formatter;TryFormat;(System.DateTime,System.Span,System.Int32,System.Buffers.StandardFormat);summary;df-generated | @@ -24898,13 +26175,11 @@ neutral | System.CodeDom.Compiler;CodeGenerator;get_NullToken;();summary;df-generated | | System.CodeDom.Compiler;CodeGeneratorOptions;set_Item;(System.String,System.Object);summary;df-generated | | System.CodeDom.Compiler;CodeParser;Parse;(System.IO.TextReader);summary;df-generated | -| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);summary;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;Contains;(System.CodeDom.Compiler.CompilerError);summary;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;IndexOf;(System.CodeDom.Compiler.CompilerError);summary;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;Remove;(System.CodeDom.Compiler.CompilerError);summary;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;get_HasErrors;();summary;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;get_HasWarnings;();summary;df-generated | -| System.CodeDom.Compiler;CompilerInfo;CreateDefaultCompilerParameters;();summary;df-generated | | System.CodeDom.Compiler;CompilerInfo;CreateProvider;();summary;df-generated | | System.CodeDom.Compiler;CompilerInfo;CreateProvider;(System.Collections.Generic.IDictionary);summary;df-generated | | System.CodeDom.Compiler;CompilerInfo;Equals;(System.Object);summary;df-generated | @@ -24916,7 +26191,6 @@ neutral | System.CodeDom.Compiler;CompilerParameters;get_EmbeddedResources;();summary;df-generated | | System.CodeDom.Compiler;CompilerParameters;get_LinkedResources;();summary;df-generated | | System.CodeDom.Compiler;CompilerParameters;get_ReferencedAssemblies;();summary;df-generated | -| System.CodeDom.Compiler;CompilerResults;CompilerResults;(System.CodeDom.Compiler.TempFileCollection);summary;df-generated | | System.CodeDom.Compiler;CompilerResults;get_Errors;();summary;df-generated | | System.CodeDom.Compiler;CompilerResults;get_Output;();summary;df-generated | | System.CodeDom.Compiler;Executor;ExecWait;(System.String,System.CodeDom.Compiler.TempFileCollection);summary;df-generated | @@ -24954,17 +26228,12 @@ neutral | System.CodeDom.Compiler;TempFileCollection;TempFileCollection;(System.String);summary;df-generated | | System.CodeDom.Compiler;TempFileCollection;get_Count;();summary;df-generated | | System.CodeDom.Compiler;TempFileCollection;get_IsSynchronized;();summary;df-generated | -| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.String,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.String,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.String,System.Int32);summary;df-generated | -| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.Type,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.Type,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.Type,System.Int32);summary;df-generated | -| System.CodeDom;CodeArrayIndexerExpression;CodeArrayIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeArrayIndexerExpression;get_Indices;();summary;df-generated | -| System.CodeDom;CodeAssignStatement;CodeAssignStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeAttachEventStatement;CodeAttachEventStatement;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeAttributeArgumentCollection;Contains;(System.CodeDom.CodeAttributeArgument);summary;df-generated | | System.CodeDom;CodeAttributeArgumentCollection;IndexOf;(System.CodeDom.CodeAttributeArgument);summary;df-generated | | System.CodeDom;CodeAttributeArgumentCollection;Remove;(System.CodeDom.CodeAttributeArgument);summary;df-generated | @@ -24972,14 +26241,10 @@ neutral | System.CodeDom;CodeAttributeDeclarationCollection;Contains;(System.CodeDom.CodeAttributeDeclaration);summary;df-generated | | System.CodeDom;CodeAttributeDeclarationCollection;IndexOf;(System.CodeDom.CodeAttributeDeclaration);summary;df-generated | | System.CodeDom;CodeAttributeDeclarationCollection;Remove;(System.CodeDom.CodeAttributeDeclaration);summary;df-generated | -| System.CodeDom;CodeBinaryOperatorExpression;CodeBinaryOperatorExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.String,System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.Type,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeCatchClause;get_Statements;();summary;df-generated | | System.CodeDom;CodeCatchClauseCollection;Contains;(System.CodeDom.CodeCatchClause);summary;df-generated | | System.CodeDom;CodeCatchClauseCollection;IndexOf;(System.CodeDom.CodeCatchClause);summary;df-generated | | System.CodeDom;CodeCatchClauseCollection;Remove;(System.CodeDom.CodeCatchClause);summary;df-generated | -| System.CodeDom;CodeCommentStatement;CodeCommentStatement;(System.CodeDom.CodeComment);summary;df-generated | | System.CodeDom;CodeCommentStatement;CodeCommentStatement;(System.String);summary;df-generated | | System.CodeDom;CodeCommentStatement;CodeCommentStatement;(System.String,System.Boolean);summary;df-generated | | System.CodeDom;CodeCommentStatementCollection;Contains;(System.CodeDom.CodeCommentStatement);summary;df-generated | @@ -24990,26 +26255,18 @@ neutral | System.CodeDom;CodeCompileUnit;get_Namespaces;();summary;df-generated | | System.CodeDom;CodeCompileUnit;get_ReferencedAssemblies;();summary;df-generated | | System.CodeDom;CodeCompileUnit;get_StartDirectives;();summary;df-generated | -| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[]);summary;df-generated | -| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[]);summary;df-generated | | System.CodeDom;CodeConditionStatement;get_FalseStatements;();summary;df-generated | | System.CodeDom;CodeConditionStatement;get_TrueStatements;();summary;df-generated | | System.CodeDom;CodeConstructor;get_BaseConstructorArgs;();summary;df-generated | | System.CodeDom;CodeConstructor;get_ChainedConstructorArgs;();summary;df-generated | -| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeDelegateInvokeExpression;get_Parameters;();summary;df-generated | -| System.CodeDom;CodeDirectionExpression;CodeDirectionExpression;(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeDirectiveCollection;Contains;(System.CodeDom.CodeDirective);summary;df-generated | | System.CodeDom;CodeDirectiveCollection;IndexOf;(System.CodeDom.CodeDirective);summary;df-generated | | System.CodeDom;CodeDirectiveCollection;Remove;(System.CodeDom.CodeDirective);summary;df-generated | | System.CodeDom;CodeExpressionCollection;Contains;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeExpressionCollection;IndexOf;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeExpressionCollection;Remove;(System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeExpressionStatement;CodeExpressionStatement;(System.CodeDom.CodeExpression);summary;df-generated | -| System.CodeDom;CodeIndexerExpression;CodeIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeIndexerExpression;get_Indices;();summary;df-generated | -| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);summary;df-generated | | System.CodeDom;CodeIterationStatement;get_Statements;();summary;df-generated | | System.CodeDom;CodeMemberEvent;get_ImplementationTypes;();summary;df-generated | | System.CodeDom;CodeMemberMethod;add_PopulateImplementationTypes;(System.EventHandler);summary;df-generated | @@ -25027,7 +26284,6 @@ neutral | System.CodeDom;CodeMethodInvokeExpression;CodeMethodInvokeExpression;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression[]);summary;df-generated | | System.CodeDom;CodeMethodInvokeExpression;get_Parameters;();summary;df-generated | | System.CodeDom;CodeMethodReferenceExpression;get_TypeArguments;();summary;df-generated | -| System.CodeDom;CodeMethodReturnStatement;CodeMethodReturnStatement;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeNamespace;add_PopulateComments;(System.EventHandler);summary;df-generated | | System.CodeDom;CodeNamespace;add_PopulateImports;(System.EventHandler);summary;df-generated | | System.CodeDom;CodeNamespace;add_PopulateTypes;(System.EventHandler);summary;df-generated | @@ -25052,15 +26308,12 @@ neutral | System.CodeDom;CodeParameterDeclarationExpressionCollection;Contains;(System.CodeDom.CodeParameterDeclarationExpression);summary;df-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;IndexOf;(System.CodeDom.CodeParameterDeclarationExpression);summary;df-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;Remove;(System.CodeDom.CodeParameterDeclarationExpression);summary;df-generated | -| System.CodeDom;CodePrimitiveExpression;CodePrimitiveExpression;(System.Object);summary;df-generated | -| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeStatement;get_EndDirectives;();summary;df-generated | | System.CodeDom;CodeStatement;get_StartDirectives;();summary;df-generated | | System.CodeDom;CodeStatementCollection;Add;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeStatementCollection;Contains;(System.CodeDom.CodeStatement);summary;df-generated | | System.CodeDom;CodeStatementCollection;IndexOf;(System.CodeDom.CodeStatement);summary;df-generated | | System.CodeDom;CodeStatementCollection;Remove;(System.CodeDom.CodeStatement);summary;df-generated | -| System.CodeDom;CodeThrowExceptionStatement;CodeThrowExceptionStatement;(System.CodeDom.CodeExpression);summary;df-generated | | System.CodeDom;CodeTryCatchFinallyStatement;CodeTryCatchFinallyStatement;(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[]);summary;df-generated | | System.CodeDom;CodeTryCatchFinallyStatement;CodeTryCatchFinallyStatement;(System.CodeDom.CodeStatement[],System.CodeDom.CodeCatchClause[],System.CodeDom.CodeStatement[]);summary;df-generated | | System.CodeDom;CodeTryCatchFinallyStatement;get_CatchClauses;();summary;df-generated | @@ -25090,9 +26343,7 @@ neutral | System.CodeDom;CodeTypeParameterCollection;IndexOf;(System.CodeDom.CodeTypeParameter);summary;df-generated | | System.CodeDom;CodeTypeParameterCollection;Remove;(System.CodeDom.CodeTypeParameter);summary;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.CodeDom.CodeTypeParameter);summary;df-generated | -| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.CodeDom.CodeTypeReference,System.Int32);summary;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.CodeDom.CodeTypeReference[]);summary;df-generated | -| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.Int32);summary;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.Type);summary;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.Type,System.CodeDom.CodeTypeReferenceOptions);summary;df-generated | | System.CodeDom;CodeTypeReferenceCollection;Add;(System.String);summary;df-generated | @@ -25139,6 +26390,15 @@ neutral | System.Collections.Concurrent;ConcurrentBag;get_Count;();summary;df-generated | | System.Collections.Concurrent;ConcurrentBag;get_IsEmpty;();summary;df-generated | | System.Collections.Concurrent;ConcurrentBag;get_IsSynchronized;();summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;ContainsKey;(TAlternateKey);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;TryAdd;(TAlternateKey,TValue);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;TryGetValue;(TAlternateKey,TKey,TValue);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;TryGetValue;(TAlternateKey,TValue);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;TryRemove;(TAlternateKey,TKey,TValue);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;TryRemove;(TAlternateKey,TValue);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;get_Dictionary;();summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;get_Item;(TAlternateKey);summary;df-generated | +| System.Collections.Concurrent;ConcurrentDictionary+AlternateLookup;set_Item;(TAlternateKey,TValue);summary;df-generated | | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Collections.Generic.IEqualityComparer);summary;df-generated | | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Int32,System.Int32);summary;df-generated | | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Int32,System.Int32,System.Collections.Generic.IEqualityComparer);summary;df-generated | @@ -25189,6 +26449,9 @@ neutral | System.Collections.Concurrent;OrderablePartitioner;GetOrderablePartitions;(System.Int32);summary;df-generated | | System.Collections.Concurrent;OrderablePartitioner;GetPartitions;(System.Int32);summary;df-generated | | System.Collections.Concurrent;OrderablePartitioner;OrderablePartitioner;(System.Boolean,System.Boolean,System.Boolean);summary;df-generated | +| System.Collections.Concurrent;OrderablePartitioner;get_KeysNormalized;();summary;df-generated | +| System.Collections.Concurrent;OrderablePartitioner;get_KeysOrderedAcrossPartitions;();summary;df-generated | +| System.Collections.Concurrent;OrderablePartitioner;get_KeysOrderedInEachPartition;();summary;df-generated | | System.Collections.Concurrent;Partitioner;Create;(System.Int32,System.Int32);summary;df-generated | | System.Collections.Concurrent;Partitioner;Create;(System.Int32,System.Int32,System.Int32);summary;df-generated | | System.Collections.Concurrent;Partitioner;Create;(System.Int64,System.Int64);summary;df-generated | @@ -25198,6 +26461,7 @@ neutral | System.Collections.Concurrent;Partitioner;get_SupportsDynamicPartitions;();summary;df-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);summary;df-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);summary;df-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;get_Dictionary;();summary;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;Dispose;();summary;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;MoveNext;();summary;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;Reset;();summary;df-generated | @@ -25221,6 +26485,7 @@ neutral | System.Collections.Frozen;FrozenDictionary;get_Item;(TKey);summary;df-generated | | System.Collections.Frozen;FrozenDictionary;get_Keys;();summary;df-generated | | System.Collections.Frozen;FrozenDictionary;get_Values;();summary;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;get_Set;();summary;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;Dispose;();summary;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;MoveNext;();summary;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;Reset;();summary;df-generated | @@ -25249,6 +26514,15 @@ neutral | System.Collections.Generic;Comparer;Compare;(T,T);summary;df-generated | | System.Collections.Generic;Comparer;Create;(System.Comparison);summary;df-generated | | System.Collections.Generic;Comparer;get_Default;();summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;ContainsKey;(TAlternateKey);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;Remove;(TAlternateKey);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;Remove;(TAlternateKey,TKey,TValue);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;TryAdd;(TAlternateKey,TValue);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;TryGetValue;(TAlternateKey,TKey,TValue);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;TryGetValue;(TAlternateKey,TValue);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;get_Dictionary;();summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;get_Item;(TAlternateKey);summary;df-generated | +| System.Collections.Generic;Dictionary+AlternateLookup;set_Item;(TAlternateKey,TValue);summary;df-generated | | System.Collections.Generic;Dictionary+Enumerator;Dispose;();summary;df-generated | | System.Collections.Generic;Dictionary+Enumerator;MoveNext;();summary;df-generated | | System.Collections.Generic;Dictionary+Enumerator;Reset;();summary;df-generated | @@ -25279,6 +26553,7 @@ neutral | System.Collections.Generic;Dictionary;Dictionary;(System.Int32);summary;df-generated | | System.Collections.Generic;Dictionary;Dictionary;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Collections.Generic;Dictionary;EnsureCapacity;(System.Int32);summary;df-generated | +| System.Collections.Generic;Dictionary;GetAlternateLookup;();summary;df-generated | | System.Collections.Generic;Dictionary;OnDeserialization;(System.Object);summary;df-generated | | System.Collections.Generic;Dictionary;Remove;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Generic;Dictionary;Remove;(System.Object);summary;df-generated | @@ -25287,6 +26562,7 @@ neutral | System.Collections.Generic;Dictionary;TrimExcess;();summary;df-generated | | System.Collections.Generic;Dictionary;TrimExcess;(System.Int32);summary;df-generated | | System.Collections.Generic;Dictionary;TryAdd;(TKey,TValue);summary;df-generated | +| System.Collections.Generic;Dictionary;TryGetAlternateLookup;(System.Collections.Generic.Dictionary+AlternateLookup);summary;df-generated | | System.Collections.Generic;Dictionary;TryGetValue;(TKey,TValue);summary;df-generated | | System.Collections.Generic;Dictionary;get_Capacity;();summary;df-generated | | System.Collections.Generic;Dictionary;get_Count;();summary;df-generated | @@ -25297,9 +26573,15 @@ neutral | System.Collections.Generic;Dictionary;get_Keys;();summary;df-generated | | System.Collections.Generic;Dictionary;get_Values;();summary;df-generated | | System.Collections.Generic;EqualityComparer;Create;(System.Func,System.Func);summary;df-generated | +| System.Collections.Generic;EqualityComparer;Equals;(System.Object,System.Object);summary;df-generated | | System.Collections.Generic;EqualityComparer;Equals;(T,T);summary;df-generated | | System.Collections.Generic;EqualityComparer;GetHashCode;(T);summary;df-generated | | System.Collections.Generic;EqualityComparer;get_Default;();summary;df-generated | +| System.Collections.Generic;HashSet+AlternateLookup;Add;(TAlternate);summary;df-generated | +| System.Collections.Generic;HashSet+AlternateLookup;Contains;(TAlternate);summary;df-generated | +| System.Collections.Generic;HashSet+AlternateLookup;Remove;(TAlternate);summary;df-generated | +| System.Collections.Generic;HashSet+AlternateLookup;TryGetValue;(TAlternate,T);summary;df-generated | +| System.Collections.Generic;HashSet+AlternateLookup;get_Set;();summary;df-generated | | System.Collections.Generic;HashSet+Enumerator;Dispose;();summary;df-generated | | System.Collections.Generic;HashSet+Enumerator;MoveNext;();summary;df-generated | | System.Collections.Generic;HashSet+Enumerator;Reset;();summary;df-generated | @@ -25310,6 +26592,7 @@ neutral | System.Collections.Generic;HashSet;CreateSetComparer;();summary;df-generated | | System.Collections.Generic;HashSet;EnsureCapacity;(System.Int32);summary;df-generated | | System.Collections.Generic;HashSet;ExceptWith;(System.Collections.Generic.IEnumerable);summary;df-generated | +| System.Collections.Generic;HashSet;GetAlternateLookup;();summary;df-generated | | System.Collections.Generic;HashSet;HashSet;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Collections.Generic;HashSet;HashSet;(System.Int32);summary;df-generated | | System.Collections.Generic;HashSet;HashSet;(System.Int32,System.Collections.Generic.IEqualityComparer);summary;df-generated | @@ -25327,10 +26610,14 @@ neutral | System.Collections.Generic;HashSet;SymmetricExceptWith;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Collections.Generic;HashSet;TrimExcess;();summary;df-generated | | System.Collections.Generic;HashSet;TrimExcess;(System.Int32);summary;df-generated | +| System.Collections.Generic;HashSet;TryGetAlternateLookup;(System.Collections.Generic.HashSet+AlternateLookup);summary;df-generated | | System.Collections.Generic;HashSet;UnionWith;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Collections.Generic;HashSet;get_Capacity;();summary;df-generated | | System.Collections.Generic;HashSet;get_Count;();summary;df-generated | | System.Collections.Generic;HashSet;get_IsReadOnly;();summary;df-generated | +| System.Collections.Generic;IAlternateEqualityComparer;Create;(TAlternate);summary;df-generated | +| System.Collections.Generic;IAlternateEqualityComparer;Equals;(TAlternate,T);summary;df-generated | +| System.Collections.Generic;IAlternateEqualityComparer;GetHashCode;(TAlternate);summary;df-generated | | System.Collections.Generic;IAsyncEnumerable;GetAsyncEnumerator;(System.Threading.CancellationToken);summary;df-generated | | System.Collections.Generic;IAsyncEnumerator;MoveNextAsync;();summary;df-generated | | System.Collections.Generic;IAsyncEnumerator;get_Current;();summary;df-generated | @@ -25474,13 +26761,28 @@ neutral | System.Collections.Generic;OrderedDictionary;Contains;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Generic;OrderedDictionary;Contains;(System.Object);summary;df-generated | | System.Collections.Generic;OrderedDictionary;ContainsKey;(TKey);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;ContainsValue;(TValue);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;EnsureCapacity;(System.Int32);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;GetAt;(System.Int32);summary;df-generated | | System.Collections.Generic;OrderedDictionary;IndexOf;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Generic;OrderedDictionary;IndexOf;(System.Object);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;IndexOf;(TKey);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;Insert;(System.Int32,TKey,TValue);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IDictionary);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEqualityComparer);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Int32);summary;df-generated | | System.Collections.Generic;OrderedDictionary;Remove;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Generic;OrderedDictionary;Remove;(System.Object);summary;df-generated | | System.Collections.Generic;OrderedDictionary;Remove;(TKey);summary;df-generated | | System.Collections.Generic;OrderedDictionary;RemoveAt;(System.Int32);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;SetAt;(System.Int32,TKey,TValue);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;SetAt;(System.Int32,TValue);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;TrimExcess;();summary;df-generated | +| System.Collections.Generic;OrderedDictionary;TrimExcess;(System.Int32);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;TryAdd;(TKey,TValue);summary;df-generated | | System.Collections.Generic;OrderedDictionary;TryGetValue;(TKey,TValue);summary;df-generated | +| System.Collections.Generic;OrderedDictionary;get_Capacity;();summary;df-generated | | System.Collections.Generic;OrderedDictionary;get_Count;();summary;df-generated | | System.Collections.Generic;OrderedDictionary;get_IsFixedSize;();summary;df-generated | | System.Collections.Generic;OrderedDictionary;get_IsReadOnly;();summary;df-generated | @@ -25749,11 +27051,6 @@ neutral | System.Collections.Immutable;ImmutableDictionary;CreateBuilder;();summary;df-generated | | System.Collections.Immutable;ImmutableDictionary;GetValueOrDefault;(System.Collections.Immutable.IImmutableDictionary,TKey);summary;df-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Immutable.ImmutableDictionary+Builder);summary;df-generated | -| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);summary;df-generated | -| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);summary;df-generated | -| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);summary;df-generated | -| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);summary;df-generated | -| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);summary;df-generated | | System.Collections.Immutable;ImmutableDictionary+Builder;Contains;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Immutable;ImmutableDictionary+Builder;Contains;(System.Object);summary;df-generated | | System.Collections.Immutable;ImmutableDictionary+Builder;ContainsKey;(TKey);summary;df-generated | @@ -25944,9 +27241,6 @@ neutral | System.Collections.Immutable;ImmutableSortedDictionary;Create;();summary;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;CreateBuilder;();summary;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Immutable.ImmutableSortedDictionary+Builder);summary;df-generated | -| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);summary;df-generated | -| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);summary;df-generated | -| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);summary;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Contains;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Contains;(System.Object);summary;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;ContainsKey;(TKey);summary;df-generated | @@ -26154,6 +27448,7 @@ neutral | System.Collections.ObjectModel;ReadOnlySet;SymmetricExceptWith;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Collections.ObjectModel;ReadOnlySet;UnionWith;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Collections.ObjectModel;ReadOnlySet;get_Count;();summary;df-generated | +| System.Collections.ObjectModel;ReadOnlySet;get_Empty;();summary;df-generated | | System.Collections.ObjectModel;ReadOnlySet;get_IsReadOnly;();summary;df-generated | | System.Collections.ObjectModel;ReadOnlySet;get_IsSynchronized;();summary;df-generated | | System.Collections.Specialized;BitVector32+Section;Equals;(System.Collections.Specialized.BitVector32+Section);summary;df-generated | @@ -26375,6 +27670,7 @@ neutral | System.Collections;IDictionary;get_IsReadOnly;();summary;df-generated | | System.Collections;IEnumerator;MoveNext;();summary;df-generated | | System.Collections;IEnumerator;Reset;();summary;df-generated | +| System.Collections;IEqualityComparer;Equals;(System.Object,System.Object);summary;df-generated | | System.Collections;IHashCodeProvider;GetHashCode;(System.Object);summary;df-generated | | System.Collections;IList;Contains;(System.Object);summary;df-generated | | System.Collections;IList;IndexOf;(System.Object);summary;df-generated | @@ -26416,48 +27712,37 @@ neutral | System.Collections;Stack;get_IsSynchronized;();summary;df-generated | | System.Collections;StructuralComparisons;get_StructuralComparer;();summary;df-generated | | System.Collections;StructuralComparisons;get_StructuralEqualityComparer;();summary;df-generated | -| System.ComponentModel.DataAnnotations.Schema;ColumnAttribute;ColumnAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;ColumnAttribute;get_Name;();summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;DatabaseGeneratedAttribute;DatabaseGeneratedAttribute;(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;DatabaseGeneratedAttribute;get_DatabaseGeneratedOption;();summary;df-generated | -| System.ComponentModel.DataAnnotations.Schema;ForeignKeyAttribute;ForeignKeyAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;ForeignKeyAttribute;get_Name;();summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;IndexAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;IndexAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel.DataAnnotations.Schema;InversePropertyAttribute;InversePropertyAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;InversePropertyAttribute;get_Property;();summary;df-generated | -| System.ComponentModel.DataAnnotations.Schema;TableAttribute;TableAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations.Schema;TableAttribute;get_Name;();summary;df-generated | -| System.ComponentModel.DataAnnotations;AllowedValuesAttribute;AllowedValuesAttribute;(System.Object[]);summary;df-generated | | System.ComponentModel.DataAnnotations;AllowedValuesAttribute;IsValid;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;AllowedValuesAttribute;get_Values;();summary;df-generated | | System.ComponentModel.DataAnnotations;AssociatedMetadataTypeTypeDescriptionProvider;AssociatedMetadataTypeTypeDescriptionProvider;(System.Type);summary;df-generated | | System.ComponentModel.DataAnnotations;AssociatedMetadataTypeTypeDescriptionProvider;AssociatedMetadataTypeTypeDescriptionProvider;(System.Type,System.Type);summary;df-generated | -| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_Name;();summary;df-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_OtherKey;();summary;df-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_ThisKey;();summary;df-generated | | System.ComponentModel.DataAnnotations;Base64StringAttribute;IsValid;(System.Object);summary;df-generated | -| System.ComponentModel.DataAnnotations;CompareAttribute;CompareAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;CompareAttribute;IsValid;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext);summary;df-generated | | System.ComponentModel.DataAnnotations;CompareAttribute;get_OtherProperty;();summary;df-generated | | System.ComponentModel.DataAnnotations;CompareAttribute;get_RequiresValidationContext;();summary;df-generated | | System.ComponentModel.DataAnnotations;CreditCardAttribute;IsValid;(System.Object);summary;df-generated | -| System.ComponentModel.DataAnnotations;CustomValidationAttribute;CustomValidationAttribute;(System.Type,System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;CustomValidationAttribute;IsValid;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext);summary;df-generated | | System.ComponentModel.DataAnnotations;CustomValidationAttribute;get_Method;();summary;df-generated | | System.ComponentModel.DataAnnotations;CustomValidationAttribute;get_ValidatorType;();summary;df-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;DataTypeAttribute;(System.ComponentModel.DataAnnotations.DataType);summary;df-generated | -| System.ComponentModel.DataAnnotations;DataTypeAttribute;DataTypeAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;IsValid;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;get_CustomDataType;();summary;df-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;get_DataType;();summary;df-generated | -| System.ComponentModel.DataAnnotations;DeniedValuesAttribute;DeniedValuesAttribute;(System.Object[]);summary;df-generated | | System.ComponentModel.DataAnnotations;DeniedValuesAttribute;IsValid;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;DeniedValuesAttribute;get_Values;();summary;df-generated | | System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String);summary;df-generated | -| System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String,System.Boolean);summary;df-generated | | System.ComponentModel.DataAnnotations;DisplayColumnAttribute;get_DisplayColumn;();summary;df-generated | | System.ComponentModel.DataAnnotations;DisplayColumnAttribute;get_SortColumn;();summary;df-generated | | System.ComponentModel.DataAnnotations;DisplayColumnAttribute;get_SortDescending;();summary;df-generated | @@ -26489,10 +27774,8 @@ neutral | System.ComponentModel.DataAnnotations;RangeAttribute;IsValid;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Double,System.Double);summary;df-generated | | System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Int32,System.Int32);summary;df-generated | -| System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Type,System.String,System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;RangeAttribute;get_OperandType;();summary;df-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;IsValid;(System.Object);summary;df-generated | -| System.ComponentModel.DataAnnotations;RegularExpressionAttribute;RegularExpressionAttribute;(System.String);summary;df-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;get_MatchTimeout;();summary;df-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;get_Pattern;();summary;df-generated | | System.ComponentModel.DataAnnotations;RequiredAttribute;IsValid;(System.Object);summary;df-generated | @@ -26515,19 +27798,15 @@ neutral | System.ComponentModel.DataAnnotations;ValidationAttribute;get_RequiresValidationContext;();summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationContext;ValidationContext;(System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationContext;ValidationContext;(System.Object,System.Collections.Generic.IDictionary);summary;df-generated | -| System.ComponentModel.DataAnnotations;ValidationContext;ValidationContext;(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationContext;get_ObjectInstance;();summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationContext;get_ObjectType;();summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String);summary;df-generated | -| System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.Exception);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;get_ValidationAttribute;();summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;get_ValidationResult;();summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;get_Value;();summary;df-generated | -| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.ComponentModel.DataAnnotations.ValidationResult);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String);summary;df-generated | -| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String,System.Collections.Generic.IEnumerable);summary;df-generated | | System.ComponentModel.DataAnnotations;ValidationResult;get_MemberNames;();summary;df-generated | | System.ComponentModel.DataAnnotations;Validator;TryValidateObject;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection);summary;df-generated | | System.ComponentModel.DataAnnotations;Validator;TryValidateObject;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection,System.Boolean);summary;df-generated | @@ -26548,15 +27827,12 @@ neutral | System.ComponentModel.Design.Serialization;ComponentSerializationService;SerializeAbsolute;(System.ComponentModel.Design.Serialization.SerializationStore,System.Object);summary;df-generated | | System.ComponentModel.Design.Serialization;ComponentSerializationService;SerializeMember;(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor);summary;df-generated | | System.ComponentModel.Design.Serialization;ComponentSerializationService;SerializeMemberAbsolute;(System.ComponentModel.Design.Serialization.SerializationStore,System.Object,System.ComponentModel.MemberDescriptor);summary;df-generated | -| System.ComponentModel.Design.Serialization;DefaultSerializationProviderAttribute;DefaultSerializationProviderAttribute;(System.String);summary;df-generated | | System.ComponentModel.Design.Serialization;DefaultSerializationProviderAttribute;DefaultSerializationProviderAttribute;(System.Type);summary;df-generated | | System.ComponentModel.Design.Serialization;DefaultSerializationProviderAttribute;get_ProviderTypeName;();summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerLoader;BeginLoad;(System.ComponentModel.Design.Serialization.IDesignerLoaderHost);summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerLoader;Dispose;();summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerLoader;Flush;();summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerLoader;get_Loading;();summary;df-generated | -| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.String);summary;df-generated | -| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.Type);summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.Type,System.Type);summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_SerializerBaseTypeName;();summary;df-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_SerializerTypeName;();summary;df-generated | @@ -26587,7 +27863,6 @@ neutral | System.ComponentModel.Design.Serialization;INameCreationService;IsValidName;(System.String);summary;df-generated | | System.ComponentModel.Design.Serialization;INameCreationService;ValidateName;(System.String);summary;df-generated | | System.ComponentModel.Design.Serialization;InstanceDescriptor;InstanceDescriptor;(System.Reflection.MemberInfo,System.Collections.ICollection);summary;df-generated | -| System.ComponentModel.Design.Serialization;InstanceDescriptor;InstanceDescriptor;(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean);summary;df-generated | | System.ComponentModel.Design.Serialization;InstanceDescriptor;Invoke;();summary;df-generated | | System.ComponentModel.Design.Serialization;InstanceDescriptor;get_Arguments;();summary;df-generated | | System.ComponentModel.Design.Serialization;InstanceDescriptor;get_IsComplete;();summary;df-generated | @@ -26595,7 +27870,6 @@ neutral | System.ComponentModel.Design.Serialization;MemberRelationship;Equals;(System.ComponentModel.Design.Serialization.MemberRelationship);summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationship;Equals;(System.Object);summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationship;GetHashCode;();summary;df-generated | -| System.ComponentModel.Design.Serialization;MemberRelationship;MemberRelationship;(System.Object,System.ComponentModel.MemberDescriptor);summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationship;get_IsEmpty;();summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationship;get_Member;();summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationship;get_Owner;();summary;df-generated | @@ -26608,10 +27882,7 @@ neutral | System.ComponentModel.Design.Serialization;MemberRelationshipService;get_Item;(System.Object,System.ComponentModel.MemberDescriptor);summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationshipService;set_Item;(System.ComponentModel.Design.Serialization.MemberRelationship,System.ComponentModel.Design.Serialization.MemberRelationship);summary;df-generated | | System.ComponentModel.Design.Serialization;MemberRelationshipService;set_Item;(System.Object,System.ComponentModel.MemberDescriptor,System.ComponentModel.Design.Serialization.MemberRelationship);summary;df-generated | -| System.ComponentModel.Design.Serialization;ResolveNameEventArgs;ResolveNameEventArgs;(System.String);summary;df-generated | | System.ComponentModel.Design.Serialization;ResolveNameEventArgs;get_Name;();summary;df-generated | -| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.String,System.Boolean);summary;df-generated | -| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.Type,System.Boolean);summary;df-generated | | System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.Type,System.Type,System.Boolean);summary;df-generated | | System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;get_Reloadable;();summary;df-generated | | System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;get_SerializerBaseTypeName;();summary;df-generated | @@ -26621,7 +27892,6 @@ neutral | System.ComponentModel.Design.Serialization;SerializationStore;Dispose;(System.Boolean);summary;df-generated | | System.ComponentModel.Design.Serialization;SerializationStore;Save;(System.IO.Stream);summary;df-generated | | System.ComponentModel.Design.Serialization;SerializationStore;get_Errors;();summary;df-generated | -| System.ComponentModel.Design;ActiveDesignerEventArgs;ActiveDesignerEventArgs;(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost);summary;df-generated | | System.ComponentModel.Design;ActiveDesignerEventArgs;get_NewDesigner;();summary;df-generated | | System.ComponentModel.Design;ActiveDesignerEventArgs;get_OldDesigner;();summary;df-generated | | System.ComponentModel.Design;CheckoutException;CheckoutException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | @@ -26633,24 +27903,20 @@ neutral | System.ComponentModel.Design;CommandID;GetHashCode;();summary;df-generated | | System.ComponentModel.Design;CommandID;get_Guid;();summary;df-generated | | System.ComponentModel.Design;CommandID;get_ID;();summary;df-generated | -| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);summary;df-generated | | System.ComponentModel.Design;ComponentChangedEventArgs;get_Component;();summary;df-generated | | System.ComponentModel.Design;ComponentChangedEventArgs;get_Member;();summary;df-generated | | System.ComponentModel.Design;ComponentChangedEventArgs;get_NewValue;();summary;df-generated | | System.ComponentModel.Design;ComponentChangedEventArgs;get_OldValue;();summary;df-generated | -| System.ComponentModel.Design;ComponentChangingEventArgs;ComponentChangingEventArgs;(System.Object,System.ComponentModel.MemberDescriptor);summary;df-generated | | System.ComponentModel.Design;ComponentChangingEventArgs;get_Component;();summary;df-generated | | System.ComponentModel.Design;ComponentChangingEventArgs;get_Member;();summary;df-generated | | System.ComponentModel.Design;ComponentEventArgs;ComponentEventArgs;(System.ComponentModel.IComponent);summary;df-generated | | System.ComponentModel.Design;ComponentEventArgs;get_Component;();summary;df-generated | -| System.ComponentModel.Design;ComponentRenameEventArgs;ComponentRenameEventArgs;(System.Object,System.String,System.String);summary;df-generated | | System.ComponentModel.Design;ComponentRenameEventArgs;get_Component;();summary;df-generated | | System.ComponentModel.Design;ComponentRenameEventArgs;get_NewName;();summary;df-generated | | System.ComponentModel.Design;ComponentRenameEventArgs;get_OldName;();summary;df-generated | | System.ComponentModel.Design;DesignerCollection;DesignerCollection;(System.ComponentModel.Design.IDesignerHost[]);summary;df-generated | | System.ComponentModel.Design;DesignerCollection;get_Count;();summary;df-generated | | System.ComponentModel.Design;DesignerCollection;get_IsSynchronized;();summary;df-generated | -| System.ComponentModel.Design;DesignerEventArgs;DesignerEventArgs;(System.ComponentModel.Design.IDesignerHost);summary;df-generated | | System.ComponentModel.Design;DesignerEventArgs;get_Designer;();summary;df-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;Contains;(System.Object);summary;df-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;IndexOf;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection);summary;df-generated | @@ -26671,7 +27937,6 @@ neutral | System.ComponentModel.Design;DesignerOptionService;get_Options;();summary;df-generated | | System.ComponentModel.Design;DesignerTransaction;Cancel;();summary;df-generated | | System.ComponentModel.Design;DesignerTransaction;Commit;();summary;df-generated | -| System.ComponentModel.Design;DesignerTransaction;DesignerTransaction;(System.String);summary;df-generated | | System.ComponentModel.Design;DesignerTransaction;Dispose;();summary;df-generated | | System.ComponentModel.Design;DesignerTransaction;Dispose;(System.Boolean);summary;df-generated | | System.ComponentModel.Design;DesignerTransaction;OnCancel;();summary;df-generated | @@ -26691,7 +27956,6 @@ neutral | System.ComponentModel.Design;DesigntimeLicenseContextSerializer;Serialize;(System.IO.Stream,System.String,System.ComponentModel.Design.DesigntimeLicenseContext);summary;df-generated | | System.ComponentModel.Design;HelpKeywordAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel.Design;HelpKeywordAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel.Design;HelpKeywordAttribute;HelpKeywordAttribute;(System.String);summary;df-generated | | System.ComponentModel.Design;HelpKeywordAttribute;HelpKeywordAttribute;(System.Type);summary;df-generated | | System.ComponentModel.Design;HelpKeywordAttribute;IsDefaultAttribute;();summary;df-generated | | System.ComponentModel.Design;HelpKeywordAttribute;get_HelpKeyword;();summary;df-generated | @@ -26854,7 +28118,6 @@ neutral | System.ComponentModel.Design;ServiceContainer;get_DefaultServices;();summary;df-generated | | System.ComponentModel.Design;TypeDescriptionProviderService;GetProvider;(System.Object);summary;df-generated | | System.ComponentModel.Design;TypeDescriptionProviderService;GetProvider;(System.Type);summary;df-generated | -| System.ComponentModel;AddingNewEventArgs;AddingNewEventArgs;(System.Object);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Boolean);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Byte);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Char);summary;df-generated | @@ -26862,15 +28125,10 @@ neutral | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Int16);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Int32);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Int64);summary;df-generated | -| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Object);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Single);summary;df-generated | -| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.String);summary;df-generated | -| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Type,System.String);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;AmbientValueAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel;AmbientValueAttribute;get_Value;();summary;df-generated | | System.ComponentModel;ArrayConverter;GetPropertiesSupported;(System.ComponentModel.ITypeDescriptorContext);summary;df-generated | -| System.ComponentModel;AsyncCompletedEventArgs;AsyncCompletedEventArgs;(System.Exception,System.Boolean,System.Object);summary;df-generated | | System.ComponentModel;AsyncCompletedEventArgs;RaiseExceptionIfNecessary;();summary;df-generated | | System.ComponentModel;AsyncCompletedEventArgs;get_Cancelled;();summary;df-generated | | System.ComponentModel;AsyncCompletedEventArgs;get_Error;();summary;df-generated | @@ -26879,7 +28137,6 @@ neutral | System.ComponentModel;AsyncOperation;Post;(System.Threading.SendOrPostCallback,System.Object);summary;df-generated | | System.ComponentModel;AsyncOperation;PostOperationCompleted;(System.Threading.SendOrPostCallback,System.Object);summary;df-generated | | System.ComponentModel;AsyncOperation;get_UserSuppliedState;();summary;df-generated | -| System.ComponentModel;AsyncOperationManager;CreateOperation;(System.Object);summary;df-generated | | System.ComponentModel;AttributeCollection;Contains;(System.Attribute);summary;df-generated | | System.ComponentModel;AttributeCollection;Contains;(System.Attribute[]);summary;df-generated | | System.ComponentModel;AttributeCollection;FromExisting;(System.ComponentModel.AttributeCollection,System.Attribute[]);summary;df-generated | @@ -26888,8 +28145,6 @@ neutral | System.ComponentModel;AttributeCollection;Matches;(System.Attribute[]);summary;df-generated | | System.ComponentModel;AttributeCollection;get_Count;();summary;df-generated | | System.ComponentModel;AttributeCollection;get_IsSynchronized;();summary;df-generated | -| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String);summary;df-generated | -| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String,System.String);summary;df-generated | | System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.Type);summary;df-generated | | System.ComponentModel;AttributeProviderAttribute;get_PropertyName;();summary;df-generated | | System.ComponentModel;AttributeProviderAttribute;get_TypeName;();summary;df-generated | @@ -26989,8 +28244,6 @@ neutral | System.ComponentModel;CollectionChangeEventArgs;CollectionChangeEventArgs;(System.ComponentModel.CollectionChangeAction,System.Object);summary;df-generated | | System.ComponentModel;CollectionChangeEventArgs;get_Action;();summary;df-generated | | System.ComponentModel;CollectionChangeEventArgs;get_Element;();summary;df-generated | -| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String);summary;df-generated | -| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String,System.String);summary;df-generated | | System.ComponentModel;ComplexBindingPropertiesAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;ComplexBindingPropertiesAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;ComplexBindingPropertiesAttribute;get_DataMember;();summary;df-generated | @@ -27009,6 +28262,7 @@ neutral | System.ComponentModel;ComponentEditor;EditComponent;(System.Object);summary;df-generated | | System.ComponentModel;ComponentResourceManager;ApplyResources;(System.Object,System.String);summary;df-generated | | System.ComponentModel;ComponentResourceManager;ApplyResources;(System.Object,System.String,System.Globalization.CultureInfo);summary;df-generated | +| System.ComponentModel;ComponentResourceManager;ApplyResourcesToRegisteredType;(System.Object,System.String,System.Globalization.CultureInfo);summary;df-generated | | System.ComponentModel;ComponentResourceManager;ComponentResourceManager;(System.Type);summary;df-generated | | System.ComponentModel;Container;Dispose;();summary;df-generated | | System.ComponentModel;Container;Dispose;(System.Boolean);summary;df-generated | @@ -27023,11 +28277,14 @@ neutral | System.ComponentModel;CustomTypeDescriptor;GetClassName;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetComponentName;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetConverter;();summary;df-generated | +| System.ComponentModel;CustomTypeDescriptor;GetConverterFromRegisteredType;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetDefaultEvent;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetDefaultProperty;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetEditor;(System.Type);summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetEvents;();summary;df-generated | | System.ComponentModel;CustomTypeDescriptor;GetEvents;(System.Attribute[]);summary;df-generated | +| System.ComponentModel;CustomTypeDescriptor;GetEventsFromRegisteredType;();summary;df-generated | +| System.ComponentModel;CustomTypeDescriptor;get_RequireRegisteredTypes;();summary;df-generated | | System.ComponentModel;DataErrorsChangedEventArgs;DataErrorsChangedEventArgs;(System.String);summary;df-generated | | System.ComponentModel;DataErrorsChangedEventArgs;get_PropertyName;();summary;df-generated | | System.ComponentModel;DataObjectAttribute;DataObjectAttribute;(System.Boolean);summary;df-generated | @@ -27059,15 +28316,12 @@ neutral | System.ComponentModel;DateTimeOffsetConverter;CanConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Type);summary;df-generated | | System.ComponentModel;DateTimeOffsetConverter;CanConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Type);summary;df-generated | | System.ComponentModel;DecimalConverter;CanConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Type);summary;df-generated | -| System.ComponentModel;DefaultBindingPropertyAttribute;DefaultBindingPropertyAttribute;(System.String);summary;df-generated | | System.ComponentModel;DefaultBindingPropertyAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DefaultBindingPropertyAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DefaultBindingPropertyAttribute;get_Name;();summary;df-generated | -| System.ComponentModel;DefaultEventAttribute;DefaultEventAttribute;(System.String);summary;df-generated | | System.ComponentModel;DefaultEventAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DefaultEventAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DefaultEventAttribute;get_Name;();summary;df-generated | -| System.ComponentModel;DefaultPropertyAttribute;DefaultPropertyAttribute;(System.String);summary;df-generated | | System.ComponentModel;DefaultPropertyAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DefaultPropertyAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DefaultPropertyAttribute;get_Name;();summary;df-generated | @@ -27098,16 +28352,12 @@ neutral | System.ComponentModel;DesignTimeVisibleAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DesignTimeVisibleAttribute;IsDefaultAttribute;();summary;df-generated | | System.ComponentModel;DesignTimeVisibleAttribute;get_Visible;();summary;df-generated | -| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String);summary;df-generated | -| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.String);summary;df-generated | -| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.Type);summary;df-generated | | System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.Type);summary;df-generated | | System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.Type,System.Type);summary;df-generated | | System.ComponentModel;DesignerAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DesignerAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DesignerAttribute;get_DesignerBaseTypeName;();summary;df-generated | | System.ComponentModel;DesignerAttribute;get_DesignerTypeName;();summary;df-generated | -| System.ComponentModel;DesignerCategoryAttribute;DesignerCategoryAttribute;(System.String);summary;df-generated | | System.ComponentModel;DesignerCategoryAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DesignerCategoryAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DesignerCategoryAttribute;IsDefaultAttribute;();summary;df-generated | @@ -27117,14 +28367,10 @@ neutral | System.ComponentModel;DesignerSerializationVisibilityAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DesignerSerializationVisibilityAttribute;IsDefaultAttribute;();summary;df-generated | | System.ComponentModel;DesignerSerializationVisibilityAttribute;get_Visibility;();summary;df-generated | -| System.ComponentModel;DisplayNameAttribute;DisplayNameAttribute;(System.String);summary;df-generated | | System.ComponentModel;DisplayNameAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;DisplayNameAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;DisplayNameAttribute;IsDefaultAttribute;();summary;df-generated | -| System.ComponentModel;DoWorkEventArgs;DoWorkEventArgs;(System.Object);summary;df-generated | | System.ComponentModel;DoWorkEventArgs;get_Argument;();summary;df-generated | -| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.String);summary;df-generated | -| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.Type);summary;df-generated | | System.ComponentModel;EditorAttribute;EditorAttribute;(System.Type,System.Type);summary;df-generated | | System.ComponentModel;EditorAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;EditorAttribute;GetHashCode;();summary;df-generated | @@ -27215,11 +28461,14 @@ neutral | System.ComponentModel;ICustomTypeDescriptor;GetClassName;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetComponentName;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetConverter;();summary;df-generated | +| System.ComponentModel;ICustomTypeDescriptor;GetConverterFromRegisteredType;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetDefaultEvent;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetDefaultProperty;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetEditor;(System.Type);summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetEvents;();summary;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetEvents;(System.Attribute[]);summary;df-generated | +| System.ComponentModel;ICustomTypeDescriptor;GetEventsFromRegisteredType;();summary;df-generated | +| System.ComponentModel;ICustomTypeDescriptor;get_RequireRegisteredTypes;();summary;df-generated | | System.ComponentModel;IDataErrorInfo;get_Error;();summary;df-generated | | System.ComponentModel;IDataErrorInfo;get_Item;(System.String);summary;df-generated | | System.ComponentModel;IEditableObject;BeginEdit;();summary;df-generated | @@ -27268,7 +28517,6 @@ neutral | System.ComponentModel;InheritanceAttribute;IsDefaultAttribute;();summary;df-generated | | System.ComponentModel;InheritanceAttribute;ToString;();summary;df-generated | | System.ComponentModel;InheritanceAttribute;get_InheritanceLevel;();summary;df-generated | -| System.ComponentModel;InitializationEventAttribute;InitializationEventAttribute;(System.String);summary;df-generated | | System.ComponentModel;InitializationEventAttribute;get_EventName;();summary;df-generated | | System.ComponentModel;InstallerTypeAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;InstallerTypeAttribute;GetHashCode;();summary;df-generated | @@ -27312,15 +28560,12 @@ neutral | System.ComponentModel;ListBindableAttribute;ListBindableAttribute;(System.Boolean);summary;df-generated | | System.ComponentModel;ListBindableAttribute;ListBindableAttribute;(System.ComponentModel.BindableSupport);summary;df-generated | | System.ComponentModel;ListBindableAttribute;get_ListBindable;();summary;df-generated | -| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor);summary;df-generated | | System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.Int32);summary;df-generated | -| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor);summary;df-generated | | System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.Int32,System.Int32);summary;df-generated | | System.ComponentModel;ListChangedEventArgs;get_ListChangedType;();summary;df-generated | | System.ComponentModel;ListChangedEventArgs;get_NewIndex;();summary;df-generated | | System.ComponentModel;ListChangedEventArgs;get_OldIndex;();summary;df-generated | | System.ComponentModel;ListChangedEventArgs;get_PropertyDescriptor;();summary;df-generated | -| System.ComponentModel;ListSortDescription;ListSortDescription;(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection);summary;df-generated | | System.ComponentModel;ListSortDescriptionCollection;Contains;(System.Object);summary;df-generated | | System.ComponentModel;ListSortDescriptionCollection;IndexOf;(System.Object);summary;df-generated | | System.ComponentModel;ListSortDescriptionCollection;Remove;(System.Object);summary;df-generated | @@ -27336,7 +28581,6 @@ neutral | System.ComponentModel;LocalizableAttribute;get_IsLocalizable;();summary;df-generated | | System.ComponentModel;LookupBindingPropertiesAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;LookupBindingPropertiesAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);summary;df-generated | | System.ComponentModel;LookupBindingPropertiesAttribute;get_DataSource;();summary;df-generated | | System.ComponentModel;LookupBindingPropertiesAttribute;get_DisplayMember;();summary;df-generated | | System.ComponentModel;LookupBindingPropertiesAttribute;get_LookupMember;();summary;df-generated | @@ -27376,7 +28620,6 @@ neutral | System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Char,System.Boolean);summary;df-generated | | System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo);summary;df-generated | | System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean);summary;df-generated | -| System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean);summary;df-generated | | System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Char,System.Boolean);summary;df-generated | | System.ComponentModel;MaskedTextProvider;Remove;();summary;df-generated | | System.ComponentModel;MaskedTextProvider;Remove;(System.Int32,System.ComponentModel.MaskedTextResultHint);summary;df-generated | @@ -27427,7 +28670,6 @@ neutral | System.ComponentModel;MergablePropertyAttribute;get_AllowMerge;();summary;df-generated | | System.ComponentModel;MultilineStringConverter;GetPropertiesSupported;(System.ComponentModel.ITypeDescriptorContext);summary;df-generated | | System.ComponentModel;NestedContainer;Dispose;(System.Boolean);summary;df-generated | -| System.ComponentModel;NestedContainer;NestedContainer;(System.ComponentModel.IComponent);summary;df-generated | | System.ComponentModel;NestedContainer;get_Owner;();summary;df-generated | | System.ComponentModel;NestedContainer;get_OwnerName;();summary;df-generated | | System.ComponentModel;NotifyParentPropertyAttribute;Equals;(System.Object);summary;df-generated | @@ -27506,8 +28748,6 @@ neutral | System.ComponentModel;PropertyTabAttribute;PropertyTabAttribute;(System.Type,System.ComponentModel.PropertyTabScope);summary;df-generated | | System.ComponentModel;ProvidePropertyAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;ProvidePropertyAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.String);summary;df-generated | -| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.Type);summary;df-generated | | System.ComponentModel;ProvidePropertyAttribute;get_PropertyName;();summary;df-generated | | System.ComponentModel;ProvidePropertyAttribute;get_ReceiverTypeName;();summary;df-generated | | System.ComponentModel;ReadOnlyAttribute;Equals;(System.Object);summary;df-generated | @@ -27525,7 +28765,6 @@ neutral | System.ComponentModel;ReferenceConverter;GetStandardValuesSupported;(System.ComponentModel.ITypeDescriptorContext);summary;df-generated | | System.ComponentModel;ReferenceConverter;IsValueAllowed;(System.ComponentModel.ITypeDescriptorContext,System.Object);summary;df-generated | | System.ComponentModel;ReferenceConverter;ReferenceConverter;(System.Type);summary;df-generated | -| System.ComponentModel;RefreshEventArgs;RefreshEventArgs;(System.Object);summary;df-generated | | System.ComponentModel;RefreshEventArgs;RefreshEventArgs;(System.Type);summary;df-generated | | System.ComponentModel;RefreshEventArgs;get_ComponentChanged;();summary;df-generated | | System.ComponentModel;RefreshEventArgs;get_TypeChanged;();summary;df-generated | @@ -27561,7 +28800,6 @@ neutral | System.ComponentModel;ToolboxItemFilterAttribute;GetHashCode;();summary;df-generated | | System.ComponentModel;ToolboxItemFilterAttribute;Match;(System.Object);summary;df-generated | | System.ComponentModel;ToolboxItemFilterAttribute;ToolboxItemFilterAttribute;(System.String);summary;df-generated | -| System.ComponentModel;ToolboxItemFilterAttribute;ToolboxItemFilterAttribute;(System.String,System.ComponentModel.ToolboxItemFilterType);summary;df-generated | | System.ComponentModel;ToolboxItemFilterAttribute;get_FilterString;();summary;df-generated | | System.ComponentModel;ToolboxItemFilterAttribute;get_FilterType;();summary;df-generated | | System.ComponentModel;TypeConverter+SimplePropertyDescriptor;CanResetValue;(System.Object);summary;df-generated | @@ -27593,7 +28831,6 @@ neutral | System.ComponentModel;TypeConverter;IsValid;(System.Object);summary;df-generated | | System.ComponentModel;TypeConverterAttribute;Equals;(System.Object);summary;df-generated | | System.ComponentModel;TypeConverterAttribute;GetHashCode;();summary;df-generated | -| System.ComponentModel;TypeConverterAttribute;TypeConverterAttribute;(System.String);summary;df-generated | | System.ComponentModel;TypeConverterAttribute;TypeConverterAttribute;(System.Type);summary;df-generated | | System.ComponentModel;TypeConverterAttribute;get_ConverterTypeName;();summary;df-generated | | System.ComponentModel;TypeDescriptionProvider;CreateInstance;(System.IServiceProvider,System.Type,System.Type[],System.Object[]);summary;df-generated | @@ -27603,8 +28840,12 @@ neutral | System.ComponentModel;TypeDescriptionProvider;GetReflectionType;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetReflectionType;(System.Type,System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetRuntimeType;(System.Type);summary;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptorFromRegisteredType;(System.Object);summary;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptorFromRegisteredType;(System.Type);summary;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptorFromRegisteredType;(System.Type,System.Object);summary;df-generated | +| System.ComponentModel;TypeDescriptionProvider;IsRegisteredType;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptionProvider;IsSupportedType;(System.Type);summary;df-generated | -| System.ComponentModel;TypeDescriptionProviderAttribute;TypeDescriptionProviderAttribute;(System.String);summary;df-generated | +| System.ComponentModel;TypeDescriptionProvider;RegisterType;();summary;df-generated | | System.ComponentModel;TypeDescriptionProviderAttribute;TypeDescriptionProviderAttribute;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptionProviderAttribute;get_TypeName;();summary;df-generated | | System.ComponentModel;TypeDescriptor;AddEditorTable;(System.Type,System.Collections.Hashtable);summary;df-generated | @@ -27628,6 +28869,8 @@ neutral | System.ComponentModel;TypeDescriptor;GetConverter;(System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetConverter;(System.Object,System.Boolean);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetConverter;(System.Type);summary;df-generated | +| System.ComponentModel;TypeDescriptor;GetConverterFromRegisteredType;(System.Object);summary;df-generated | +| System.ComponentModel;TypeDescriptor;GetConverterFromRegisteredType;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetDefaultEvent;(System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetDefaultEvent;(System.Object,System.Boolean);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetDefaultEvent;(System.Type);summary;df-generated | @@ -27643,12 +28886,15 @@ neutral | System.ComponentModel;TypeDescriptor;GetEvents;(System.Object,System.Boolean);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetEvents;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetEvents;(System.Type,System.Attribute[]);summary;df-generated | +| System.ComponentModel;TypeDescriptor;GetEventsFromRegisteredType;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Object,System.Attribute[]);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Object,System.Attribute[],System.Boolean);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Object,System.Boolean);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProperties;(System.Type,System.Attribute[]);summary;df-generated | +| System.ComponentModel;TypeDescriptor;GetPropertiesFromRegisteredType;(System.Object);summary;df-generated | +| System.ComponentModel;TypeDescriptor;GetPropertiesFromRegisteredType;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProvider;(System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetProvider;(System.Type);summary;df-generated | | System.ComponentModel;TypeDescriptor;GetReflectionType;(System.Object);summary;df-generated | @@ -27657,6 +28903,7 @@ neutral | System.ComponentModel;TypeDescriptor;Refresh;(System.Reflection.Assembly);summary;df-generated | | System.ComponentModel;TypeDescriptor;Refresh;(System.Reflection.Module);summary;df-generated | | System.ComponentModel;TypeDescriptor;Refresh;(System.Type);summary;df-generated | +| System.ComponentModel;TypeDescriptor;RegisterType;();summary;df-generated | | System.ComponentModel;TypeDescriptor;RemoveAssociation;(System.Object,System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;RemoveAssociations;(System.Object);summary;df-generated | | System.ComponentModel;TypeDescriptor;RemoveProvider;(System.ComponentModel.TypeDescriptionProvider,System.Object);summary;df-generated | @@ -27679,7 +28926,6 @@ neutral | System.ComponentModel;WarningException;WarningException;(System.String);summary;df-generated | | System.ComponentModel;WarningException;WarningException;(System.String,System.Exception);summary;df-generated | | System.ComponentModel;WarningException;WarningException;(System.String,System.String);summary;df-generated | -| System.ComponentModel;WarningException;WarningException;(System.String,System.String,System.String);summary;df-generated | | System.ComponentModel;WarningException;get_HelpTopic;();summary;df-generated | | System.ComponentModel;WarningException;get_HelpUrl;();summary;df-generated | | System.ComponentModel;Win32Exception;Win32Exception;(System.Int32);summary;df-generated | @@ -27688,7 +28934,6 @@ neutral | System.ComponentModel;Win32Exception;Win32Exception;(System.String);summary;df-generated | | System.ComponentModel;Win32Exception;Win32Exception;(System.String,System.Exception);summary;df-generated | | System.ComponentModel;Win32Exception;get_NativeErrorCode;();summary;df-generated | -| System.Configuration.Internal;DelegatingConfigHost;CreateConfigurationContext;(System.String,System.String);summary;df-generated | | System.Configuration.Internal;DelegatingConfigHost;CreateDeprecatedConfigContext;(System.String);summary;df-generated | | System.Configuration.Internal;DelegatingConfigHost;DecryptSection;(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection);summary;df-generated | | System.Configuration.Internal;DelegatingConfigHost;DeleteStream;(System.String);summary;df-generated | @@ -27744,7 +28989,6 @@ neutral | System.Configuration.Internal;IInternalConfigClientHost;IsExeConfig;(System.String);summary;df-generated | | System.Configuration.Internal;IInternalConfigClientHost;IsLocalUserConfig;(System.String);summary;df-generated | | System.Configuration.Internal;IInternalConfigClientHost;IsRoamingUserConfig;(System.String);summary;df-generated | -| System.Configuration.Internal;IInternalConfigHost;CreateConfigurationContext;(System.String,System.String);summary;df-generated | | System.Configuration.Internal;IInternalConfigHost;CreateDeprecatedConfigContext;(System.String);summary;df-generated | | System.Configuration.Internal;IInternalConfigHost;DecryptSection;(System.String,System.Configuration.ProtectedConfigurationProvider,System.Configuration.ProtectedConfigurationSection);summary;df-generated | | System.Configuration.Internal;IInternalConfigHost;DeleteStream;(System.String);summary;df-generated | @@ -27791,7 +29035,6 @@ neutral | System.Configuration.Internal;IInternalConfigSettingsFactory;SetConfigurationSystem;(System.Configuration.Internal.IInternalConfigSystem,System.Boolean);summary;df-generated | | System.Configuration.Internal;IInternalConfigSystem;RefreshConfig;(System.String);summary;df-generated | | System.Configuration.Internal;IInternalConfigSystem;get_SupportsUserConfig;();summary;df-generated | -| System.Configuration.Internal;InternalConfigEventArgs;InternalConfigEventArgs;(System.String);summary;df-generated | | System.Configuration.Provider;ProviderCollection;Add;(System.Configuration.Provider.ProviderBase);summary;df-generated | | System.Configuration.Provider;ProviderCollection;Remove;(System.String);summary;df-generated | | System.Configuration.Provider;ProviderCollection;SetReadOnly;();summary;df-generated | @@ -27875,7 +29118,6 @@ neutral | System.Configuration;ConfigurationElementCollection;get_ElementName;();summary;df-generated | | System.Configuration;ConfigurationElementCollection;get_IsSynchronized;();summary;df-generated | | System.Configuration;ConfigurationElementCollection;get_ThrowOnDuplicate;();summary;df-generated | -| System.Configuration;ConfigurationElementProperty;ConfigurationElementProperty;(System.Configuration.ConfigurationValidatorBase);summary;df-generated | | System.Configuration;ConfigurationElementProperty;get_Validator;();summary;df-generated | | System.Configuration;ConfigurationErrorsException;ConfigurationErrorsException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Configuration;ConfigurationErrorsException;ConfigurationErrorsException;(System.String);summary;df-generated | @@ -27926,7 +29168,6 @@ neutral | System.Configuration;ConfigurationProperty;get_IsRequired;();summary;df-generated | | System.Configuration;ConfigurationProperty;get_IsTypeStringTransformationRequired;();summary;df-generated | | System.Configuration;ConfigurationProperty;get_IsVersionCheckRequired;();summary;df-generated | -| System.Configuration;ConfigurationPropertyAttribute;ConfigurationPropertyAttribute;(System.String);summary;df-generated | | System.Configuration;ConfigurationPropertyAttribute;get_Name;();summary;df-generated | | System.Configuration;ConfigurationPropertyCollection;Contains;(System.String);summary;df-generated | | System.Configuration;ConfigurationPropertyCollection;Remove;(System.String);summary;df-generated | @@ -28037,7 +29278,6 @@ neutral | System.Configuration;ProviderSettingsCollection;CreateNewElement;();summary;df-generated | | System.Configuration;ProviderSettingsCollection;Remove;(System.String);summary;df-generated | | System.Configuration;RegexStringValidator;CanValidate;(System.Type);summary;df-generated | -| System.Configuration;RegexStringValidatorAttribute;RegexStringValidatorAttribute;(System.String);summary;df-generated | | System.Configuration;RegexStringValidatorAttribute;get_Regex;();summary;df-generated | | System.Configuration;RsaProtectedConfigurationProvider;AddKey;(System.Int32,System.Boolean);summary;df-generated | | System.Configuration;RsaProtectedConfigurationProvider;Decrypt;(System.Xml.XmlNode);summary;df-generated | @@ -28103,7 +29343,6 @@ neutral | System.Configuration;SettingsPropertyNotFoundException;SettingsPropertyNotFoundException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Configuration;SettingsPropertyNotFoundException;SettingsPropertyNotFoundException;(System.String);summary;df-generated | | System.Configuration;SettingsPropertyNotFoundException;SettingsPropertyNotFoundException;(System.String,System.Exception);summary;df-generated | -| System.Configuration;SettingsPropertyValue;SettingsPropertyValue;(System.Configuration.SettingsProperty);summary;df-generated | | System.Configuration;SettingsPropertyValueCollection;Remove;(System.String);summary;df-generated | | System.Configuration;SettingsPropertyValueCollection;SetReadOnly;();summary;df-generated | | System.Configuration;SettingsPropertyValueCollection;get_Count;();summary;df-generated | @@ -28151,8 +29390,6 @@ neutral | System.Data.Common;DataAdapter;Fill;(System.Data.DataSet,System.String,System.Data.IDataReader,System.Int32,System.Int32);summary;df-generated | | System.Data.Common;DataAdapter;Fill;(System.Data.DataTable,System.Data.IDataReader);summary;df-generated | | System.Data.Common;DataAdapter;Fill;(System.Data.DataTable[],System.Data.IDataReader,System.Int32,System.Int32);summary;df-generated | -| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);summary;df-generated | -| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader);summary;df-generated | | System.Data.Common;DataAdapter;HasTableMappings;();summary;df-generated | | System.Data.Common;DataAdapter;OnFillError;(System.Data.FillErrorEventArgs);summary;df-generated | | System.Data.Common;DataAdapter;ResetFillLoadOption;();summary;df-generated | @@ -28310,9 +29547,6 @@ neutral | System.Data.Common;DbDataAdapter;Fill;(System.Data.DataTable,System.Data.IDbCommand,System.Data.CommandBehavior);summary;df-generated | | System.Data.Common;DbDataAdapter;Fill;(System.Data.DataTable[],System.Int32,System.Int32,System.Data.IDbCommand,System.Data.CommandBehavior);summary;df-generated | | System.Data.Common;DbDataAdapter;Fill;(System.Int32,System.Int32,System.Data.DataTable[]);summary;df-generated | -| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);summary;df-generated | -| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior);summary;df-generated | -| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String);summary;df-generated | | System.Data.Common;DbDataAdapter;GetBatchedParameter;(System.Int32,System.Int32);summary;df-generated | | System.Data.Common;DbDataAdapter;GetBatchedRecordsAffected;(System.Int32,System.Int32,System.Exception);summary;df-generated | | System.Data.Common;DbDataAdapter;InitializeBatching;();summary;df-generated | @@ -28895,6 +30129,7 @@ neutral | System.Data.SqlTypes;SqlByte;op_Subtraction;(System.Data.SqlTypes.SqlByte,System.Data.SqlTypes.SqlByte);summary;df-generated | | System.Data.SqlTypes;SqlBytes;GetSchema;();summary;df-generated | | System.Data.SqlTypes;SqlBytes;GetXsdType;(System.Xml.Schema.XmlSchemaSet);summary;df-generated | +| System.Data.SqlTypes;SqlBytes;Read;(System.Int64,System.Byte[],System.Int32,System.Int32);summary;df-generated | | System.Data.SqlTypes;SqlBytes;SetLength;(System.Int64);summary;df-generated | | System.Data.SqlTypes;SqlBytes;SetNull;();summary;df-generated | | System.Data.SqlTypes;SqlBytes;SqlBytes;(System.Data.SqlTypes.SqlBinary);summary;df-generated | @@ -29507,7 +30742,6 @@ neutral | System.Data;DataRow;get_RowState;();summary;df-generated | | System.Data;DataRow;set_Item;(System.Int32,System.Object);summary;df-generated | | System.Data;DataRow;set_Item;(System.String,System.Object);summary;df-generated | -| System.Data;DataRowChangeEventArgs;DataRowChangeEventArgs;(System.Data.DataRow,System.Data.DataRowAction);summary;df-generated | | System.Data;DataRowChangeEventArgs;get_Action;();summary;df-generated | | System.Data;DataRowChangeEventArgs;get_Row;();summary;df-generated | | System.Data;DataRowCollection;Contains;(System.Object);summary;df-generated | @@ -29717,7 +30951,6 @@ neutral | System.Data;DataTable;remove_TableCleared;(System.Data.DataTableClearEventHandler);summary;df-generated | | System.Data;DataTable;remove_TableClearing;(System.Data.DataTableClearEventHandler);summary;df-generated | | System.Data;DataTable;remove_TableNewRow;(System.Data.DataTableNewRowEventHandler);summary;df-generated | -| System.Data;DataTableClearEventArgs;DataTableClearEventArgs;(System.Data.DataTable);summary;df-generated | | System.Data;DataTableClearEventArgs;get_Table;();summary;df-generated | | System.Data;DataTableCollection;CanRemove;(System.Data.DataTable);summary;df-generated | | System.Data;DataTableCollection;Contains;(System.String);summary;df-generated | @@ -29735,7 +30968,6 @@ neutral | System.Data;DataTableCollection;remove_CollectionChanging;(System.ComponentModel.CollectionChangeEventHandler);summary;df-generated | | System.Data;DataTableExtensions;AsDataView;(System.Data.DataTable);summary;df-generated | | System.Data;DataTableExtensions;AsDataView;(System.Data.EnumerableRowCollection);summary;df-generated | -| System.Data;DataTableNewRowEventArgs;DataTableNewRowEventArgs;(System.Data.DataRow);summary;df-generated | | System.Data;DataTableNewRowEventArgs;get_Row;();summary;df-generated | | System.Data;DataTableReader;Close;();summary;df-generated | | System.Data;DataTableReader;GetBoolean;(System.Int32);summary;df-generated | @@ -29854,7 +31086,6 @@ neutral | System.Data;IColumnMappingCollection;IndexOf;(System.String);summary;df-generated | | System.Data;IColumnMappingCollection;RemoveAt;(System.String);summary;df-generated | | System.Data;IDataAdapter;Fill;(System.Data.DataSet);summary;df-generated | -| System.Data;IDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);summary;df-generated | | System.Data;IDataAdapter;Update;(System.Data.DataSet);summary;df-generated | | System.Data;IDataAdapter;get_TableMappings;();summary;df-generated | | System.Data;IDataParameter;get_IsNullable;();summary;df-generated | @@ -29922,7 +31153,6 @@ neutral | System.Data;InvalidExpressionException;InvalidExpressionException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Data;InvalidExpressionException;InvalidExpressionException;(System.String);summary;df-generated | | System.Data;InvalidExpressionException;InvalidExpressionException;(System.String,System.Exception);summary;df-generated | -| System.Data;MergeFailedEventArgs;MergeFailedEventArgs;(System.Data.DataTable,System.String);summary;df-generated | | System.Data;MergeFailedEventArgs;get_Conflict;();summary;df-generated | | System.Data;MergeFailedEventArgs;get_Table;();summary;df-generated | | System.Data;MissingPrimaryKeyException;MissingPrimaryKeyException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | @@ -29976,16 +31206,15 @@ neutral | System.Diagnostics.CodeAnalysis;DynamicallyAccessedMembersAttribute;get_MemberTypes;();summary;df-generated | | System.Diagnostics.CodeAnalysis;ExperimentalAttribute;ExperimentalAttribute;(System.String);summary;df-generated | | System.Diagnostics.CodeAnalysis;ExperimentalAttribute;get_DiagnosticId;();summary;df-generated | +| System.Diagnostics.CodeAnalysis;FeatureGuardAttribute;FeatureGuardAttribute;(System.Type);summary;df-generated | +| System.Diagnostics.CodeAnalysis;FeatureGuardAttribute;get_FeatureType;();summary;df-generated | +| System.Diagnostics.CodeAnalysis;FeatureSwitchDefinitionAttribute;FeatureSwitchDefinitionAttribute;(System.String);summary;df-generated | +| System.Diagnostics.CodeAnalysis;FeatureSwitchDefinitionAttribute;get_SwitchName;();summary;df-generated | | System.Diagnostics.CodeAnalysis;MaybeNullWhenAttribute;MaybeNullWhenAttribute;(System.Boolean);summary;df-generated | | System.Diagnostics.CodeAnalysis;MaybeNullWhenAttribute;get_ReturnValue;();summary;df-generated | -| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String);summary;df-generated | -| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String[]);summary;df-generated | | System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;get_Members;();summary;df-generated | -| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String);summary;df-generated | -| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String[]);summary;df-generated | | System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;get_Members;();summary;df-generated | | System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;get_ReturnValue;();summary;df-generated | -| System.Diagnostics.CodeAnalysis;NotNullIfNotNullAttribute;NotNullIfNotNullAttribute;(System.String);summary;df-generated | | System.Diagnostics.CodeAnalysis;NotNullIfNotNullAttribute;get_ParameterName;();summary;df-generated | | System.Diagnostics.CodeAnalysis;NotNullWhenAttribute;NotNullWhenAttribute;(System.Boolean);summary;df-generated | | System.Diagnostics.CodeAnalysis;NotNullWhenAttribute;get_ReturnValue;();summary;df-generated | @@ -30236,6 +31465,13 @@ neutral | System.Diagnostics.Metrics;Counter;Add;(T,System.Collections.Generic.KeyValuePair[]);summary;df-generated | | System.Diagnostics.Metrics;Counter;Add;(T,System.Diagnostics.TagList);summary;df-generated | | System.Diagnostics.Metrics;Counter;Add;(T,System.ReadOnlySpan>);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.Collections.Generic.KeyValuePair);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.Collections.Generic.KeyValuePair[]);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.Diagnostics.TagList);summary;df-generated | +| System.Diagnostics.Metrics;Gauge;Record;(T,System.ReadOnlySpan>);summary;df-generated | | System.Diagnostics.Metrics;Histogram;Record;(T);summary;df-generated | | System.Diagnostics.Metrics;Histogram;Record;(T,System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Diagnostics.Metrics;Histogram;Record;(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair);summary;df-generated | @@ -30243,9 +31479,8 @@ neutral | System.Diagnostics.Metrics;Histogram;Record;(T,System.Collections.Generic.KeyValuePair[]);summary;df-generated | | System.Diagnostics.Metrics;Histogram;Record;(T,System.Diagnostics.TagList);summary;df-generated | | System.Diagnostics.Metrics;Histogram;Record;(T,System.ReadOnlySpan>);summary;df-generated | -| System.Diagnostics.Metrics;IMeterFactory;Create;(System.Diagnostics.Metrics.MeterOptions);summary;df-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String);summary;df-generated | | System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String);summary;df-generated | -| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | | System.Diagnostics.Metrics;Instrument;Publish;();summary;df-generated | | System.Diagnostics.Metrics;Instrument;get_Description;();summary;df-generated | | System.Diagnostics.Metrics;Instrument;get_Enabled;();summary;df-generated | @@ -30254,6 +31489,7 @@ neutral | System.Diagnostics.Metrics;Instrument;get_Name;();summary;df-generated | | System.Diagnostics.Metrics;Instrument;get_Tags;();summary;df-generated | | System.Diagnostics.Metrics;Instrument;get_Unit;();summary;df-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String);summary;df-generated | | System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String);summary;df-generated | | System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | | System.Diagnostics.Metrics;Instrument;RecordMeasurement;(T);summary;df-generated | @@ -30262,14 +31498,17 @@ neutral | System.Diagnostics.Metrics;Instrument;RecordMeasurement;(T,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair,System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Diagnostics.Metrics;Instrument;RecordMeasurement;(T,System.Diagnostics.TagList);summary;df-generated | | System.Diagnostics.Metrics;Instrument;RecordMeasurement;(T,System.ReadOnlySpan>);summary;df-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T);summary;df-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Diagnostics.Metrics;Instrument;get_Advice;();summary;df-generated | | System.Diagnostics.Metrics;Measurement;get_Tags;();summary;df-generated | | System.Diagnostics.Metrics;Measurement;get_Value;();summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateCounter;(System.String,System.String,System.String);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateCounter;(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Diagnostics.Metrics;Meter;CreateGauge;(System.String);summary;df-generated | +| System.Diagnostics.Metrics;Meter;CreateGauge;(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Diagnostics.Metrics;Meter;CreateHistogram;(System.String);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateHistogram;(System.String,System.String,System.String);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateHistogram;(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Diagnostics.Metrics;Meter;CreateHistogram;(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>,System.Diagnostics.Metrics.InstrumentAdvice);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>,System.String,System.String);summary;df-generated | @@ -30292,10 +31531,8 @@ neutral | System.Diagnostics.Metrics;Meter;CreateUpDownCounter;(System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | | System.Diagnostics.Metrics;Meter;Dispose;();summary;df-generated | | System.Diagnostics.Metrics;Meter;Dispose;(System.Boolean);summary;df-generated | -| System.Diagnostics.Metrics;Meter;Meter;(System.Diagnostics.Metrics.MeterOptions);summary;df-generated | | System.Diagnostics.Metrics;Meter;Meter;(System.String);summary;df-generated | | System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String);summary;df-generated | -| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);summary;df-generated | | System.Diagnostics.Metrics;MeterFactoryExtensions;Create;(System.Diagnostics.Metrics.IMeterFactory,System.String,System.String,System.Collections.Generic.IEnumerable>);summary;df-generated | | System.Diagnostics.Metrics;MeterListener;Dispose;();summary;df-generated | | System.Diagnostics.Metrics;MeterListener;RecordObservableInstruments;();summary;df-generated | @@ -30327,8 +31564,6 @@ neutral | System.Diagnostics.SymbolStore;ISymbolDocument;get_LanguageVendor;();summary;df-generated | | System.Diagnostics.SymbolStore;ISymbolDocument;get_SourceLength;();summary;df-generated | | System.Diagnostics.SymbolStore;ISymbolDocument;get_URL;();summary;df-generated | -| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetCheckSum;(System.Guid,System.Byte[]);summary;df-generated | -| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetSource;(System.Byte[]);summary;df-generated | | System.Diagnostics.SymbolStore;ISymbolMethod;GetNamespace;();summary;df-generated | | System.Diagnostics.SymbolStore;ISymbolMethod;GetOffset;(System.Diagnostics.SymbolStore.ISymbolDocument,System.Int32,System.Int32);summary;df-generated | | System.Diagnostics.SymbolStore;ISymbolMethod;GetParameters;();summary;df-generated | @@ -30400,6 +31635,7 @@ neutral | System.Diagnostics.Tracing;DiagnosticCounter;get_EventSource;();summary;df-generated | | System.Diagnostics.Tracing;DiagnosticCounter;get_Name;();summary;df-generated | | System.Diagnostics.Tracing;EventAttribute;EventAttribute;(System.Int32);summary;df-generated | +| System.Diagnostics.Tracing;EventAttribute;get_EventId;();summary;df-generated | | System.Diagnostics.Tracing;EventCommandEventArgs;DisableEvent;(System.Int32);summary;df-generated | | System.Diagnostics.Tracing;EventCommandEventArgs;EnableEvent;(System.Int32);summary;df-generated | | System.Diagnostics.Tracing;EventCounter;EventCounter;(System.String,System.Diagnostics.Tracing.EventSource);summary;df-generated | @@ -30426,7 +31662,6 @@ neutral | System.Diagnostics.Tracing;EventSource;IsEnabled;(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords);summary;df-generated | | System.Diagnostics.Tracing;EventSource;IsEnabled;(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Diagnostics.Tracing.EventChannel);summary;df-generated | | System.Diagnostics.Tracing;EventSource;OnEventCommand;(System.Diagnostics.Tracing.EventCommandEventArgs);summary;df-generated | -| System.Diagnostics.Tracing;EventSource;SendCommand;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary);summary;df-generated | | System.Diagnostics.Tracing;EventSource;SetCurrentThreadActivityId;(System.Guid);summary;df-generated | | System.Diagnostics.Tracing;EventSource;SetCurrentThreadActivityId;(System.Guid,System.Guid);summary;df-generated | | System.Diagnostics.Tracing;EventSource;Write;(System.String);summary;df-generated | @@ -30462,6 +31697,7 @@ neutral | System.Diagnostics.Tracing;EventSourceException;EventSourceException;(System.String);summary;df-generated | | System.Diagnostics.Tracing;EventSourceException;EventSourceException;(System.String,System.Exception);summary;df-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_Channel;();summary;df-generated | +| System.Diagnostics.Tracing;EventWrittenEventArgs;get_EventId;();summary;df-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_EventSource;();summary;df-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_Task;();summary;df-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_Version;();summary;df-generated | @@ -30471,7 +31707,6 @@ neutral | System.Diagnostics.Tracing;PollingCounter;PollingCounter;(System.String,System.Diagnostics.Tracing.EventSource,System.Func);summary;df-generated | | System.Diagnostics;Activity+Enumerator;MoveNext;();summary;df-generated | | System.Diagnostics;Activity+Enumerator;get_Current;();summary;df-generated | -| System.Diagnostics;Activity;Activity;(System.String);summary;df-generated | | System.Diagnostics;Activity;Dispose;();summary;df-generated | | System.Diagnostics;Activity;Dispose;(System.Boolean);summary;df-generated | | System.Diagnostics;Activity;GetCustomProperty;(System.String);summary;df-generated | @@ -30486,7 +31721,6 @@ neutral | System.Diagnostics;Activity;get_Status;();summary;df-generated | | System.Diagnostics;Activity;get_Tags;();summary;df-generated | | System.Diagnostics;Activity;remove_CurrentChanged;(System.EventHandler);summary;df-generated | -| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);summary;df-generated | | System.Diagnostics;ActivityContext;Equals;(System.Diagnostics.ActivityContext);summary;df-generated | | System.Diagnostics;ActivityContext;Equals;(System.Object);summary;df-generated | | System.Diagnostics;ActivityContext;GetHashCode;();summary;df-generated | @@ -30510,7 +31744,6 @@ neutral | System.Diagnostics;ActivityEvent;ActivityEvent;(System.String,System.DateTimeOffset,System.Diagnostics.ActivityTagsCollection);summary;df-generated | | System.Diagnostics;ActivityEvent;get_Name;();summary;df-generated | | System.Diagnostics;ActivityEvent;get_Timestamp;();summary;df-generated | -| System.Diagnostics;ActivityLink;ActivityLink;(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection);summary;df-generated | | System.Diagnostics;ActivityLink;Equals;(System.Diagnostics.ActivityLink);summary;df-generated | | System.Diagnostics;ActivityLink;Equals;(System.Object);summary;df-generated | | System.Diagnostics;ActivityLink;GetHashCode;();summary;df-generated | @@ -30518,13 +31751,13 @@ neutral | System.Diagnostics;ActivityLink;op_Equality;(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink);summary;df-generated | | System.Diagnostics;ActivityLink;op_Inequality;(System.Diagnostics.ActivityLink,System.Diagnostics.ActivityLink);summary;df-generated | | System.Diagnostics;ActivityListener;Dispose;();summary;df-generated | +| System.Diagnostics;ActivitySource;ActivitySource;(System.String);summary;df-generated | | System.Diagnostics;ActivitySource;ActivitySource;(System.String,System.String);summary;df-generated | | System.Diagnostics;ActivitySource;AddActivityListener;(System.Diagnostics.ActivityListener);summary;df-generated | -| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind);summary;df-generated | | System.Diagnostics;ActivitySource;Dispose;();summary;df-generated | | System.Diagnostics;ActivitySource;HasListeners;();summary;df-generated | -| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind);summary;df-generated | | System.Diagnostics;ActivitySource;get_Name;();summary;df-generated | +| System.Diagnostics;ActivitySource;get_Tags;();summary;df-generated | | System.Diagnostics;ActivitySource;get_Version;();summary;df-generated | | System.Diagnostics;ActivitySpanId;CopyTo;(System.Span);summary;df-generated | | System.Diagnostics;ActivitySpanId;CreateFromBytes;(System.ReadOnlySpan);summary;df-generated | @@ -30624,6 +31857,7 @@ neutral | System.Diagnostics;DebuggableAttribute;get_IsJITOptimizerDisabled;();summary;df-generated | | System.Diagnostics;DebuggableAttribute;get_IsJITTrackingEnabled;();summary;df-generated | | System.Diagnostics;Debugger;Break;();summary;df-generated | +| System.Diagnostics;Debugger;BreakForUserUnhandledException;(System.Exception);summary;df-generated | | System.Diagnostics;Debugger;IsLogging;();summary;df-generated | | System.Diagnostics;Debugger;Launch;();summary;df-generated | | System.Diagnostics;Debugger;Log;(System.Int32,System.String,System.String);summary;df-generated | @@ -30654,7 +31888,6 @@ neutral | System.Diagnostics;DelimitedListTraceListener;DelimitedListTraceListener;(System.String);summary;df-generated | | System.Diagnostics;DelimitedListTraceListener;DelimitedListTraceListener;(System.String,System.String);summary;df-generated | | System.Diagnostics;DelimitedListTraceListener;GetSupportedAttributes;();summary;df-generated | -| System.Diagnostics;DiagnosticListener;DiagnosticListener;(System.String);summary;df-generated | | System.Diagnostics;DiagnosticListener;Dispose;();summary;df-generated | | System.Diagnostics;DiagnosticListener;IsEnabled;();summary;df-generated | | System.Diagnostics;DiagnosticListener;IsEnabled;(System.String);summary;df-generated | @@ -30667,6 +31900,9 @@ neutral | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Predicate);summary;df-generated | | System.Diagnostics;DiagnosticListener;Write;(System.String,System.Object);summary;df-generated | | System.Diagnostics;DiagnosticListener;get_AllListeners;();summary;df-generated | +| System.Diagnostics;DiagnosticListener;get_Name;();summary;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;get_DeclaringAssemblyName;();summary;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;get_DeclaringTypeName;();summary;df-generated | | System.Diagnostics;DiagnosticSource;IsEnabled;(System.String);summary;df-generated | | System.Diagnostics;DiagnosticSource;IsEnabled;(System.String,System.Object,System.Object);summary;df-generated | | System.Diagnostics;DiagnosticSource;OnActivityExport;(System.Diagnostics.Activity,System.Object);summary;df-generated | @@ -30788,9 +32024,7 @@ neutral | System.Diagnostics;FileVersionInfo;get_ProductMajorPart;();summary;df-generated | | System.Diagnostics;FileVersionInfo;get_ProductMinorPart;();summary;df-generated | | System.Diagnostics;FileVersionInfo;get_ProductPrivatePart;();summary;df-generated | -| System.Diagnostics;InitializingSwitchEventArgs;InitializingSwitchEventArgs;(System.Diagnostics.Switch);summary;df-generated | | System.Diagnostics;InitializingSwitchEventArgs;get_Switch;();summary;df-generated | -| System.Diagnostics;InitializingTraceSourceEventArgs;InitializingTraceSourceEventArgs;(System.Diagnostics.TraceSource);summary;df-generated | | System.Diagnostics;InitializingTraceSourceEventArgs;get_TraceSource;();summary;df-generated | | System.Diagnostics;MonitoringDescriptionAttribute;MonitoringDescriptionAttribute;(System.String);summary;df-generated | | System.Diagnostics;PerformanceCounterPermission;PerformanceCounterPermission;(System.Diagnostics.PerformanceCounterPermissionAccess,System.String,System.String);summary;df-generated | @@ -30834,9 +32068,7 @@ neutral | System.Diagnostics;Process;OnExited;();summary;df-generated | | System.Diagnostics;Process;Refresh;();summary;df-generated | | System.Diagnostics;Process;Start;();summary;df-generated | -| System.Diagnostics;Process;Start;(System.String);summary;df-generated | | System.Diagnostics;Process;Start;(System.String,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Diagnostics;Process;Start;(System.String,System.String);summary;df-generated | | System.Diagnostics;Process;Start;(System.String,System.String,System.Security.SecureString,System.String);summary;df-generated | | System.Diagnostics;Process;Start;(System.String,System.String,System.String,System.Security.SecureString,System.String);summary;df-generated | | System.Diagnostics;Process;WaitForExit;();summary;df-generated | @@ -30963,10 +32195,10 @@ neutral | System.Diagnostics;TagList+Enumerator;get_Current;();summary;df-generated | | System.Diagnostics;TagList;Add;(System.String,System.Object);summary;df-generated | | System.Diagnostics;TagList;Contains;(System.Collections.Generic.KeyValuePair);summary;df-generated | -| System.Diagnostics;TagList;CopyTo;(System.Span>);summary;df-generated | | System.Diagnostics;TagList;IndexOf;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Diagnostics;TagList;Remove;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Diagnostics;TagList;RemoveAt;(System.Int32);summary;df-generated | +| System.Diagnostics;TagList;TagList;(System.ReadOnlySpan>);summary;df-generated | | System.Diagnostics;TagList;get_Count;();summary;df-generated | | System.Diagnostics;TagList;get_IsReadOnly;();summary;df-generated | | System.Diagnostics;TagList;get_Item;(System.Int32);summary;df-generated | @@ -31549,19 +32781,16 @@ neutral | System.Dynamic;ConvertBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;ConvertBinder;get_Type;();summary;df-generated | | System.Dynamic;CreateInstanceBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;CreateInstanceBinder;CreateInstanceBinder;(System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;CreateInstanceBinder;FallbackCreateInstance;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;CreateInstanceBinder;FallbackCreateInstance;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;CreateInstanceBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;CreateInstanceBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;DeleteIndexBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;DeleteIndexBinder;DeleteIndexBinder;(System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;DeleteIndexBinder;FallbackDeleteIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;DeleteIndexBinder;FallbackDeleteIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;DeleteIndexBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;DeleteIndexBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;DeleteMemberBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;DeleteMemberBinder;DeleteMemberBinder;(System.String,System.Boolean);summary;df-generated | | System.Dynamic;DeleteMemberBinder;FallbackDeleteMember;(System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;DeleteMemberBinder;FallbackDeleteMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;DeleteMemberBinder;get_IgnoreCase;();summary;df-generated | @@ -31579,7 +32808,6 @@ neutral | System.Dynamic;DynamicMetaObject;BindSetIndex;(System.Dynamic.SetIndexBinder,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;DynamicMetaObject;BindSetMember;(System.Dynamic.SetMemberBinder,System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;DynamicMetaObject;BindUnaryOperation;(System.Dynamic.UnaryOperationBinder);summary;df-generated | -| System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions);summary;df-generated | | System.Dynamic;DynamicMetaObject;GetDynamicMemberNames;();summary;df-generated | | System.Dynamic;DynamicMetaObject;get_Expression;();summary;df-generated | | System.Dynamic;DynamicMetaObject;get_HasValue;();summary;df-generated | @@ -31618,12 +32846,10 @@ neutral | System.Dynamic;ExpandoObject;remove_PropertyChanged;(System.ComponentModel.PropertyChangedEventHandler);summary;df-generated | | System.Dynamic;GetIndexBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;GetIndexBinder;FallbackGetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;GetIndexBinder;GetIndexBinder;(System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;GetIndexBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;GetIndexBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;GetMemberBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;GetMemberBinder;FallbackGetMember;(System.Dynamic.DynamicMetaObject);summary;df-generated | -| System.Dynamic;GetMemberBinder;GetMemberBinder;(System.String,System.Boolean);summary;df-generated | | System.Dynamic;GetMemberBinder;get_IgnoreCase;();summary;df-generated | | System.Dynamic;GetMemberBinder;get_Name;();summary;df-generated | | System.Dynamic;GetMemberBinder;get_ReturnType;();summary;df-generated | @@ -31631,25 +32857,21 @@ neutral | System.Dynamic;IInvokeOnGetBinder;get_InvokeOnGet;();summary;df-generated | | System.Dynamic;InvokeBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;InvokeBinder;FallbackInvoke;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;InvokeBinder;InvokeBinder;(System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;InvokeBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;InvokeBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;InvokeMemberBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;InvokeMemberBinder;FallbackInvoke;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);summary;df-generated | | System.Dynamic;InvokeMemberBinder;FallbackInvokeMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | -| System.Dynamic;InvokeMemberBinder;InvokeMemberBinder;(System.String,System.Boolean,System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;InvokeMemberBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;InvokeMemberBinder;get_IgnoreCase;();summary;df-generated | | System.Dynamic;InvokeMemberBinder;get_Name;();summary;df-generated | | System.Dynamic;InvokeMemberBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;SetIndexBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;SetIndexBinder;FallbackSetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);summary;df-generated | -| System.Dynamic;SetIndexBinder;SetIndexBinder;(System.Dynamic.CallInfo);summary;df-generated | | System.Dynamic;SetIndexBinder;get_CallInfo;();summary;df-generated | | System.Dynamic;SetIndexBinder;get_ReturnType;();summary;df-generated | | System.Dynamic;SetMemberBinder;Bind;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[]);summary;df-generated | | System.Dynamic;SetMemberBinder;FallbackSetMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);summary;df-generated | -| System.Dynamic;SetMemberBinder;SetMemberBinder;(System.String,System.Boolean);summary;df-generated | | System.Dynamic;SetMemberBinder;get_IgnoreCase;();summary;df-generated | | System.Dynamic;SetMemberBinder;get_Name;();summary;df-generated | | System.Dynamic;SetMemberBinder;get_ReturnType;();summary;df-generated | @@ -31680,6 +32902,7 @@ neutral | System.Formats.Asn1;AsnContentException;AsnContentException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Formats.Asn1;AsnContentException;AsnContentException;(System.String);summary;df-generated | | System.Formats.Asn1;AsnContentException;AsnContentException;(System.String,System.Exception);summary;df-generated | +| System.Formats.Asn1;AsnDecoder;DecodeLength;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32);summary;df-generated | | System.Formats.Asn1;AsnDecoder;ReadBoolean;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Nullable);summary;df-generated | | System.Formats.Asn1;AsnDecoder;ReadCharacterString;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.UniversalTagNumber,System.Int32,System.Nullable);summary;df-generated | | System.Formats.Asn1;AsnDecoder;ReadEncodedValue;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32);summary;df-generated | @@ -31695,6 +32918,7 @@ neutral | System.Formats.Asn1;AsnDecoder;ReadSequence;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32,System.Nullable);summary;df-generated | | System.Formats.Asn1;AsnDecoder;ReadSetOf;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Int32,System.Boolean,System.Nullable);summary;df-generated | | System.Formats.Asn1;AsnDecoder;ReadUtcTime;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable);summary;df-generated | +| System.Formats.Asn1;AsnDecoder;TryDecodeLength;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Nullable,System.Int32);summary;df-generated | | System.Formats.Asn1;AsnDecoder;TryReadCharacterString;(System.ReadOnlySpan,System.Span,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.UniversalTagNumber,System.Int32,System.Int32,System.Nullable);summary;df-generated | | System.Formats.Asn1;AsnDecoder;TryReadEncodedValue;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Formats.Asn1.Asn1Tag,System.Int32,System.Int32,System.Int32);summary;df-generated | | System.Formats.Asn1;AsnDecoder;TryReadInt32;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable);summary;df-generated | @@ -31781,6 +33005,7 @@ neutral | System.Formats.Tar;TarEntry;ExtractToFile;(System.String,System.Boolean);summary;df-generated | | System.Formats.Tar;TarEntry;ExtractToFileAsync;(System.String,System.Boolean,System.Threading.CancellationToken);summary;df-generated | | System.Formats.Tar;TarEntry;get_Checksum;();summary;df-generated | +| System.Formats.Tar;TarEntry;get_DataOffset;();summary;df-generated | | System.Formats.Tar;TarEntry;get_EntryType;();summary;df-generated | | System.Formats.Tar;TarEntry;get_Format;();summary;df-generated | | System.Formats.Tar;TarEntry;get_Length;();summary;df-generated | @@ -31798,6 +33023,7 @@ neutral | System.Formats.Tar;TarWriter;Dispose;();summary;df-generated | | System.Formats.Tar;TarWriter;TarWriter;(System.IO.Stream);summary;df-generated | | System.Formats.Tar;TarWriter;TarWriter;(System.IO.Stream,System.Boolean);summary;df-generated | +| System.Formats.Tar;TarWriter;get_Format;();summary;df-generated | | System.Formats.Tar;UstarTarEntry;UstarTarEntry;(System.Formats.Tar.TarEntryType,System.String);summary;df-generated | | System.Formats.Tar;V7TarEntry;V7TarEntry;(System.Formats.Tar.TarEntry);summary;df-generated | | System.Formats.Tar;V7TarEntry;V7TarEntry;(System.Formats.Tar.TarEntryType,System.String);summary;df-generated | @@ -32264,6 +33490,7 @@ neutral | System.IO.Compression;BrotliEncoder;GetMaxCompressedLength;(System.Int32);summary;df-generated | | System.IO.Compression;BrotliEncoder;TryCompress;(System.ReadOnlySpan,System.Span,System.Int32);summary;df-generated | | System.IO.Compression;BrotliEncoder;TryCompress;(System.ReadOnlySpan,System.Span,System.Int32,System.Int32,System.Int32);summary;df-generated | +| System.IO.Compression;BrotliStream;BrotliStream;(System.IO.Stream,System.IO.Compression.BrotliCompressionOptions,System.Boolean);summary;df-generated | | System.IO.Compression;BrotliStream;BrotliStream;(System.IO.Stream,System.IO.Compression.CompressionLevel);summary;df-generated | | System.IO.Compression;BrotliStream;BrotliStream;(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean);summary;df-generated | | System.IO.Compression;BrotliStream;BrotliStream;(System.IO.Stream,System.IO.Compression.CompressionMode);summary;df-generated | @@ -32274,12 +33501,12 @@ neutral | System.IO.Compression;BrotliStream;ReadByte;();summary;df-generated | | System.IO.Compression;BrotliStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.Compression;BrotliStream;SetLength;(System.Int64);summary;df-generated | -| System.IO.Compression;BrotliStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.Compression;BrotliStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.Compression;BrotliStream;get_CanRead;();summary;df-generated | | System.IO.Compression;BrotliStream;get_CanSeek;();summary;df-generated | | System.IO.Compression;BrotliStream;get_CanWrite;();summary;df-generated | | System.IO.Compression;BrotliStream;get_Length;();summary;df-generated | +| System.IO.Compression;DeflateStream;DeflateStream;(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean);summary;df-generated | | System.IO.Compression;DeflateStream;Dispose;(System.Boolean);summary;df-generated | | System.IO.Compression;DeflateStream;EndRead;(System.IAsyncResult);summary;df-generated | | System.IO.Compression;DeflateStream;EndWrite;(System.IAsyncResult);summary;df-generated | @@ -32287,7 +33514,6 @@ neutral | System.IO.Compression;DeflateStream;ReadByte;();summary;df-generated | | System.IO.Compression;DeflateStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.Compression;DeflateStream;SetLength;(System.Int64);summary;df-generated | -| System.IO.Compression;DeflateStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.Compression;DeflateStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.Compression;DeflateStream;get_CanRead;();summary;df-generated | | System.IO.Compression;DeflateStream;get_CanSeek;();summary;df-generated | @@ -32302,7 +33528,6 @@ neutral | System.IO.Compression;GZipStream;ReadByte;();summary;df-generated | | System.IO.Compression;GZipStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.Compression;GZipStream;SetLength;(System.Int64);summary;df-generated | -| System.IO.Compression;GZipStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.Compression;GZipStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.Compression;GZipStream;get_CanRead;();summary;df-generated | | System.IO.Compression;GZipStream;get_CanSeek;();summary;df-generated | @@ -32315,7 +33540,6 @@ neutral | System.IO.Compression;ZLibStream;ReadByte;();summary;df-generated | | System.IO.Compression;ZLibStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.Compression;ZLibStream;SetLength;(System.Int64);summary;df-generated | -| System.IO.Compression;ZLibStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.Compression;ZLibStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionLevel);summary;df-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionMode);summary;df-generated | @@ -32452,7 +33676,6 @@ neutral | System.IO.IsolatedStorage;IsolatedStorageFileStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;SetLength;(System.Int64);summary;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;Unlock;(System.Int64,System.Int64);summary;df-generated | -| System.IO.IsolatedStorage;IsolatedStorageFileStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;get_CanRead;();summary;df-generated | | System.IO.IsolatedStorage;IsolatedStorageFileStream;get_CanSeek;();summary;df-generated | @@ -32494,7 +33717,6 @@ neutral | System.IO.Pipelines;IDuplexPipe;get_Input;();summary;df-generated | | System.IO.Pipelines;IDuplexPipe;get_Output;();summary;df-generated | | System.IO.Pipelines;Pipe;Reset;();summary;df-generated | -| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);summary;df-generated | | System.IO.Pipelines;PipeOptions;get_Default;();summary;df-generated | | System.IO.Pipelines;PipeOptions;get_MinimumSegmentSize;();summary;df-generated | | System.IO.Pipelines;PipeOptions;get_PauseWriterThreshold;();summary;df-generated | @@ -32525,20 +33747,17 @@ neutral | System.IO.Pipelines;PipeWriter;GetMemory;(System.Int32);summary;df-generated | | System.IO.Pipelines;PipeWriter;GetSpan;(System.Int32);summary;df-generated | | System.IO.Pipelines;PipeWriter;OnReaderCompleted;(System.Action,System.Object);summary;df-generated | -| System.IO.Pipelines;PipeWriter;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | | System.IO.Pipelines;PipeWriter;get_CanGetUnflushedBytes;();summary;df-generated | | System.IO.Pipelines;PipeWriter;get_UnflushedBytes;();summary;df-generated | | System.IO.Pipelines;ReadResult;get_IsCanceled;();summary;df-generated | | System.IO.Pipelines;ReadResult;get_IsCompleted;();summary;df-generated | | System.IO.Pipelines;StreamPipeExtensions;CopyToAsync;(System.IO.Stream,System.IO.Pipelines.PipeWriter,System.Threading.CancellationToken);summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;StreamPipeReaderOptions;(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean);summary;df-generated | -| System.IO.Pipelines;StreamPipeReaderOptions;StreamPipeReaderOptions;(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean,System.Boolean);summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;get_BufferSize;();summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;get_LeaveOpen;();summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;get_MinimumReadSize;();summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;get_Pool;();summary;df-generated | | System.IO.Pipelines;StreamPipeReaderOptions;get_UseZeroByteReads;();summary;df-generated | -| System.IO.Pipelines;StreamPipeWriterOptions;StreamPipeWriterOptions;(System.Buffers.MemoryPool,System.Int32,System.Boolean);summary;df-generated | | System.IO.Pipelines;StreamPipeWriterOptions;get_LeaveOpen;();summary;df-generated | | System.IO.Pipelines;StreamPipeWriterOptions;get_MinimumBufferSize;();summary;df-generated | | System.IO.Pipelines;StreamPipeWriterOptions;get_Pool;();summary;df-generated | @@ -32564,6 +33783,7 @@ neutral | System.IO.Pipes;NamedPipeClientStream;ConnectAsync;(System.TimeSpan,System.Threading.CancellationToken);summary;df-generated | | System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String);summary;df-generated | | System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String,System.String);summary;df-generated | +| System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String,System.String,System.IO.Pipes.PipeAccessRights,System.IO.Pipes.PipeOptions,System.Security.Principal.TokenImpersonationLevel,System.IO.HandleInheritability);summary;df-generated | | System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String,System.String,System.IO.Pipes.PipeDirection);summary;df-generated | | System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String,System.String,System.IO.Pipes.PipeDirection,System.IO.Pipes.PipeOptions);summary;df-generated | | System.IO.Pipes;NamedPipeClientStream;NamedPipeClientStream;(System.String,System.String,System.IO.Pipes.PipeDirection,System.IO.Pipes.PipeOptions,System.Security.Principal.TokenImpersonationLevel);summary;df-generated | @@ -32619,7 +33839,6 @@ neutral | System.IO.Pipes;PipeStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO.Pipes;PipeStream;SetLength;(System.Int64);summary;df-generated | | System.IO.Pipes;PipeStream;WaitForPipeDrain;();summary;df-generated | -| System.IO.Pipes;PipeStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO.Pipes;PipeStream;WriteByte;(System.Byte);summary;df-generated | | System.IO.Pipes;PipeStream;get_CanRead;();summary;df-generated | | System.IO.Pipes;PipeStream;get_CanSeek;();summary;df-generated | @@ -32681,7 +33900,6 @@ neutral | System.IO;BinaryWriter;Write;(System.Int16);summary;df-generated | | System.IO;BinaryWriter;Write;(System.Int32);summary;df-generated | | System.IO;BinaryWriter;Write;(System.Int64);summary;df-generated | -| System.IO;BinaryWriter;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;BinaryWriter;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;BinaryWriter;Write;(System.SByte);summary;df-generated | | System.IO;BinaryWriter;Write;(System.Single);summary;df-generated | @@ -32696,7 +33914,6 @@ neutral | System.IO;BufferedStream;ReadByte;();summary;df-generated | | System.IO;BufferedStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO;BufferedStream;SetLength;(System.Int64);summary;df-generated | -| System.IO;BufferedStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;BufferedStream;WriteByte;(System.Byte);summary;df-generated | | System.IO;BufferedStream;get_BufferSize;();summary;df-generated | | System.IO;BufferedStream;get_CanRead;();summary;df-generated | @@ -32726,7 +33943,6 @@ neutral | System.IO;Directory;GetDirectories;(System.String,System.String);summary;df-generated | | System.IO;Directory;GetDirectories;(System.String,System.String,System.IO.EnumerationOptions);summary;df-generated | | System.IO;Directory;GetDirectories;(System.String,System.String,System.IO.SearchOption);summary;df-generated | -| System.IO;Directory;GetDirectoryRoot;(System.String);summary;df-generated | | System.IO;Directory;GetFileSystemEntries;(System.String);summary;df-generated | | System.IO;Directory;GetFileSystemEntries;(System.String,System.String);summary;df-generated | | System.IO;Directory;GetFileSystemEntries;(System.String,System.String,System.IO.EnumerationOptions);summary;df-generated | @@ -32765,7 +33981,6 @@ neutral | System.IO;DirectoryInfo;GetFiles;(System.String,System.IO.EnumerationOptions);summary;df-generated | | System.IO;DirectoryInfo;GetFiles;(System.String,System.IO.SearchOption);summary;df-generated | | System.IO;DirectoryInfo;get_Exists;();summary;df-generated | -| System.IO;DirectoryInfo;get_Root;();summary;df-generated | | System.IO;DirectoryNotFoundException;DirectoryNotFoundException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.IO;DirectoryNotFoundException;DirectoryNotFoundException;(System.String);summary;df-generated | | System.IO;DirectoryNotFoundException;DirectoryNotFoundException;(System.String,System.Exception);summary;df-generated | @@ -32784,8 +33999,11 @@ neutral | System.IO;EndOfStreamException;EndOfStreamException;(System.String);summary;df-generated | | System.IO;EndOfStreamException;EndOfStreamException;(System.String,System.Exception);summary;df-generated | | System.IO;File;AppendAllBytes;(System.String,System.Byte[]);summary;df-generated | +| System.IO;File;AppendAllBytes;(System.String,System.ReadOnlySpan);summary;df-generated | | System.IO;File;AppendAllLines;(System.String,System.Collections.Generic.IEnumerable);summary;df-generated | | System.IO;File;AppendAllLines;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding);summary;df-generated | +| System.IO;File;AppendAllText;(System.String,System.ReadOnlySpan);summary;df-generated | +| System.IO;File;AppendAllText;(System.String,System.ReadOnlySpan,System.Text.Encoding);summary;df-generated | | System.IO;File;AppendAllText;(System.String,System.String);summary;df-generated | | System.IO;File;AppendAllText;(System.String,System.String,System.Text.Encoding);summary;df-generated | | System.IO;File;AppendText;(System.String);summary;df-generated | @@ -32845,10 +34063,13 @@ neutral | System.IO;File;SetUnixFileMode;(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.UnixFileMode);summary;df-generated | | System.IO;File;SetUnixFileMode;(System.String,System.IO.UnixFileMode);summary;df-generated | | System.IO;File;WriteAllBytes;(System.String,System.Byte[]);summary;df-generated | +| System.IO;File;WriteAllBytes;(System.String,System.ReadOnlySpan);summary;df-generated | | System.IO;File;WriteAllLines;(System.String,System.Collections.Generic.IEnumerable);summary;df-generated | | System.IO;File;WriteAllLines;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding);summary;df-generated | | System.IO;File;WriteAllLines;(System.String,System.String[]);summary;df-generated | | System.IO;File;WriteAllLines;(System.String,System.String[],System.Text.Encoding);summary;df-generated | +| System.IO;File;WriteAllText;(System.String,System.ReadOnlySpan);summary;df-generated | +| System.IO;File;WriteAllText;(System.String,System.ReadOnlySpan,System.Text.Encoding);summary;df-generated | | System.IO;File;WriteAllText;(System.String,System.String);summary;df-generated | | System.IO;File;WriteAllText;(System.String,System.String,System.Text.Encoding);summary;df-generated | | System.IO;FileInfo;AppendText;();summary;df-generated | @@ -32890,7 +34111,6 @@ neutral | System.IO;FileStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO;FileStream;SetLength;(System.Int64);summary;df-generated | | System.IO;FileStream;Unlock;(System.Int64,System.Int64);summary;df-generated | -| System.IO;FileStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;FileStream;WriteByte;(System.Byte);summary;df-generated | | System.IO;FileStream;get_CanRead;();summary;df-generated | | System.IO;FileStream;get_CanSeek;();summary;df-generated | @@ -32950,7 +34170,6 @@ neutral | System.IO;MemoryStream;ReadByte;();summary;df-generated | | System.IO;MemoryStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO;MemoryStream;SetLength;(System.Int64);summary;df-generated | -| System.IO;MemoryStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;MemoryStream;WriteByte;(System.Byte);summary;df-generated | | System.IO;MemoryStream;get_CanRead;();summary;df-generated | | System.IO;MemoryStream;get_CanSeek;();summary;df-generated | @@ -32970,6 +34189,7 @@ neutral | System.IO;Path;IsPathFullyQualified;(System.String);summary;df-generated | | System.IO;Path;IsPathRooted;(System.ReadOnlySpan);summary;df-generated | | System.IO;Path;IsPathRooted;(System.String);summary;df-generated | +| System.IO;Path;Join;(System.ReadOnlySpan);summary;df-generated | | System.IO;Path;Join;(System.String[]);summary;df-generated | | System.IO;PathTooLongException;PathTooLongException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.IO;PathTooLongException;PathTooLongException;(System.String);summary;df-generated | @@ -32996,7 +34216,6 @@ neutral | System.IO;Stream;SetLength;(System.Int64);summary;df-generated | | System.IO;Stream;ValidateBufferArguments;(System.Byte[],System.Int32,System.Int32);summary;df-generated | | System.IO;Stream;ValidateCopyToArguments;(System.IO.Stream,System.Int32);summary;df-generated | -| System.IO;Stream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;Stream;WriteByte;(System.Byte);summary;df-generated | | System.IO;Stream;get_CanRead;();summary;df-generated | | System.IO;Stream;get_CanSeek;();summary;df-generated | @@ -33038,6 +34257,7 @@ neutral | System.IO;TextReader;Dispose;(System.Boolean);summary;df-generated | | System.IO;TextReader;Peek;();summary;df-generated | | System.IO;TextWriter;Close;();summary;df-generated | +| System.IO;TextWriter;CreateBroadcasting;(System.IO.TextWriter[]);summary;df-generated | | System.IO;TextWriter;Dispose;();summary;df-generated | | System.IO;TextWriter;Dispose;(System.Boolean);summary;df-generated | | System.IO;TextWriter;Flush;();summary;df-generated | @@ -33102,7 +34322,6 @@ neutral | System.IO;UnmanagedMemoryStream;ReadByte;();summary;df-generated | | System.IO;UnmanagedMemoryStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.IO;UnmanagedMemoryStream;SetLength;(System.Int64);summary;df-generated | -| System.IO;UnmanagedMemoryStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.IO;UnmanagedMemoryStream;WriteByte;(System.Byte);summary;df-generated | | System.IO;UnmanagedMemoryStream;get_CanRead;();summary;df-generated | | System.IO;UnmanagedMemoryStream;get_CanSeek;();summary;df-generated | @@ -33156,47 +34375,25 @@ neutral | System.Linq.Expressions;Expression;And;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;AndAlso;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;ArrayIndex;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ArrayIndex;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;ArrayLength;(System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Assign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Block;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Block;(System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Type);summary;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.String,System.Type[],System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Call;(System.Type,System.String,System.Type[],System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ClearDebugInfo;(System.Linq.Expressions.SymbolDocumentInfo);summary;df-generated | | System.Linq.Expressions;Expression;Coalesce;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Constant;(System.Object);summary;df-generated | -| System.Linq.Expressions;Expression;Constant;(System.Object,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;DebugInfo;(System.Linq.Expressions.SymbolDocumentInfo,System.Int32,System.Int32,System.Int32,System.Int32);summary;df-generated | -| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Default;(System.Type);summary;df-generated | | System.Linq.Expressions;Expression;Divide;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;DivideAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Empty;();summary;df-generated | | System.Linq.Expressions;Expression;Equal;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ExclusiveOr;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | @@ -33207,26 +34404,11 @@ neutral | System.Linq.Expressions;Expression;GetActionType;(System.Type[]);summary;df-generated | | System.Linq.Expressions;Expression;GetDelegateType;(System.Type[]);summary;df-generated | | System.Linq.Expressions;Expression;GetFuncType;(System.Type[]);summary;df-generated | -| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Type);summary;df-generated | | System.Linq.Expressions;Expression;GreaterThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;GreaterThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;IfThen;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Invoke;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Label;();summary;df-generated | -| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Label;(System.String);summary;df-generated | | System.Linq.Expressions;Expression;Label;(System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Label;(System.Type,System.String);summary;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Boolean,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Boolean,System.Linq.Expressions.ParameterExpression[]);summary;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);summary;df-generated | @@ -33245,118 +34427,49 @@ neutral | System.Linq.Expressions;Expression;LeftShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;LessThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;LessThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;ListBind;(System.Reflection.MemberInfo,System.Linq.Expressions.ElementInit[]);summary;df-generated | -| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;ListBind;(System.Reflection.MethodInfo,System.Linq.Expressions.ElementInit[]);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.ElementInit[]);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);summary;df-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MemberInfo,System.Linq.Expressions.MemberBinding[]);summary;df-generated | -| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MethodInfo,System.Linq.Expressions.MemberBinding[]);summary;df-generated | -| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.MemberBinding[]);summary;df-generated | | System.Linq.Expressions;Expression;Modulo;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ModuloAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Multiply;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;MultiplyAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;MultiplyAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;MultiplyChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo);summary;df-generated | -| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;New;(System.Type);summary;df-generated | | System.Linq.Expressions;Expression;NewArrayBounds;(System.Type,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;NewArrayBounds;(System.Type,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;NewArrayInit;(System.Type,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;NewArrayInit;(System.Type,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;NotEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Or;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;OrElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Parameter;(System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Parameter;(System.Type,System.String);summary;df-generated | -| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Power;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.String);summary;df-generated | -| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.String,System.Linq.Expressions.Expression[]);summary;df-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Type,System.String);summary;df-generated | | System.Linq.Expressions;Expression;PropertyOrField;(System.Linq.Expressions.Expression,System.String);summary;df-generated | -| System.Linq.Expressions;Expression;Quote;(System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ReferenceEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;ReferenceNotEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;Rethrow;();summary;df-generated | | System.Linq.Expressions;Expression;Rethrow;(System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget);summary;df-generated | -| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Type);summary;df-generated | | System.Linq.Expressions;Expression;RightShift;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;RuntimeVariables;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Linq.Expressions;Expression;RuntimeVariables;(System.Linq.Expressions.ParameterExpression[]);summary;df-generated | | System.Linq.Expressions;Expression;Subtract;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;SubtractAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;SubtractAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;SubtractChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);summary;df-generated | -| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);summary;df-generated | -| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);summary;df-generated | -| System.Linq.Expressions;Expression;SymbolDocument;(System.String);summary;df-generated | -| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | | System.Linq.Expressions;Expression;ToString;();summary;df-generated | -| System.Linq.Expressions;Expression;TryCatch;(System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);summary;df-generated | -| System.Linq.Expressions;Expression;TryCatchFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);summary;df-generated | -| System.Linq.Expressions;Expression;TryFault;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;TryFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);summary;df-generated | | System.Linq.Expressions;Expression;TryGetActionType;(System.Type[],System.Type);summary;df-generated | | System.Linq.Expressions;Expression;TryGetFuncType;(System.Type[],System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;TypeAs;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;TypeEqual;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;TypeIs;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression);summary;df-generated | -| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);summary;df-generated | -| System.Linq.Expressions;Expression;Unbox;(System.Linq.Expressions.Expression,System.Type);summary;df-generated | | System.Linq.Expressions;Expression;Variable;(System.Type);summary;df-generated | -| System.Linq.Expressions;Expression;Variable;(System.Type,System.String);summary;df-generated | | System.Linq.Expressions;Expression;get_CanReduce;();summary;df-generated | | System.Linq.Expressions;Expression;get_NodeType;();summary;df-generated | | System.Linq.Expressions;Expression;get_Type;();summary;df-generated | @@ -33405,7 +34518,6 @@ neutral | System.Linq.Expressions;LoopExpression;get_ContinueLabel;();summary;df-generated | | System.Linq.Expressions;LoopExpression;get_NodeType;();summary;df-generated | | System.Linq.Expressions;LoopExpression;get_Type;();summary;df-generated | -| System.Linq.Expressions;MemberBinding;MemberBinding;(System.Linq.Expressions.MemberBindingType,System.Reflection.MemberInfo);summary;df-generated | | System.Linq.Expressions;MemberBinding;get_BindingType;();summary;df-generated | | System.Linq.Expressions;MemberBinding;get_Member;();summary;df-generated | | System.Linq.Expressions;MemberExpression;get_Expression;();summary;df-generated | @@ -33535,12 +34647,10 @@ neutral | System.Linq;ImmutableArrayExtensions;First;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;FirstOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | -| System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray);summary;df-generated | | System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;Select;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;SequenceEqual;(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;Single;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | -| System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray);summary;df-generated | | System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;ImmutableArrayExtensions;Where;(System.Collections.Immutable.ImmutableArray,System.Func);summary;df-generated | | System.Linq;Lookup;Contains;(TKey);summary;df-generated | @@ -33736,7 +34846,6 @@ neutral | System.Net.Http.Headers;EntityTagHeaderValue;Parse;(System.String);summary;df-generated | | System.Net.Http.Headers;EntityTagHeaderValue;TryParse;(System.String,System.Net.Http.Headers.EntityTagHeaderValue);summary;df-generated | | System.Net.Http.Headers;EntityTagHeaderValue;get_Any;();summary;df-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;get_IsWeak;();summary;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;Dispose;();summary;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;MoveNext;();summary;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;Reset;();summary;df-generated | @@ -33748,7 +34857,6 @@ neutral | System.Net.Http.Headers;HttpHeaderValueCollection;Contains;(T);summary;df-generated | | System.Net.Http.Headers;HttpHeaderValueCollection;ParseAdd;(System.String);summary;df-generated | | System.Net.Http.Headers;HttpHeaderValueCollection;Remove;(T);summary;df-generated | -| System.Net.Http.Headers;HttpHeaderValueCollection;ToString;();summary;df-generated | | System.Net.Http.Headers;HttpHeaderValueCollection;TryParseAdd;(System.String);summary;df-generated | | System.Net.Http.Headers;HttpHeaderValueCollection;get_Count;();summary;df-generated | | System.Net.Http.Headers;HttpHeaderValueCollection;get_IsReadOnly;();summary;df-generated | @@ -33922,8 +35030,6 @@ neutral | System.Net.Http.Json;HttpContentJsonExtensions;ReadFromJsonAsync;(System.Net.Http.HttpContent,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Net.Http.Json;HttpContentJsonExtensions;ReadFromJsonAsync;(System.Net.Http.HttpContent,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);summary;df-generated | | System.Net.Http.Json;HttpContentJsonExtensions;ReadFromJsonAsync;(System.Net.Http.HttpContent,System.Threading.CancellationToken);summary;df-generated | -| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);summary;df-generated | -| System.Net.Http.Json;JsonContent;Create;(T,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Net.Http.Json;JsonContent;TryComputeLength;(System.Int64);summary;df-generated | | System.Net.Http.Json;JsonContent;get_ObjectType;();summary;df-generated | | System.Net.Http.Json;JsonContent;get_Value;();summary;df-generated | @@ -33988,6 +35094,10 @@ neutral | System.Net.Http;HttpContent;Dispose;(System.Boolean);summary;df-generated | | System.Net.Http;HttpContent;LoadIntoBufferAsync;();summary;df-generated | | System.Net.Http;HttpContent;LoadIntoBufferAsync;(System.Int64);summary;df-generated | +| System.Net.Http;HttpContent;LoadIntoBufferAsync;(System.Int64,System.Threading.CancellationToken);summary;df-generated | +| System.Net.Http;HttpContent;LoadIntoBufferAsync;(System.Threading.CancellationToken);summary;df-generated | +| System.Net.Http;HttpContent;ReadAsByteArrayAsync;();summary;df-generated | +| System.Net.Http;HttpContent;ReadAsByteArrayAsync;(System.Threading.CancellationToken);summary;df-generated | | System.Net.Http;HttpContent;ReadAsStringAsync;();summary;df-generated | | System.Net.Http;HttpContent;ReadAsStringAsync;(System.Threading.CancellationToken);summary;df-generated | | System.Net.Http;HttpContent;TryComputeLength;(System.Int64);summary;df-generated | @@ -34022,7 +35132,6 @@ neutral | System.Net.Http;HttpRequestException;HttpRequestException;(System.Net.Http.HttpRequestError,System.String,System.Exception,System.Nullable);summary;df-generated | | System.Net.Http;HttpRequestException;HttpRequestException;(System.String);summary;df-generated | | System.Net.Http;HttpRequestException;HttpRequestException;(System.String,System.Exception);summary;df-generated | -| System.Net.Http;HttpRequestException;HttpRequestException;(System.String,System.Exception,System.Nullable);summary;df-generated | | System.Net.Http;HttpRequestException;get_HttpRequestError;();summary;df-generated | | System.Net.Http;HttpRequestException;get_StatusCode;();summary;df-generated | | System.Net.Http;HttpRequestMessage;Dispose;();summary;df-generated | @@ -34041,7 +35150,6 @@ neutral | System.Net.Http;HttpRequestOptions;get_Item;(System.String);summary;df-generated | | System.Net.Http;HttpRequestOptions;get_Keys;();summary;df-generated | | System.Net.Http;HttpRequestOptions;get_Values;();summary;df-generated | -| System.Net.Http;HttpRequestOptionsKey;HttpRequestOptionsKey;(System.String);summary;df-generated | | System.Net.Http;HttpRequestOptionsKey;get_Key;();summary;df-generated | | System.Net.Http;HttpResponseMessage;Dispose;();summary;df-generated | | System.Net.Http;HttpResponseMessage;Dispose;(System.Boolean);summary;df-generated | @@ -34355,13 +35463,9 @@ neutral | System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress);summary;df-generated | | System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.Int32);summary;df-generated | | System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.Int32,System.Byte[]);summary;df-generated | -| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);summary;df-generated | -| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);summary;df-generated | | System.Net.NetworkInformation;Ping;Send;(System.String);summary;df-generated | | System.Net.NetworkInformation;Ping;Send;(System.String,System.Int32);summary;df-generated | | System.Net.NetworkInformation;Ping;Send;(System.String,System.Int32,System.Byte[]);summary;df-generated | -| System.Net.NetworkInformation;Ping;Send;(System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);summary;df-generated | -| System.Net.NetworkInformation;Ping;Send;(System.String,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);summary;df-generated | | System.Net.NetworkInformation;Ping;SendAsync;(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions,System.Object);summary;df-generated | | System.Net.NetworkInformation;Ping;SendAsync;(System.Net.IPAddress,System.Int32,System.Byte[],System.Object);summary;df-generated | | System.Net.NetworkInformation;Ping;SendAsync;(System.Net.IPAddress,System.Int32,System.Object);summary;df-generated | @@ -34443,8 +35547,6 @@ neutral | System.Net.PeerToPeer;PnrpPermissionAttribute;PnrpPermissionAttribute;(System.Security.Permissions.SecurityAction);summary;df-generated | | System.Net.Quic;QuicConnection;AcceptInboundStreamAsync;(System.Threading.CancellationToken);summary;df-generated | | System.Net.Quic;QuicConnection;CloseAsync;(System.Int64,System.Threading.CancellationToken);summary;df-generated | -| System.Net.Quic;QuicConnection;ConnectAsync;(System.Net.Quic.QuicClientConnectionOptions,System.Threading.CancellationToken);summary;df-generated | -| System.Net.Quic;QuicConnection;OpenOutboundStreamAsync;(System.Net.Quic.QuicStreamType,System.Threading.CancellationToken);summary;df-generated | | System.Net.Quic;QuicConnection;ToString;();summary;df-generated | | System.Net.Quic;QuicConnection;get_IsSupported;();summary;df-generated | | System.Net.Quic;QuicException;QuicException;(System.Net.Quic.QuicError,System.Nullable,System.String);summary;df-generated | @@ -34466,7 +35568,6 @@ neutral | System.Net.Quic;QuicStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.Net.Quic;QuicStream;SetLength;(System.Int64);summary;df-generated | | System.Net.Quic;QuicStream;ToString;();summary;df-generated | -| System.Net.Quic;QuicStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.Net.Quic;QuicStream;WriteAsync;(System.ReadOnlyMemory,System.Boolean,System.Threading.CancellationToken);summary;df-generated | | System.Net.Quic;QuicStream;WriteByte;(System.Byte);summary;df-generated | | System.Net.Quic;QuicStream;get_CanRead;();summary;df-generated | @@ -34487,9 +35588,11 @@ neutral | System.Net.Security;AuthenticatedStream;get_LeaveInnerStreamOpen;();summary;df-generated | | System.Net.Security;CipherSuitesPolicy;CipherSuitesPolicy;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Net.Security;CipherSuitesPolicy;get_AllowedCipherSuites;();summary;df-generated | +| System.Net.Security;NegotiateAuthentication;ComputeIntegrityCheck;(System.ReadOnlySpan,System.Buffers.IBufferWriter);summary;df-generated | | System.Net.Security;NegotiateAuthentication;Dispose;();summary;df-generated | | System.Net.Security;NegotiateAuthentication;Unwrap;(System.ReadOnlySpan,System.Buffers.IBufferWriter,System.Boolean);summary;df-generated | | System.Net.Security;NegotiateAuthentication;UnwrapInPlace;(System.Span,System.Int32,System.Int32,System.Boolean);summary;df-generated | +| System.Net.Security;NegotiateAuthentication;VerifyIntegrityCheck;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | | System.Net.Security;NegotiateAuthentication;Wrap;(System.ReadOnlySpan,System.Buffers.IBufferWriter,System.Boolean,System.Boolean);summary;df-generated | | System.Net.Security;NegotiateAuthentication;get_ImpersonationLevel;();summary;df-generated | | System.Net.Security;NegotiateAuthentication;get_IsAuthenticated;();summary;df-generated | @@ -34550,15 +35653,8 @@ neutral | System.Net.Security;SslApplicationProtocol;get_Protocol;();summary;df-generated | | System.Net.Security;SslApplicationProtocol;op_Equality;(System.Net.Security.SslApplicationProtocol,System.Net.Security.SslApplicationProtocol);summary;df-generated | | System.Net.Security;SslApplicationProtocol;op_Inequality;(System.Net.Security.SslApplicationProtocol,System.Net.Security.SslApplicationProtocol);summary;df-generated | -| System.Net.Security;SslClientHelloInfo;SslClientHelloInfo;(System.String,System.Security.Authentication.SslProtocols);summary;df-generated | | System.Net.Security;SslClientHelloInfo;get_ServerName;();summary;df-generated | | System.Net.Security;SslClientHelloInfo;get_SslProtocols;();summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClient;(System.String);summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String);summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);summary;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);summary;df-generated | | System.Net.Security;SslStream;AuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate);summary;df-generated | | System.Net.Security;SslStream;AuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean);summary;df-generated | | System.Net.Security;SslStream;AuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean);summary;df-generated | @@ -34566,9 +35662,6 @@ neutral | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Security.Cryptography.X509Certificates.X509Certificate);summary;df-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean);summary;df-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean);summary;df-generated | -| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);summary;df-generated | -| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);summary;df-generated | -| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);summary;df-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object);summary;df-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean,System.AsyncCallback,System.Object);summary;df-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);summary;df-generated | @@ -34578,6 +35671,7 @@ neutral | System.Net.Security;SslStream;EndRead;(System.IAsyncResult);summary;df-generated | | System.Net.Security;SslStream;EndWrite;(System.IAsyncResult);summary;df-generated | | System.Net.Security;SslStream;Flush;();summary;df-generated | +| System.Net.Security;SslStream;NegotiateClientCertificateAsync;(System.Threading.CancellationToken);summary;df-generated | | System.Net.Security;SslStream;ReadByte;();summary;df-generated | | System.Net.Security;SslStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.Net.Security;SslStream;SetLength;(System.Int64);summary;df-generated | @@ -34606,7 +35700,6 @@ neutral | System.Net.Security;SslStream;get_Length;();summary;df-generated | | System.Net.Security;SslStream;get_NegotiatedCipherSuite;();summary;df-generated | | System.Net.Security;SslStream;get_SslProtocol;();summary;df-generated | -| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean);summary;df-generated | | System.Net.Security;SslStreamCertificateContext;get_IntermediateCertificates;();summary;df-generated | | System.Net.Security;SslStreamCertificateContext;get_TargetCertificate;();summary;df-generated | | System.Net.Sockets;IPPacketInformation;Equals;(System.Net.Sockets.IPPacketInformation);summary;df-generated | @@ -34630,7 +35723,6 @@ neutral | System.Net.Sockets;NetworkStream;ReadByte;();summary;df-generated | | System.Net.Sockets;NetworkStream;Seek;(System.Int64,System.IO.SeekOrigin);summary;df-generated | | System.Net.Sockets;NetworkStream;SetLength;(System.Int64);summary;df-generated | -| System.Net.Sockets;NetworkStream;Write;(System.ReadOnlySpan);summary;df-generated | | System.Net.Sockets;NetworkStream;WriteByte;(System.Byte);summary;df-generated | | System.Net.Sockets;NetworkStream;get_CanRead;();summary;df-generated | | System.Net.Sockets;NetworkStream;get_CanSeek;();summary;df-generated | @@ -34643,17 +35735,13 @@ neutral | System.Net.Sockets;SafeSocketHandle;get_IsInvalid;();summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.Byte[]);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.Byte[],System.Int32,System.Int32);summary;df-generated | -| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.Byte[],System.Int32,System.Int32,System.Boolean);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.IO.FileStream);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.IO.FileStream,System.Int64,System.Int32);summary;df-generated | -| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.IO.FileStream,System.Int64,System.Int32,System.Boolean);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.ReadOnlyMemory);summary;df-generated | -| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.ReadOnlyMemory,System.Boolean);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int32,System.Int32);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int32,System.Int32,System.Boolean);summary;df-generated | | System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int64,System.Int32);summary;df-generated | -| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int64,System.Int32,System.Boolean);summary;df-generated | | System.Net.Sockets;SendPacketsElement;get_Offset;();summary;df-generated | | System.Net.Sockets;Socket;AcceptAsync;();summary;df-generated | | System.Net.Sockets;Socket;AcceptAsync;(System.Net.Sockets.Socket);summary;df-generated | @@ -34877,11 +35965,13 @@ neutral | System.Net.Sockets;UdpClient;Dispose;(System.Boolean);summary;df-generated | | System.Net.Sockets;UdpClient;DropMulticastGroup;(System.Net.IPAddress);summary;df-generated | | System.Net.Sockets;UdpClient;DropMulticastGroup;(System.Net.IPAddress,System.Int32);summary;df-generated | +| System.Net.Sockets;UdpClient;EndReceive;(System.IAsyncResult,System.Net.IPEndPoint);summary;df-generated | | System.Net.Sockets;UdpClient;EndSend;(System.IAsyncResult);summary;df-generated | | System.Net.Sockets;UdpClient;JoinMulticastGroup;(System.Int32,System.Net.IPAddress);summary;df-generated | | System.Net.Sockets;UdpClient;JoinMulticastGroup;(System.Net.IPAddress);summary;df-generated | | System.Net.Sockets;UdpClient;JoinMulticastGroup;(System.Net.IPAddress,System.Int32);summary;df-generated | | System.Net.Sockets;UdpClient;JoinMulticastGroup;(System.Net.IPAddress,System.Net.IPAddress);summary;df-generated | +| System.Net.Sockets;UdpClient;Receive;(System.Net.IPEndPoint);summary;df-generated | | System.Net.Sockets;UdpClient;ReceiveAsync;();summary;df-generated | | System.Net.Sockets;UdpClient;ReceiveAsync;(System.Threading.CancellationToken);summary;df-generated | | System.Net.Sockets;UdpClient;Send;(System.Byte[],System.Int32);summary;df-generated | @@ -34969,7 +36059,11 @@ neutral | System.Net.WebSockets;WebSocketException;get_ErrorCode;();summary;df-generated | | System.Net.WebSockets;WebSocketException;get_WebSocketErrorCode;();summary;df-generated | | System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean);summary;df-generated | -| System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String);summary;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;get_CloseStatus;();summary;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;get_CloseStatusDescription;();summary;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;get_Count;();summary;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;get_EndOfMessage;();summary;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;get_MessageType;();summary;df-generated | | System.Net;AuthenticationManager;Authenticate;(System.String,System.Net.WebRequest,System.Net.ICredentials);summary;df-generated | | System.Net;AuthenticationManager;PreAuthenticate;(System.Net.WebRequest,System.Net.ICredentials);summary;df-generated | | System.Net;AuthenticationManager;Register;(System.Net.IAuthenticationModule);summary;df-generated | @@ -35024,16 +36118,12 @@ neutral | System.Net;Dns;GetHostAddressesAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | | System.Net;Dns;GetHostByAddress;(System.Net.IPAddress);summary;df-generated | | System.Net;Dns;GetHostByAddress;(System.String);summary;df-generated | -| System.Net;Dns;GetHostByName;(System.String);summary;df-generated | | System.Net;Dns;GetHostEntry;(System.Net.IPAddress);summary;df-generated | -| System.Net;Dns;GetHostEntry;(System.String);summary;df-generated | -| System.Net;Dns;GetHostEntry;(System.String,System.Net.Sockets.AddressFamily);summary;df-generated | | System.Net;Dns;GetHostEntryAsync;(System.Net.IPAddress);summary;df-generated | | System.Net;Dns;GetHostEntryAsync;(System.String);summary;df-generated | | System.Net;Dns;GetHostEntryAsync;(System.String,System.Net.Sockets.AddressFamily,System.Threading.CancellationToken);summary;df-generated | | System.Net;Dns;GetHostEntryAsync;(System.String,System.Threading.CancellationToken);summary;df-generated | | System.Net;Dns;GetHostName;();summary;df-generated | -| System.Net;Dns;Resolve;(System.String);summary;df-generated | | System.Net;DnsEndPoint;DnsEndPoint;(System.String,System.Int32);summary;df-generated | | System.Net;DnsEndPoint;Equals;(System.Object);summary;df-generated | | System.Net;DnsEndPoint;GetHashCode;();summary;df-generated | @@ -35080,8 +36170,6 @@ neutral | System.Net;HttpListener;Abort;();summary;df-generated | | System.Net;HttpListener;Close;();summary;df-generated | | System.Net;HttpListener;Dispose;();summary;df-generated | -| System.Net;HttpListener;EndGetContext;(System.IAsyncResult);summary;df-generated | -| System.Net;HttpListener;GetContext;();summary;df-generated | | System.Net;HttpListener;GetContextAsync;();summary;df-generated | | System.Net;HttpListener;Start;();summary;df-generated | | System.Net;HttpListener;Stop;();summary;df-generated | @@ -35116,6 +36204,7 @@ neutral | System.Net;HttpListenerRequest;get_QueryString;();summary;df-generated | | System.Net;HttpListenerRequest;get_RemoteEndPoint;();summary;df-generated | | System.Net;HttpListenerRequest;get_RequestTraceIdentifier;();summary;df-generated | +| System.Net;HttpListenerRequest;get_ServiceName;();summary;df-generated | | System.Net;HttpListenerRequest;get_TransportContext;();summary;df-generated | | System.Net;HttpListenerRequest;get_UrlReferrer;();summary;df-generated | | System.Net;HttpListenerRequest;get_UserHostAddress;();summary;df-generated | @@ -35406,7 +36495,6 @@ neutral | System.Net;WebProxy;WebProxy;(System.Uri);summary;df-generated | | System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean);summary;df-generated | | System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[]);summary;df-generated | -| System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[],System.Net.ICredentials);summary;df-generated | | System.Net;WebProxy;get_BypassArrayList;();summary;df-generated | | System.Net;WebRequest;Abort;();summary;df-generated | | System.Net;WebRequest;BeginGetRequestStream;(System.AsyncCallback,System.Object);summary;df-generated | @@ -35485,6 +36573,7 @@ neutral | System.Numerics;BigInteger;MinMagnitudeNumber;(System.Numerics.BigInteger,System.Numerics.BigInteger);summary;df-generated | | System.Numerics;BigInteger;ModPow;(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger);summary;df-generated | | System.Numerics;BigInteger;Multiply;(System.Numerics.BigInteger,System.Numerics.BigInteger);summary;df-generated | +| System.Numerics;BigInteger;MultiplyAddEstimate;(System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger);summary;df-generated | | System.Numerics;BigInteger;Negate;(System.Numerics.BigInteger);summary;df-generated | | System.Numerics;BigInteger;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System.Numerics;BigInteger;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | @@ -35660,6 +36749,7 @@ neutral | System.Numerics;Complex;Multiply;(System.Double,System.Numerics.Complex);summary;df-generated | | System.Numerics;Complex;Multiply;(System.Numerics.Complex,System.Double);summary;df-generated | | System.Numerics;Complex;Multiply;(System.Numerics.Complex,System.Numerics.Complex);summary;df-generated | +| System.Numerics;Complex;MultiplyAddEstimate;(System.Numerics.Complex,System.Numerics.Complex,System.Numerics.Complex);summary;df-generated | | System.Numerics;Complex;Negate;(System.Numerics.Complex);summary;df-generated | | System.Numerics;Complex;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System.Numerics;Complex;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | @@ -36015,6 +37105,8 @@ neutral | System.Numerics;Plane;Equals;(System.Numerics.Plane);summary;df-generated | | System.Numerics;Plane;Equals;(System.Object);summary;df-generated | | System.Numerics;Plane;GetHashCode;();summary;df-generated | +| System.Numerics;Plane;Normalize;(System.Numerics.Plane);summary;df-generated | +| System.Numerics;Plane;Plane;(System.Numerics.Vector3,System.Single);summary;df-generated | | System.Numerics;Plane;Plane;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Plane;Plane;(System.Single,System.Single,System.Single,System.Single);summary;df-generated | | System.Numerics;Plane;Transform;(System.Numerics.Plane,System.Numerics.Matrix4x4);summary;df-generated | @@ -36067,9 +37159,16 @@ neutral | System.Numerics;Vector2;Abs;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Add;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Clamp;(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;ClampNative;(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;CopySign;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;CopyTo;(System.Single[]);summary;df-generated | | System.Numerics;Vector2;CopyTo;(System.Single[],System.Int32);summary;df-generated | | System.Numerics;Vector2;CopyTo;(System.Span);summary;df-generated | +| System.Numerics;Vector2;Cos;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Numerics;Vector2;Create;(System.Single);summary;df-generated | +| System.Numerics;Vector2;Create;(System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector2;DegreesToRadians;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Distance;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;DistanceSquared;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Divide;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | @@ -36077,18 +37176,38 @@ neutral | System.Numerics;Vector2;Dot;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Equals;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Equals;(System.Object);summary;df-generated | +| System.Numerics;Vector2;Exp;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;FusedMultiplyAdd;(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;GetHashCode;();summary;df-generated | +| System.Numerics;Vector2;Hypot;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Length;();summary;df-generated | | System.Numerics;Vector2;LengthSquared;();summary;df-generated | +| System.Numerics;Vector2;Lerp;(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Lerp;(System.Numerics.Vector2,System.Numerics.Vector2,System.Single);summary;df-generated | +| System.Numerics;Vector2;Log2;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;Log;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Max;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MaxMagnitude;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MaxMagnitudeNumber;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MaxNative;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MaxNumber;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Min;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MinMagnitude;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MinMagnitudeNumber;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MinNative;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MinNumber;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Multiply;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Multiply;(System.Numerics.Vector2,System.Single);summary;df-generated | | System.Numerics;Vector2;Multiply;(System.Single,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;MultiplyAddEstimate;(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Negate;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Normalize;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;RadiansToDegrees;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Reflect;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;Round;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;Round;(System.Numerics.Vector2,System.MidpointRounding);summary;df-generated | +| System.Numerics;Vector2;Sin;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector2;SinCos;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;SquareRoot;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;Subtract;(System.Numerics.Vector2,System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;ToString;();summary;df-generated | @@ -36098,12 +37217,21 @@ neutral | System.Numerics;Vector2;Transform;(System.Numerics.Vector2,System.Numerics.Quaternion);summary;df-generated | | System.Numerics;Vector2;TransformNormal;(System.Numerics.Vector2,System.Numerics.Matrix3x2);summary;df-generated | | System.Numerics;Vector2;TransformNormal;(System.Numerics.Vector2,System.Numerics.Matrix4x4);summary;df-generated | +| System.Numerics;Vector2;Truncate;(System.Numerics.Vector2);summary;df-generated | | System.Numerics;Vector2;TryCopyTo;(System.Span);summary;df-generated | | System.Numerics;Vector2;Vector2;(System.ReadOnlySpan);summary;df-generated | | System.Numerics;Vector2;Vector2;(System.Single);summary;df-generated | | System.Numerics;Vector2;Vector2;(System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector2;get_E;();summary;df-generated | +| System.Numerics;Vector2;get_Epsilon;();summary;df-generated | | System.Numerics;Vector2;get_Item;(System.Int32);summary;df-generated | +| System.Numerics;Vector2;get_NaN;();summary;df-generated | +| System.Numerics;Vector2;get_NegativeInfinity;();summary;df-generated | +| System.Numerics;Vector2;get_NegativeZero;();summary;df-generated | | System.Numerics;Vector2;get_One;();summary;df-generated | +| System.Numerics;Vector2;get_Pi;();summary;df-generated | +| System.Numerics;Vector2;get_PositiveInfinity;();summary;df-generated | +| System.Numerics;Vector2;get_Tau;();summary;df-generated | | System.Numerics;Vector2;get_UnitX;();summary;df-generated | | System.Numerics;Vector2;get_UnitY;();summary;df-generated | | System.Numerics;Vector2;get_Zero;();summary;df-generated | @@ -36121,10 +37249,18 @@ neutral | System.Numerics;Vector3;Abs;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Add;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Clamp;(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;ClampNative;(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;CopySign;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;CopyTo;(System.Single[]);summary;df-generated | | System.Numerics;Vector3;CopyTo;(System.Single[],System.Int32);summary;df-generated | | System.Numerics;Vector3;CopyTo;(System.Span);summary;df-generated | +| System.Numerics;Vector3;Cos;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;Create;(System.Numerics.Vector2,System.Single);summary;df-generated | +| System.Numerics;Vector3;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Numerics;Vector3;Create;(System.Single);summary;df-generated | +| System.Numerics;Vector3;Create;(System.Single,System.Single,System.Single);summary;df-generated | | System.Numerics;Vector3;Cross;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;DegreesToRadians;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Distance;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;DistanceSquared;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Divide;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | @@ -36132,18 +37268,38 @@ neutral | System.Numerics;Vector3;Dot;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Equals;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Equals;(System.Object);summary;df-generated | +| System.Numerics;Vector3;Exp;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;FusedMultiplyAdd;(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;GetHashCode;();summary;df-generated | +| System.Numerics;Vector3;Hypot;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Length;();summary;df-generated | | System.Numerics;Vector3;LengthSquared;();summary;df-generated | +| System.Numerics;Vector3;Lerp;(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Lerp;(System.Numerics.Vector3,System.Numerics.Vector3,System.Single);summary;df-generated | +| System.Numerics;Vector3;Log2;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;Log;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Max;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MaxMagnitude;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MaxMagnitudeNumber;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MaxNative;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MaxNumber;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Min;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MinMagnitude;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MinMagnitudeNumber;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MinNative;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MinNumber;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Multiply;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Multiply;(System.Numerics.Vector3,System.Single);summary;df-generated | | System.Numerics;Vector3;Multiply;(System.Single,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;MultiplyAddEstimate;(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Negate;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Normalize;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;RadiansToDegrees;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Reflect;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;Round;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;Round;(System.Numerics.Vector3,System.MidpointRounding);summary;df-generated | +| System.Numerics;Vector3;Sin;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector3;SinCos;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;SquareRoot;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;Subtract;(System.Numerics.Vector3,System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;ToString;();summary;df-generated | @@ -36151,13 +37307,22 @@ neutral | System.Numerics;Vector3;Transform;(System.Numerics.Vector3,System.Numerics.Matrix4x4);summary;df-generated | | System.Numerics;Vector3;Transform;(System.Numerics.Vector3,System.Numerics.Quaternion);summary;df-generated | | System.Numerics;Vector3;TransformNormal;(System.Numerics.Vector3,System.Numerics.Matrix4x4);summary;df-generated | +| System.Numerics;Vector3;Truncate;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector3;TryCopyTo;(System.Span);summary;df-generated | | System.Numerics;Vector3;Vector3;(System.Numerics.Vector2,System.Single);summary;df-generated | | System.Numerics;Vector3;Vector3;(System.ReadOnlySpan);summary;df-generated | | System.Numerics;Vector3;Vector3;(System.Single);summary;df-generated | | System.Numerics;Vector3;Vector3;(System.Single,System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector3;get_E;();summary;df-generated | +| System.Numerics;Vector3;get_Epsilon;();summary;df-generated | | System.Numerics;Vector3;get_Item;(System.Int32);summary;df-generated | +| System.Numerics;Vector3;get_NaN;();summary;df-generated | +| System.Numerics;Vector3;get_NegativeInfinity;();summary;df-generated | +| System.Numerics;Vector3;get_NegativeZero;();summary;df-generated | | System.Numerics;Vector3;get_One;();summary;df-generated | +| System.Numerics;Vector3;get_Pi;();summary;df-generated | +| System.Numerics;Vector3;get_PositiveInfinity;();summary;df-generated | +| System.Numerics;Vector3;get_Tau;();summary;df-generated | | System.Numerics;Vector3;get_UnitX;();summary;df-generated | | System.Numerics;Vector3;get_UnitY;();summary;df-generated | | System.Numerics;Vector3;get_UnitZ;();summary;df-generated | @@ -36176,9 +37341,18 @@ neutral | System.Numerics;Vector4;Abs;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Add;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Clamp;(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;ClampNative;(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;CopySign;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;CopyTo;(System.Single[]);summary;df-generated | | System.Numerics;Vector4;CopyTo;(System.Single[],System.Int32);summary;df-generated | | System.Numerics;Vector4;CopyTo;(System.Span);summary;df-generated | +| System.Numerics;Vector4;Cos;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;Create;(System.Numerics.Vector2,System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector4;Create;(System.Numerics.Vector3,System.Single);summary;df-generated | +| System.Numerics;Vector4;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Numerics;Vector4;Create;(System.Single);summary;df-generated | +| System.Numerics;Vector4;Create;(System.Single,System.Single,System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector4;DegreesToRadians;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Distance;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;DistanceSquared;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Divide;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | @@ -36186,17 +37360,37 @@ neutral | System.Numerics;Vector4;Dot;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Equals;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Equals;(System.Object);summary;df-generated | +| System.Numerics;Vector4;Exp;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;FusedMultiplyAdd;(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;GetHashCode;();summary;df-generated | +| System.Numerics;Vector4;Hypot;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Length;();summary;df-generated | | System.Numerics;Vector4;LengthSquared;();summary;df-generated | +| System.Numerics;Vector4;Lerp;(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Lerp;(System.Numerics.Vector4,System.Numerics.Vector4,System.Single);summary;df-generated | +| System.Numerics;Vector4;Log2;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;Log;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Max;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MaxMagnitude;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MaxMagnitudeNumber;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MaxNative;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MaxNumber;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Min;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MinMagnitude;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MinMagnitudeNumber;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MinNative;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MinNumber;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Multiply;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Multiply;(System.Numerics.Vector4,System.Single);summary;df-generated | | System.Numerics;Vector4;Multiply;(System.Single,System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;MultiplyAddEstimate;(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Negate;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Normalize;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;RadiansToDegrees;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;Round;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;Round;(System.Numerics.Vector4,System.MidpointRounding);summary;df-generated | +| System.Numerics;Vector4;Sin;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector4;SinCos;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;SquareRoot;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;Subtract;(System.Numerics.Vector4,System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;ToString;();summary;df-generated | @@ -36207,14 +37401,23 @@ neutral | System.Numerics;Vector4;Transform;(System.Numerics.Vector3,System.Numerics.Quaternion);summary;df-generated | | System.Numerics;Vector4;Transform;(System.Numerics.Vector4,System.Numerics.Matrix4x4);summary;df-generated | | System.Numerics;Vector4;Transform;(System.Numerics.Vector4,System.Numerics.Quaternion);summary;df-generated | +| System.Numerics;Vector4;Truncate;(System.Numerics.Vector4);summary;df-generated | | System.Numerics;Vector4;TryCopyTo;(System.Span);summary;df-generated | | System.Numerics;Vector4;Vector4;(System.Numerics.Vector2,System.Single,System.Single);summary;df-generated | | System.Numerics;Vector4;Vector4;(System.Numerics.Vector3,System.Single);summary;df-generated | | System.Numerics;Vector4;Vector4;(System.ReadOnlySpan);summary;df-generated | | System.Numerics;Vector4;Vector4;(System.Single);summary;df-generated | | System.Numerics;Vector4;Vector4;(System.Single,System.Single,System.Single,System.Single);summary;df-generated | +| System.Numerics;Vector4;get_E;();summary;df-generated | +| System.Numerics;Vector4;get_Epsilon;();summary;df-generated | | System.Numerics;Vector4;get_Item;(System.Int32);summary;df-generated | +| System.Numerics;Vector4;get_NaN;();summary;df-generated | +| System.Numerics;Vector4;get_NegativeInfinity;();summary;df-generated | +| System.Numerics;Vector4;get_NegativeZero;();summary;df-generated | | System.Numerics;Vector4;get_One;();summary;df-generated | +| System.Numerics;Vector4;get_Pi;();summary;df-generated | +| System.Numerics;Vector4;get_PositiveInfinity;();summary;df-generated | +| System.Numerics;Vector4;get_Tau;();summary;df-generated | | System.Numerics;Vector4;get_UnitW;();summary;df-generated | | System.Numerics;Vector4;get_UnitX;();summary;df-generated | | System.Numerics;Vector4;get_UnitY;();summary;df-generated | @@ -36234,6 +37437,16 @@ neutral | System.Numerics;Vector;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;AndNot;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;As;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;AsPlane;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector;AsQuaternion;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector;AsVector2;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector;AsVector3;(System.Numerics.Vector4);summary;df-generated | +| System.Numerics;Vector;AsVector4;(System.Numerics.Plane);summary;df-generated | +| System.Numerics;Vector;AsVector4;(System.Numerics.Quaternion);summary;df-generated | +| System.Numerics;Vector;AsVector4;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector;AsVector4;(System.Numerics.Vector3);summary;df-generated | +| System.Numerics;Vector;AsVector4Unsafe;(System.Numerics.Vector2);summary;df-generated | +| System.Numerics;Vector;AsVector4Unsafe;(System.Numerics.Vector3);summary;df-generated | | System.Numerics;Vector;AsVectorByte;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;AsVectorDouble;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;AsVectorInt16;(System.Numerics.Vector);summary;df-generated | @@ -36250,17 +37463,30 @@ neutral | System.Numerics;Vector;BitwiseOr;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Ceiling;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Ceiling;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Clamp;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;ClampNative;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToInt32;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;ConvertToInt32Native;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToInt64;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;ConvertToInt64Native;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToUInt32;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;ConvertToUInt32Native;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ConvertToUInt64;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;ConvertToUInt64Native;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Cos;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Cos;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Numerics;Vector;Create;(T);summary;df-generated | +| System.Numerics;Vector;CreateSequence;(T,T);summary;df-generated | +| System.Numerics;Vector;DegreesToRadians;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;DegreesToRadians;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Divide;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Divide;(System.Numerics.Vector,T);summary;df-generated | | System.Numerics;Vector;Dot;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | @@ -36271,8 +37497,12 @@ neutral | System.Numerics;Vector;Equals;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;EqualsAll;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;EqualsAny;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Exp;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Exp;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Floor;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Floor;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;FusedMultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;FusedMultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;GetElement;(System.Numerics.Vector,System.Int32);summary;df-generated | | System.Numerics;Vector;GreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;GreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | @@ -36288,6 +37518,15 @@ neutral | System.Numerics;Vector;GreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;GreaterThanOrEqualAll;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;GreaterThanOrEqualAny;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Hypot;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Hypot;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;IsNaN;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;IsNegative;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;IsPositive;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;IsPositiveInfinity;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;IsZero;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Lerp;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Lerp;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;LessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;LessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;LessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | @@ -36307,11 +37546,25 @@ neutral | System.Numerics;Vector;LoadAlignedNonTemporal;(T*);summary;df-generated | | System.Numerics;Vector;LoadUnsafe;(T);summary;df-generated | | System.Numerics;Vector;LoadUnsafe;(T,System.UIntPtr);summary;df-generated | +| System.Numerics;Vector;Log2;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Log2;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Log;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Log;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MaxMagnitude;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MaxMagnitudeNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MaxNative;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MaxNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MinMagnitude;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MinMagnitudeNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MinNative;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MinNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Multiply;(System.Numerics.Vector,T);summary;df-generated | | System.Numerics;Vector;Multiply;(T,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MultiplyAddEstimate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;MultiplyAddEstimate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Narrow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Narrow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Narrow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | @@ -36321,6 +37574,8 @@ neutral | System.Numerics;Vector;Narrow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Negate;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;OnesComplement;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;RadiansToDegrees;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;RadiansToDegrees;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;ShiftLeft;(System.Numerics.Vector,System.Int32);summary;df-generated | | System.Numerics;Vector;ShiftLeft;(System.Numerics.Vector,System.Int32);summary;df-generated | | System.Numerics;Vector;ShiftLeft;(System.Numerics.Vector,System.Int32);summary;df-generated | @@ -36346,6 +37601,10 @@ neutral | System.Numerics;Vector;ShiftRightLogical;(System.Numerics.Vector,System.Int32);summary;df-generated | | System.Numerics;Vector;ShiftRightLogical;(System.Numerics.Vector,System.Int32);summary;df-generated | | System.Numerics;Vector;ShiftRightLogical;(System.Numerics.Vector,System.Int32);summary;df-generated | +| System.Numerics;Vector;Sin;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;Sin;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;SinCos;(System.Numerics.Vector);summary;df-generated | +| System.Numerics;Vector;SinCos;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;SquareRoot;(System.Numerics.Vector);summary;df-generated | | System.Numerics;Vector;Store;(System.Numerics.Vector,T*);summary;df-generated | | System.Numerics;Vector;StoreAligned;(System.Numerics.Vector,T*);summary;df-generated | @@ -36396,6 +37655,7 @@ neutral | System.Numerics;Vector;Vector;(T[],System.Int32);summary;df-generated | | System.Numerics;Vector;get_AllBitsSet;();summary;df-generated | | System.Numerics;Vector;get_Count;();summary;df-generated | +| System.Numerics;Vector;get_Indices;();summary;df-generated | | System.Numerics;Vector;get_IsSupported;();summary;df-generated | | System.Numerics;Vector;get_Item;(System.Int32);summary;df-generated | | System.Numerics;Vector;get_One;();summary;df-generated | @@ -36496,7 +37756,6 @@ neutral | System.Reflection.Emit;EnumBuilder;GetEvents;();summary;df-generated | | System.Reflection.Emit;EnumBuilder;GetEvents;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;EnumBuilder;GetFields;(System.Reflection.BindingFlags);summary;df-generated | -| System.Reflection.Emit;EnumBuilder;GetInterfaceMap;(System.Type);summary;df-generated | | System.Reflection.Emit;EnumBuilder;GetMember;(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;EnumBuilder;GetMembers;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;EnumBuilder;GetMethods;(System.Reflection.BindingFlags);summary;df-generated | @@ -36547,7 +37806,6 @@ neutral | System.Reflection.Emit;GenericTypeParameterBuilder;GetEvents;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetFields;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetHashCode;();summary;df-generated | -| System.Reflection.Emit;GenericTypeParameterBuilder;GetInterfaceMap;(System.Type);summary;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetMember;(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetMembers;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;GenericTypeParameterBuilder;GetMethods;(System.Reflection.BindingFlags);summary;df-generated | @@ -36618,6 +37876,8 @@ neutral | System.Reflection.Emit;ILGenerator;EndExceptionBlock;();summary;df-generated | | System.Reflection.Emit;ILGenerator;EndScope;();summary;df-generated | | System.Reflection.Emit;ILGenerator;MarkLabel;(System.Reflection.Emit.Label);summary;df-generated | +| System.Reflection.Emit;ILGenerator;MarkSequencePoint;(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Int32,System.Int32);summary;df-generated | +| System.Reflection.Emit;ILGenerator;MarkSequencePointCore;(System.Diagnostics.SymbolStore.ISymbolDocumentWriter,System.Int32,System.Int32,System.Int32,System.Int32);summary;df-generated | | System.Reflection.Emit;ILGenerator;ThrowException;(System.Type);summary;df-generated | | System.Reflection.Emit;ILGenerator;UsingNamespace;(System.String);summary;df-generated | | System.Reflection.Emit;ILGenerator;get_ILOffset;();summary;df-generated | @@ -36627,6 +37887,7 @@ neutral | System.Reflection.Emit;Label;get_Id;();summary;df-generated | | System.Reflection.Emit;Label;op_Equality;(System.Reflection.Emit.Label,System.Reflection.Emit.Label);summary;df-generated | | System.Reflection.Emit;Label;op_Inequality;(System.Reflection.Emit.Label,System.Reflection.Emit.Label);summary;df-generated | +| System.Reflection.Emit;LocalBuilder;SetLocalSymInfo;(System.String);summary;df-generated | | System.Reflection.Emit;LocalBuilder;get_IsPinned;();summary;df-generated | | System.Reflection.Emit;LocalBuilder;get_LocalIndex;();summary;df-generated | | System.Reflection.Emit;MethodBuilder;DefineGenericParameters;(System.String[]);summary;df-generated | @@ -36714,6 +37975,8 @@ neutral | System.Reflection.Emit;ParameterBuilder;get_IsOut;();summary;df-generated | | System.Reflection.Emit;ParameterBuilder;get_Position;();summary;df-generated | | System.Reflection.Emit;PersistedAssemblyBuilder;GetName;(System.Boolean);summary;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;Save;(System.IO.Stream);summary;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;Save;(System.String);summary;df-generated | | System.Reflection.Emit;PersistedAssemblyBuilder;SetCustomAttributeCore;(System.Reflection.ConstructorInfo,System.ReadOnlySpan);summary;df-generated | | System.Reflection.Emit;PropertyBuilder;AddOtherMethod;(System.Reflection.Emit.MethodBuilder);summary;df-generated | | System.Reflection.Emit;PropertyBuilder;GetCustomAttributes;(System.Boolean);summary;df-generated | @@ -36779,7 +38042,6 @@ neutral | System.Reflection.Emit;TypeBuilder;DefineProperty;(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[]);summary;df-generated | | System.Reflection.Emit;TypeBuilder;DefineProperty;(System.String,System.Reflection.PropertyAttributes,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);summary;df-generated | | System.Reflection.Emit;TypeBuilder;DefineTypeInitializer;();summary;df-generated | -| System.Reflection.Emit;TypeBuilder;DefineTypeInitializerCore;();summary;df-generated | | System.Reflection.Emit;TypeBuilder;DefineUninitializedData;(System.String,System.Int32,System.Reflection.FieldAttributes);summary;df-generated | | System.Reflection.Emit;TypeBuilder;DefineUninitializedDataCore;(System.String,System.Int32,System.Reflection.FieldAttributes);summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetAttributeFlagsImpl;();summary;df-generated | @@ -36789,7 +38051,6 @@ neutral | System.Reflection.Emit;TypeBuilder;GetEvents;();summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetEvents;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetFields;(System.Reflection.BindingFlags);summary;df-generated | -| System.Reflection.Emit;TypeBuilder;GetInterfaceMap;(System.Type);summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetMember;(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetMembers;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection.Emit;TypeBuilder;GetMethods;(System.Reflection.BindingFlags);summary;df-generated | @@ -36830,10 +38091,8 @@ neutral | System.Reflection.Emit;TypeBuilder;get_PackingSizeCore;();summary;df-generated | | System.Reflection.Emit;TypeBuilder;get_Size;();summary;df-generated | | System.Reflection.Emit;TypeBuilder;get_SizeCore;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;ArrayShapeEncoder;ArrayShapeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;ArrayShapeEncoder;Shape;(System.Int32,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray);summary;df-generated | | System.Reflection.Metadata.Ecma335;ArrayShapeEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;BlobEncoder;BlobEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Action,System.Action);summary;df-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder,System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder);summary;df-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;Field;();summary;df-generated | @@ -36866,14 +38125,12 @@ neutral | System.Reflection.Metadata.Ecma335;ControlFlowBuilder;AddFilterRegion;(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;ControlFlowBuilder;AddFinallyRegion;(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;ControlFlowBuilder;Clear;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;CustomAttributeArrayTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;ElementType;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;ObjectArray;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Boolean;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Byte;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Char;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;CustomAttributeElementTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Double;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Enum;(System.String);summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;Int16;();summary;df-generated | @@ -36889,11 +38146,8 @@ neutral | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;UInt64;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeNamedArgumentsEncoder;Count;(System.Int32);summary;df-generated | -| System.Reflection.Metadata.Ecma335;CustomAttributeNamedArgumentsEncoder;CustomAttributeNamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomAttributeNamedArgumentsEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;CustomModifiersEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;EditAndContinueLogEntry;(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.Ecma335.EditAndContinueOperation);summary;df-generated | | System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;Equals;(System.Object);summary;df-generated | | System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;Equals;(System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry);summary;df-generated | | System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;GetHashCode;();summary;df-generated | @@ -36905,15 +38159,12 @@ neutral | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;get_HasSmallFormat;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ExportedTypeExtensions;GetTypeDefinitionId;(System.Reflection.Metadata.ExportedType);summary;df-generated | | System.Reflection.Metadata.Ecma335;FieldTypeEncoder;CustomModifiers;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;FieldTypeEncoder;FieldTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;FieldTypeEncoder;Type;(System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;FieldTypeEncoder;TypedReference;();summary;df-generated | | System.Reflection.Metadata.Ecma335;FieldTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;FixedArgumentsEncoder;AddArgument;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;FixedArgumentsEncoder;FixedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;FixedArgumentsEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;GenericTypeArgumentsEncoder;AddArgument;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;GenericTypeArgumentsEncoder;GenericTypeArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;GenericTypeArgumentsEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;Branch;(System.Reflection.Metadata.ILOpCode,System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;Call;(System.Reflection.Metadata.EntityHandle);summary;df-generated | @@ -36922,7 +38173,6 @@ neutral | System.Reflection.Metadata.Ecma335;InstructionEncoder;Call;(System.Reflection.Metadata.MethodSpecificationHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;CallIndirect;(System.Reflection.Metadata.StandaloneSignatureHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;DefineLabel;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;InstructionEncoder;InstructionEncoder;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;LoadArgument;(System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;LoadArgumentAddress;(System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;LoadConstantI4;(System.Int32);summary;df-generated | @@ -36948,7 +38198,6 @@ neutral | System.Reflection.Metadata.Ecma335;LabelHandle;get_IsNil;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LabelHandle;op_Equality;(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;LabelHandle;op_Inequality;(System.Reflection.Metadata.Ecma335.LabelHandle,System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | -| System.Reflection.Metadata.Ecma335;LiteralEncoder;LiteralEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;Scalar;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Action,System.Action);summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Reflection.Metadata.Ecma335.CustomAttributeElementTypeEncoder,System.Reflection.Metadata.Ecma335.ScalarEncoder);summary;df-generated | @@ -36957,15 +38206,12 @@ neutral | System.Reflection.Metadata.Ecma335;LiteralEncoder;Vector;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralsEncoder;AddLiteral;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;LiteralsEncoder;LiteralsEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;LiteralsEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;CustomModifiers;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;LocalVariableTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;Type;(System.Boolean,System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;TypedReference;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariablesEncoder;AddVariable;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;LocalVariablesEncoder;LocalVariablesEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;LocalVariablesEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataAggregator;GetGenerationHandle;(System.Reflection.Metadata.Handle,System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataAggregator;MetadataAggregator;(System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList,System.Collections.Generic.IReadOnlyList);summary;df-generated | @@ -37025,8 +38271,6 @@ neutral | System.Reflection.Metadata.Ecma335;MetadataBuilder;GetRowCount;(System.Reflection.Metadata.Ecma335.TableIndex);summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;GetRowCounts;();summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;MetadataBuilder;(System.Int32,System.Int32,System.Int32,System.Int32);summary;df-generated | -| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveGuid;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveUserString;(System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;SetCapacity;(System.Reflection.Metadata.Ecma335.HeapIndex,System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;SetCapacity;(System.Reflection.Metadata.Ecma335.TableIndex,System.Int32);summary;df-generated | | System.Reflection.Metadata.Ecma335;MetadataReaderExtensions;GetEditAndContinueLogEntries;(System.Reflection.Metadata.MetadataReader);summary;df-generated | @@ -37105,54 +38349,41 @@ neutral | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder+MethodBody;get_ExceptionRegions;();summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder+MethodBody;get_Instructions;();summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder+MethodBody;get_Offset;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes);summary;df-generated | -| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Reflection.Metadata.Ecma335.InstructionEncoder,System.Int32,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Reflection.Metadata.Ecma335.InstructionEncoder,System.Int32,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean);summary;df-generated | -| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;MethodBodyStreamEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;MethodSignatureEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Action,System.Action);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Reflection.Metadata.Ecma335.ReturnTypeEncoder,System.Reflection.Metadata.Ecma335.ParametersEncoder);summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;get_HasVarArgs;();summary;df-generated | | System.Reflection.Metadata.Ecma335;NameEncoder;Name;(System.String);summary;df-generated | -| System.Reflection.Metadata.Ecma335;NameEncoder;NameEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;NameEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;NamedArgumentTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;Object;();summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;SZArray;();summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;ScalarType;();summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Reflection.Metadata.Ecma335.NamedArgumentTypeEncoder,System.Reflection.Metadata.Ecma335.NameEncoder,System.Reflection.Metadata.Ecma335.LiteralEncoder);summary;df-generated | -| System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;NamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;CustomModifiers;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;ParameterTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;Type;(System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;TypedReference;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ParametersEncoder;AddParameter;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;ParametersEncoder;ParametersEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;ParametersEncoder;StartVarArgs;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ParametersEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ParametersEncoder;get_HasVarArgs;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;PermissionSetEncoder;PermissionSetEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;PermissionSetEncoder;get_Builder;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);summary;df-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;get_FormatVersion;();summary;df-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;get_IdProvider;();summary;df-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;get_MetadataVersion;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;CustomModifiers;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;ReturnTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;Type;(System.Boolean);summary;df-generated | | System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;TypedReference;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;Void;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;ScalarEncoder;Constant;(System.Object);summary;df-generated | | System.Reflection.Metadata.Ecma335;ScalarEncoder;NullArray;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;ScalarEncoder;ScalarEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;ScalarEncoder;SystemType;(System.String);summary;df-generated | | System.Reflection.Metadata.Ecma335;ScalarEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Boolean;();summary;df-generated | @@ -37171,7 +38402,6 @@ neutral | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Object;();summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;PrimitiveType;(System.Reflection.Metadata.PrimitiveTypeCode);summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SByte;();summary;df-generated | -| System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SignatureTypeEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Single;();summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;String;();summary;df-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Type;(System.Reflection.Metadata.EntityHandle,System.Boolean);summary;df-generated | @@ -37184,7 +38414,6 @@ neutral | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata.Ecma335;SwitchInstructionEncoder;Branch;(System.Reflection.Metadata.Ecma335.LabelHandle);summary;df-generated | | System.Reflection.Metadata.Ecma335;VectorEncoder;Count;(System.Int32);summary;df-generated | -| System.Reflection.Metadata.Ecma335;VectorEncoder;VectorEncoder;(System.Reflection.Metadata.BlobBuilder);summary;df-generated | | System.Reflection.Metadata.Ecma335;VectorEncoder;get_Builder;();summary;df-generated | | System.Reflection.Metadata;ArrayShape;ArrayShape;(System.Int32,System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray);summary;df-generated | | System.Reflection.Metadata;ArrayShape;get_LowerBounds;();summary;df-generated | @@ -37219,6 +38448,14 @@ neutral | System.Reflection.Metadata;AssemblyFileHandleCollection+Enumerator;get_Current;();summary;df-generated | | System.Reflection.Metadata;AssemblyFileHandleCollection;GetEnumerator;();summary;df-generated | | System.Reflection.Metadata;AssemblyFileHandleCollection;get_Count;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;Parse;(System.ReadOnlySpan);summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;ToAssemblyName;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;TryParse;(System.ReadOnlySpan,System.Reflection.Metadata.AssemblyNameInfo);summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_CultureName;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_Flags;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_Name;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_PublicKeyOrToken;();summary;df-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_Version;();summary;df-generated | | System.Reflection.Metadata;AssemblyReference;GetAssemblyName;();summary;df-generated | | System.Reflection.Metadata;AssemblyReference;get_Culture;();summary;df-generated | | System.Reflection.Metadata;AssemblyReference;get_Flags;();summary;df-generated | @@ -37415,15 +38652,12 @@ neutral | System.Reflection.Metadata;CustomAttributeHandleCollection+Enumerator;Reset;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeHandleCollection+Enumerator;get_Current;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeHandleCollection;get_Count;();summary;df-generated | -| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);summary;df-generated | | System.Reflection.Metadata;CustomAttributeNamedArgument;get_Kind;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeNamedArgument;get_Name;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeNamedArgument;get_Type;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeNamedArgument;get_Value;();summary;df-generated | -| System.Reflection.Metadata;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(TType,System.Object);summary;df-generated | | System.Reflection.Metadata;CustomAttributeTypedArgument;get_Type;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeTypedArgument;get_Value;();summary;df-generated | -| System.Reflection.Metadata;CustomAttributeValue;CustomAttributeValue;(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>);summary;df-generated | | System.Reflection.Metadata;CustomAttributeValue;get_FixedArguments;();summary;df-generated | | System.Reflection.Metadata;CustomAttributeValue;get_NamedArguments;();summary;df-generated | | System.Reflection.Metadata;CustomDebugInformation;get_Kind;();summary;df-generated | @@ -37776,7 +39010,6 @@ neutral | System.Reflection.Metadata;MetadataStringComparer;Equals;(System.Reflection.Metadata.StringHandle,System.String,System.Boolean);summary;df-generated | | System.Reflection.Metadata;MetadataStringComparer;StartsWith;(System.Reflection.Metadata.StringHandle,System.String);summary;df-generated | | System.Reflection.Metadata;MetadataStringComparer;StartsWith;(System.Reflection.Metadata.StringHandle,System.String,System.Boolean);summary;df-generated | -| System.Reflection.Metadata;MetadataStringDecoder;MetadataStringDecoder;(System.Text.Encoding);summary;df-generated | | System.Reflection.Metadata;MetadataStringDecoder;get_DefaultUTF8;();summary;df-generated | | System.Reflection.Metadata;MetadataStringDecoder;get_Encoding;();summary;df-generated | | System.Reflection.Metadata;MetadataUpdateHandlerAttribute;MetadataUpdateHandlerAttribute;(System.Type);summary;df-generated | @@ -37841,7 +39074,6 @@ neutral | System.Reflection.Metadata;MethodImplementationHandleCollection;GetEnumerator;();summary;df-generated | | System.Reflection.Metadata;MethodImplementationHandleCollection;get_Count;();summary;df-generated | | System.Reflection.Metadata;MethodImport;get_Attributes;();summary;df-generated | -| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);summary;df-generated | | System.Reflection.Metadata;MethodSignature;get_GenericParameterCount;();summary;df-generated | | System.Reflection.Metadata;MethodSignature;get_Header;();summary;df-generated | | System.Reflection.Metadata;MethodSignature;get_ParameterTypes;();summary;df-generated | @@ -37991,6 +39223,21 @@ neutral | System.Reflection.Metadata;TypeLayout;get_IsDefault;();summary;df-generated | | System.Reflection.Metadata;TypeLayout;get_PackingSize;();summary;df-generated | | System.Reflection.Metadata;TypeLayout;get_Size;();summary;df-generated | +| System.Reflection.Metadata;TypeName;GetArrayRank;();summary;df-generated | +| System.Reflection.Metadata;TypeName;GetGenericArguments;();summary;df-generated | +| System.Reflection.Metadata;TypeName;GetNodeCount;();summary;df-generated | +| System.Reflection.Metadata;TypeName;Parse;(System.ReadOnlySpan,System.Reflection.Metadata.TypeNameParseOptions);summary;df-generated | +| System.Reflection.Metadata;TypeName;TryParse;(System.ReadOnlySpan,System.Reflection.Metadata.TypeName,System.Reflection.Metadata.TypeNameParseOptions);summary;df-generated | +| System.Reflection.Metadata;TypeName;get_AssemblyName;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_AssemblyQualifiedName;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsArray;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsByRef;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsConstructedGenericType;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsNested;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsPointer;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsSZArray;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsSimple;();summary;df-generated | +| System.Reflection.Metadata;TypeName;get_IsVariableBoundArrayType;();summary;df-generated | | System.Reflection.Metadata;TypeReference;get_Name;();summary;df-generated | | System.Reflection.Metadata;TypeReference;get_Namespace;();summary;df-generated | | System.Reflection.Metadata;TypeReference;get_ResolutionScope;();summary;df-generated | @@ -38061,7 +39308,6 @@ neutral | System.Reflection.PortableExecutable;ManagedPEBuilder;ManagedPEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Reflection.Metadata.Ecma335.MetadataRootBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.PortableExecutable.ResourceSectionBuilder,System.Reflection.PortableExecutable.DebugDirectoryBuilder,System.Int32,System.Reflection.Metadata.MethodDefinitionHandle,System.Reflection.PortableExecutable.CorFlags,System.Func,System.Reflection.Metadata.BlobContentId>);summary;df-generated | | System.Reflection.PortableExecutable;ManagedPEBuilder;Sign;(System.Reflection.Metadata.BlobBuilder,System.Func,System.Byte[]>);summary;df-generated | | System.Reflection.PortableExecutable;PEBuilder;CreateSections;();summary;df-generated | -| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);summary;df-generated | | System.Reflection.PortableExecutable;PEBuilder;get_Header;();summary;df-generated | | System.Reflection.PortableExecutable;PEBuilder;get_IdProvider;();summary;df-generated | | System.Reflection.PortableExecutable;PEBuilder;get_IsDeterministic;();summary;df-generated | @@ -38214,6 +39460,7 @@ neutral | System.Reflection;Assembly;ReflectionOnlyLoad;(System.Byte[]);summary;df-generated | | System.Reflection;Assembly;ReflectionOnlyLoad;(System.String);summary;df-generated | | System.Reflection;Assembly;ReflectionOnlyLoadFrom;(System.String);summary;df-generated | +| System.Reflection;Assembly;SetEntryAssembly;(System.Reflection.Assembly);summary;df-generated | | System.Reflection;Assembly;UnsafeLoadFrom;(System.String);summary;df-generated | | System.Reflection;Assembly;add_ModuleResolve;(System.Reflection.ModuleResolveEventHandler);summary;df-generated | | System.Reflection;Assembly;get_DefinedTypes;();summary;df-generated | @@ -38291,7 +39538,6 @@ neutral | System.Reflection;ConstructorInfo;op_Equality;(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo);summary;df-generated | | System.Reflection;ConstructorInfo;op_Inequality;(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo);summary;df-generated | | System.Reflection;ConstructorInvoker;Create;(System.Reflection.ConstructorInfo);summary;df-generated | -| System.Reflection;ConstructorInvoker;Invoke;();summary;df-generated | | System.Reflection;CustomAttributeData;Equals;(System.Object);summary;df-generated | | System.Reflection;CustomAttributeData;GetCustomAttributes;(System.Reflection.Assembly);summary;df-generated | | System.Reflection;CustomAttributeData;GetCustomAttributes;(System.Reflection.MemberInfo);summary;df-generated | @@ -38382,9 +39628,7 @@ neutral | System.Reflection;FieldInfo;GetFieldFromHandle;(System.RuntimeFieldHandle);summary;df-generated | | System.Reflection;FieldInfo;GetFieldFromHandle;(System.RuntimeFieldHandle,System.RuntimeTypeHandle);summary;df-generated | | System.Reflection;FieldInfo;GetHashCode;();summary;df-generated | -| System.Reflection;FieldInfo;GetOptionalCustomModifiers;();summary;df-generated | | System.Reflection;FieldInfo;GetRawConstantValue;();summary;df-generated | -| System.Reflection;FieldInfo;GetRequiredCustomModifiers;();summary;df-generated | | System.Reflection;FieldInfo;GetValue;(System.Object);summary;df-generated | | System.Reflection;FieldInfo;GetValueDirect;(System.TypedReference);summary;df-generated | | System.Reflection;FieldInfo;SetValue;(System.Object,System.Object);summary;df-generated | @@ -38570,7 +39814,6 @@ neutral | System.Reflection;RuntimeReflectionExtensions;GetRuntimeEvents;(System.Type);summary;df-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeField;(System.Type,System.String);summary;df-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeFields;(System.Type);summary;df-generated | -| System.Reflection;RuntimeReflectionExtensions;GetRuntimeInterfaceMap;(System.Reflection.TypeInfo,System.Type);summary;df-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeMethod;(System.Type,System.String,System.Type[]);summary;df-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeMethods;(System.Type);summary;df-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeProperties;(System.Type);summary;df-generated | @@ -38596,7 +39839,6 @@ neutral | System.Reflection;TypeDelegator;GetEvents;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection;TypeDelegator;GetFields;(System.Reflection.BindingFlags);summary;df-generated | | System.Reflection;TypeDelegator;GetFunctionPointerCallingConventions;();summary;df-generated | -| System.Reflection;TypeDelegator;GetInterfaceMap;(System.Type);summary;df-generated | | System.Reflection;TypeDelegator;GetMember;(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags);summary;df-generated | | System.Reflection;TypeDelegator;GetMemberWithSameMetadataDefinitionAs;(System.Reflection.MemberInfo);summary;df-generated | | System.Reflection;TypeDelegator;GetMembers;(System.Reflection.BindingFlags);summary;df-generated | @@ -38846,6 +40088,8 @@ neutral | System.Runtime.CompilerServices;NullableAttribute;NullableAttribute;(System.Byte);summary;df-generated | | System.Runtime.CompilerServices;NullableContextAttribute;NullableContextAttribute;(System.Byte);summary;df-generated | | System.Runtime.CompilerServices;NullablePublicOnlyAttribute;NullablePublicOnlyAttribute;(System.Boolean);summary;df-generated | +| System.Runtime.CompilerServices;OverloadResolutionPriorityAttribute;OverloadResolutionPriorityAttribute;(System.Int32);summary;df-generated | +| System.Runtime.CompilerServices;OverloadResolutionPriorityAttribute;get_Priority;();summary;df-generated | | System.Runtime.CompilerServices;PoolingAsyncValueTaskMethodBuilder;Create;();summary;df-generated | | System.Runtime.CompilerServices;PoolingAsyncValueTaskMethodBuilder;SetException;(System.Exception);summary;df-generated | | System.Runtime.CompilerServices;PoolingAsyncValueTaskMethodBuilder;SetResult;();summary;df-generated | @@ -38880,6 +40124,7 @@ neutral | System.Runtime.CompilerServices;RuntimeFeature;get_IsDynamicCodeCompiled;();summary;df-generated | | System.Runtime.CompilerServices;RuntimeFeature;get_IsDynamicCodeSupported;();summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;AllocateTypeAssociatedMemory;(System.Type,System.Int32);summary;df-generated | +| System.Runtime.CompilerServices;RuntimeHelpers;Box;(System.Byte,System.RuntimeTypeHandle);summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;CreateSpan;(System.RuntimeFieldHandle);summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;EnsureSufficientExecutionStack;();summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;Equals;(System.Object,System.Object);summary;df-generated | @@ -38898,9 +40143,11 @@ neutral | System.Runtime.CompilerServices;RuntimeHelpers;ProbeForSufficientStack;();summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;RunClassConstructor;(System.RuntimeTypeHandle);summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;RunModuleConstructor;(System.ModuleHandle);summary;df-generated | +| System.Runtime.CompilerServices;RuntimeHelpers;SizeOf;(System.RuntimeTypeHandle);summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;TryEnsureSufficientExecutionStack;();summary;df-generated | | System.Runtime.CompilerServices;RuntimeHelpers;get_OffsetToStringData;();summary;df-generated | | System.Runtime.CompilerServices;StateMachineAttribute;StateMachineAttribute;(System.Type);summary;df-generated | +| System.Runtime.CompilerServices;StateMachineAttribute;get_StateMachineType;();summary;df-generated | | System.Runtime.CompilerServices;SwitchExpressionException;SwitchExpressionException;(System.Exception);summary;df-generated | | System.Runtime.CompilerServices;SwitchExpressionException;SwitchExpressionException;(System.Object);summary;df-generated | | System.Runtime.CompilerServices;SwitchExpressionException;SwitchExpressionException;(System.String);summary;df-generated | @@ -39406,6 +40653,8 @@ neutral | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;GetPinnableReference;(System.ReadOnlySpan);summary;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;ToUnmanaged;();summary;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;get_BufferSize;();summary;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;Free;();summary;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;GetUnmanagedValuesSource;(System.Int32);summary;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+UnmanagedToManagedOut;AllocateContainerForUnmanagedElements;(System.ReadOnlySpan,System.Int32);summary;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+UnmanagedToManagedOut;GetUnmanagedValuesDestination;(TUnmanagedElement*,System.Int32);summary;df-generated | | System.Runtime.InteropServices.Marshalling;SafeHandleMarshaller+ManagedToUnmanagedIn;Free;();summary;df-generated | @@ -39427,7 +40676,6 @@ neutral | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;ComputeVtables;(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags,System.Int32);summary;df-generated | | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;CreateCacheStrategy;();summary;df-generated | | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;CreateDefaultCacheStrategy;();summary;df-generated | -| System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;CreateObject;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);summary;df-generated | | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;GetOrCreateIUnknownStrategy;();summary;df-generated | | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;GetOrCreateInterfaceDetailsStrategy;();summary;df-generated | | System.Runtime.InteropServices.Marshalling;StrategyBasedComWrappers;ReleaseObjects;(System.Collections.IEnumerable);summary;df-generated | @@ -39446,13 +40694,20 @@ neutral | System.Runtime.InteropServices.Marshalling;Utf16StringMarshaller;ConvertToUnmanaged;(System.String);summary;df-generated | | System.Runtime.InteropServices.Marshalling;Utf16StringMarshaller;Free;(System.UInt16*);summary;df-generated | | System.Runtime.InteropServices.Marshalling;Utf16StringMarshaller;GetPinnableReference;(System.String);summary;df-generated | -| System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;VirtualMethodTableInfo;(System.Void*,System.Void**);summary;df-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;get_ThisPointer;();summary;df-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;get_VirtualMethodTable;();summary;df-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;CreateReferenceTrackingHandle;(System.Object,System.Span);summary;df-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;Initialize;(System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal+UnhandledExceptionPropagationHandler);summary;df-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;SetMessageSendCallback;(System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal+MessageSendFunction,System.IntPtr);summary;df-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;SetMessageSendPendingException;(System.Exception);summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftError;SwiftError;(System.Void*);summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftError;get_Value;();summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftIndirectResult;SwiftIndirectResult;(System.Void*);summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftIndirectResult;get_Value;();summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftSelf;SwiftSelf;(System.Void*);summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftSelf;get_Value;();summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftSelf;SwiftSelf;(T);summary;df-generated | +| System.Runtime.InteropServices.Swift;SwiftSelf;get_Value;();summary;df-generated | | System.Runtime.InteropServices;ArrayWithOffset;Equals;(System.Object);summary;df-generated | | System.Runtime.InteropServices;ArrayWithOffset;Equals;(System.Runtime.InteropServices.ArrayWithOffset);summary;df-generated | | System.Runtime.InteropServices;ArrayWithOffset;GetHashCode;();summary;df-generated | @@ -39485,10 +40740,12 @@ neutral | System.Runtime.InteropServices;ClassInterfaceAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;CoClassAttribute;CoClassAttribute;(System.Type);summary;df-generated | | System.Runtime.InteropServices;CoClassAttribute;get_CoClass;();summary;df-generated | +| System.Runtime.InteropServices;CollectionsMarshal;AsSpan;(System.Collections.Generic.List);summary;df-generated | +| System.Runtime.InteropServices;CollectionsMarshal;GetValueRefOrAddDefault;(System.Collections.Generic.Dictionary+AlternateLookup,TAlternateKey,System.Boolean);summary;df-generated | | System.Runtime.InteropServices;CollectionsMarshal;GetValueRefOrAddDefault;(System.Collections.Generic.Dictionary,TKey,System.Boolean);summary;df-generated | +| System.Runtime.InteropServices;CollectionsMarshal;GetValueRefOrNullRef;(System.Collections.Generic.Dictionary+AlternateLookup,TAlternateKey);summary;df-generated | | System.Runtime.InteropServices;CollectionsMarshal;GetValueRefOrNullRef;(System.Collections.Generic.Dictionary,TKey);summary;df-generated | | System.Runtime.InteropServices;CollectionsMarshal;SetCount;(System.Collections.Generic.List,System.Int32);summary;df-generated | -| System.Runtime.InteropServices;ComAliasNameAttribute;ComAliasNameAttribute;(System.String);summary;df-generated | | System.Runtime.InteropServices;ComAliasNameAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;AddEventHandler;(System.Object,System.Delegate);summary;df-generated | | System.Runtime.InteropServices;ComAwareEventInfo;ComAwareEventInfo;(System.Type,System.String);summary;df-generated | @@ -39522,7 +40779,6 @@ neutral | System.Runtime.InteropServices;ComVisibleAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;ComWrappers+ComInterfaceDispatch;GetInstance;(System.Runtime.InteropServices.ComWrappers+ComInterfaceDispatch*);summary;df-generated | | System.Runtime.InteropServices;ComWrappers;ComputeVtables;(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags,System.Int32);summary;df-generated | -| System.Runtime.InteropServices;ComWrappers;CreateObject;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);summary;df-generated | | System.Runtime.InteropServices;ComWrappers;GetIUnknownImpl;(System.IntPtr,System.IntPtr,System.IntPtr);summary;df-generated | | System.Runtime.InteropServices;ComWrappers;GetOrCreateComInterfaceForObject;(System.Object,System.Runtime.InteropServices.CreateComInterfaceFlags);summary;df-generated | | System.Runtime.InteropServices;ComWrappers;GetOrCreateObjectForComInstance;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);summary;df-generated | @@ -39580,7 +40836,6 @@ neutral | System.Runtime.InteropServices;GuidAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;HandleCollector;Add;();summary;df-generated | | System.Runtime.InteropServices;HandleCollector;HandleCollector;(System.String,System.Int32);summary;df-generated | -| System.Runtime.InteropServices;HandleCollector;HandleCollector;(System.String,System.Int32,System.Int32);summary;df-generated | | System.Runtime.InteropServices;HandleCollector;Remove;();summary;df-generated | | System.Runtime.InteropServices;HandleCollector;get_Count;();summary;df-generated | | System.Runtime.InteropServices;HandleCollector;get_InitialThreshold;();summary;df-generated | @@ -39596,7 +40851,6 @@ neutral | System.Runtime.InteropServices;ICustomQueryInterface;GetInterface;(System.Guid,System.IntPtr);summary;df-generated | | System.Runtime.InteropServices;IDynamicInterfaceCastable;GetInterfaceImplementation;(System.RuntimeTypeHandle);summary;df-generated | | System.Runtime.InteropServices;IDynamicInterfaceCastable;IsInterfaceImplemented;(System.RuntimeTypeHandle,System.Boolean);summary;df-generated | -| System.Runtime.InteropServices;ImportedFromTypeLibAttribute;ImportedFromTypeLibAttribute;(System.String);summary;df-generated | | System.Runtime.InteropServices;ImportedFromTypeLibAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;InterfaceTypeAttribute;InterfaceTypeAttribute;(System.Int16);summary;df-generated | | System.Runtime.InteropServices;InterfaceTypeAttribute;InterfaceTypeAttribute;(System.Runtime.InteropServices.ComInterfaceType);summary;df-generated | @@ -39607,11 +40861,11 @@ neutral | System.Runtime.InteropServices;InvalidOleVariantTypeException;InvalidOleVariantTypeException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Runtime.InteropServices;InvalidOleVariantTypeException;InvalidOleVariantTypeException;(System.String);summary;df-generated | | System.Runtime.InteropServices;InvalidOleVariantTypeException;InvalidOleVariantTypeException;(System.String,System.Exception);summary;df-generated | +| System.Runtime.InteropServices;JsonMarshal;GetRawUtf8Value;(System.Text.Json.JsonElement);summary;df-generated | | System.Runtime.InteropServices;LCIDConversionAttribute;LCIDConversionAttribute;(System.Int32);summary;df-generated | | System.Runtime.InteropServices;LCIDConversionAttribute;get_Value;();summary;df-generated | | System.Runtime.InteropServices;LibraryImportAttribute;LibraryImportAttribute;(System.String);summary;df-generated | | System.Runtime.InteropServices;LibraryImportAttribute;get_LibraryName;();summary;df-generated | -| System.Runtime.InteropServices;ManagedToNativeComInteropStubAttribute;ManagedToNativeComInteropStubAttribute;(System.Type,System.String);summary;df-generated | | System.Runtime.InteropServices;ManagedToNativeComInteropStubAttribute;get_ClassType;();summary;df-generated | | System.Runtime.InteropServices;ManagedToNativeComInteropStubAttribute;get_MethodName;();summary;df-generated | | System.Runtime.InteropServices;Marshal;AddRef;(System.IntPtr);summary;df-generated | @@ -39875,6 +41129,7 @@ neutral | System.Runtime.InteropServices;NFloat;MinMagnitude;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);summary;df-generated | | System.Runtime.InteropServices;NFloat;MinMagnitudeNumber;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);summary;df-generated | | System.Runtime.InteropServices;NFloat;MinNumber;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);summary;df-generated | +| System.Runtime.InteropServices;NFloat;MultiplyAddEstimate;(System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat,System.Runtime.InteropServices.NFloat);summary;df-generated | | System.Runtime.InteropServices;NFloat;NFloat;(System.Double);summary;df-generated | | System.Runtime.InteropServices;NFloat;NFloat;(System.Single);summary;df-generated | | System.Runtime.InteropServices;NFloat;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -40314,6 +41569,66 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;InsertSelectedScalar;(System.Runtime.Intrinsics.Vector128,System.Byte,System.Runtime.Intrinsics.Vector64,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;InsertSelectedScalar;(System.Runtime.Intrinsics.Vector128,System.Byte,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;InsertSelectedScalar;(System.Runtime.Intrinsics.Vector128,System.Byte,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load2xVector128AndUnzip;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load3xVector128AndUnzip;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Load4xVector128AndUnzip;(System.UInt64*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;LoadAndInsertScalar;(System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;LoadAndInsertScalar;(System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;LoadAndInsertScalar;(System.ValueTuple,System.Runtime.Intrinsics.Vector128>,System.Byte,System.Byte*);summary;df-generated | @@ -40618,6 +41933,36 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Sqrt;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Sqrt;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Sqrt;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Store;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StorePair;(System.Byte*,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StorePair;(System.Byte*,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StorePair;(System.Double*,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -40694,6 +42039,36 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreSelectedScalar;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreSelectedScalar;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreSelectedScalar;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Double*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Int64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;StoreVectorAndZip;(System.UInt64*,System.ValueTuple,System.Runtime.Intrinsics.Vector128>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;Subtract;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;SubtractSaturateScalar;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd+Arm64;SubtractSaturateScalar;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -41391,6 +42766,48 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load2xVector64AndUnzip;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load3xVector64AndUnzip;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Load4xVector64AndUnzip;(System.UInt32*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;LoadAndInsertScalar;(System.Runtime.Intrinsics.Vector64,System.Byte,System.Byte*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;LoadAndInsertScalar;(System.Runtime.Intrinsics.Vector64,System.Byte,System.Int16*);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;LoadAndInsertScalar;(System.Runtime.Intrinsics.Vector64,System.Byte,System.Int32*);summary;df-generated | @@ -42319,22 +43736,43 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd;SqrtScalar;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Byte*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Byte*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Double*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Double*,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int16*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int16*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int32*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int32*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int64*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Int64*,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.SByte*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.SByte*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Single*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Single*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt16*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt16*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt32*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt32*,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt64*,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Store;(System.UInt64*,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;StoreSelectedScalar;(System.Byte*,System.Runtime.Intrinsics.Vector64,System.Byte);summary;df-generated | @@ -42375,6 +43813,27 @@ neutral | System.Runtime.Intrinsics.Arm;AdvSimd;StoreSelectedScalar;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;StoreSelectedScalar;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;StoreSelectedScalar;(System.UInt64*,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Byte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Int32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.SByte*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.Single*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt16*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;AdvSimd;StoreVectorAndZip;(System.UInt32*,System.ValueTuple,System.Runtime.Intrinsics.Vector64>);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Subtract;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Subtract;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics.Arm;AdvSimd;Subtract;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -42609,6 +44068,1482 @@ neutral | System.Runtime.Intrinsics.Arm;Sha256;ScheduleUpdate0;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;Sha256;ScheduleUpdate1;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Arm;Sha256;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve+Arm64;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Abs;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteCompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AbsoluteDifference;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Add;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddRotateComplex;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddRotateComplex;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSequentialAcross;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AddSequentialAcross;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;And;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;AndAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BitwiseClear;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;BooleanNot;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compact;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareGreaterThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThan;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareLessThanOrEqual;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareNotEqualTo;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareUnordered;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CompareUnordered;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute8BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute8BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute8BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute8BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute16BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute16BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute16BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute16BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute32BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute32BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute32BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute32BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute64BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute64BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute64BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Compute64BitAddresses;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Byte,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Double,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Int16,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.SByte,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Single,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.UInt16,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElement;(System.Numerics.Vector,System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractAfterLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Byte,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Double,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Int16,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.SByte,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Single,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.UInt16,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElement;(System.Numerics.Vector,System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalExtractLastActiveElementAndReplicate;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConditionalSelect;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToDouble;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToInt32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToInt32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToInt64;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToInt64;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToSingle;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToUInt32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToUInt32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToUInt64;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ConvertToUInt64;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Count8BitElements;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Count16BitElements;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Count32BitElements;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Count64BitElements;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakAfterPropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforeMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakBeforePropagateMask;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateBreakPropagateMask;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskByte;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskDouble;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskInt16;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskInt32;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskInt64;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskSByte;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskSingle;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskUInt16;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskUInt32;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateFalseMaskUInt64;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForFirstActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForNextActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForNextActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForNextActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateMaskForNextActiveElement;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskByte;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskDouble;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskInt16;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskInt32;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskInt64;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskSByte;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskSingle;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskUInt16;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskUInt32;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateTrueMaskUInt64;(System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask8Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask8Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask8Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask8Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask16Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask16Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask16Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask16Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask32Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask32Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask32Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask32Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask64Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask64Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask64Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanMask64Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask8Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask8Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask8Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask8Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask16Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask16Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask16Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask16Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask32Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask32Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask32Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask32Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask64Bit;(System.Int32,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask64Bit;(System.Int64,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask64Bit;(System.UInt32,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;CreateWhileLessThanOrEqualMask64Bit;(System.UInt64,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Divide;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Divide;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProduct;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProduct;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProduct;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProduct;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProductBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProductBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProductBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DotProductBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;DuplicateSelectedScalarToVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ExtractVector;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FloatingPointExponentialAccelerator;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FloatingPointExponentialAccelerator;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAddBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAddBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAddNegated;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplyAddNegated;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtractBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtractBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtractNegated;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;FusedMultiplySubtractNegated;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch8Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch16Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch32Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherPrefetch64Bit;(System.Numerics.Vector,System.Void*,System.Numerics.Vector,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVector;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorFirstFaulting;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt16WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtend;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorInt32WithByteOffsetsSignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtend;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtend;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32WithByteOffsetsZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtend;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsetFirstFaulting;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GatherVectorWithByteOffsets;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrByte;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrInt16;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrInt32;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrInt64;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrSByte;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrUInt16;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrUInt32;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;GetFfrUInt64;();summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Double);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Int16);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Int32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Int64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.SByte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.Single);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.UInt16);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;InsertIntoShiftedVector;(System.Numerics.Vector,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingSignCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingSignCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingSignCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingSignCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LeadingZeroCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load2xVectorAndUnzip;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load3xVectorAndUnzip;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Load4xVectorAndUnzip;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector128AndReplicateToVector;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVector;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToInt16;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToInt32;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToInt64;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToUInt16;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToUInt32;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteNonFaultingZeroExtendToUInt64;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToInt16;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToInt32;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToInt64;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToUInt16;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToUInt32;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorByteZeroExtendToUInt64;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorFirstFaulting;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16NonFaultingSignExtendToInt32;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16NonFaultingSignExtendToInt64;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16NonFaultingSignExtendToUInt32;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16NonFaultingSignExtendToUInt64;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendFirstFaulting;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendToInt32;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendToInt64;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendToUInt32;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt16SignExtendToUInt64;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32NonFaultingSignExtendToInt64;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32NonFaultingSignExtendToUInt64;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32SignExtendFirstFaulting;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32SignExtendToInt64;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorInt32SignExtendToUInt64;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonFaulting;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Byte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Int16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorNonTemporal;(System.Numerics.Vector,System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToInt16;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToInt32;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToInt64;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToUInt16;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToUInt32;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteNonFaultingSignExtendToUInt64;(System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendFirstFaulting;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToInt16;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToInt32;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToInt64;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToUInt16;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToUInt32;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorSByteSignExtendToUInt64;(System.Numerics.Vector,System.SByte*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16NonFaultingZeroExtendToInt32;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16NonFaultingZeroExtendToInt64;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16NonFaultingZeroExtendToUInt32;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16NonFaultingZeroExtendToUInt64;(System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendToInt32;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendToInt64;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendToUInt32;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt16ZeroExtendToUInt64;(System.Numerics.Vector,System.UInt16*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32NonFaultingZeroExtendToInt64;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32NonFaultingZeroExtendToUInt64;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32ZeroExtendFirstFaulting;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32ZeroExtendToInt64;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;LoadVectorUInt32ZeroExtendToUInt64;(System.Numerics.Vector,System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Max;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxNumberAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MaxNumberAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Min;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinNumber;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinNumberAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MinNumberAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Multiply;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAdd;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAddRotateComplex;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAddRotateComplex;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyAddRotateComplexBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector,System.Byte,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyBySelectedScalar;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyExtended;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplyExtended;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;MultiplySubtract;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Negate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Not;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Or;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;OrAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PopCount;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PrefetchBytes;(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PrefetchInt16;(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PrefetchInt32;(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;PrefetchInt64;(System.Numerics.Vector,System.Void*,System.Runtime.Intrinsics.Arm.SvePrefetchType);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalEstimate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalEstimate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalExponent;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalExponent;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalSqrtEstimate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalSqrtEstimate;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalSqrtStep;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalSqrtStep;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalStep;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReciprocalStep;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseBits;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ReverseElement;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundAwayFromZero;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundAwayFromZero;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToNearest;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToNearest;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToNegativeInfinity;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToNegativeInfinity;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToPositiveInfinity;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToPositiveInfinity;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToZero;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;RoundToZero;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy8BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy8BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy8BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy8BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy16BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy32BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementBy64BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingDecrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy8BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy8BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy8BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy8BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy16BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy32BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.Int32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.Int64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.Numerics.Vector,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.UInt32,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementBy64BitElementCount;(System.UInt64,System.Byte,System.Runtime.Intrinsics.Arm.SveMaskPattern);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Int64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt32,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SaturatingIncrementByActiveElementCount;(System.UInt64,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scale;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scale;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter8BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter16BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitNarrowing;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter32BitWithByteOffsetsNarrowing;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Double*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Double*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Single*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Single*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Scatter;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SetFfr;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftLeftLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmetic;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmeticForDivide;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmeticForDivide;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmeticForDivide;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightArithmeticForDivide;(System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ShiftRightLogical;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtend32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SignExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Splice;(System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Sqrt;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Sqrt;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Byte*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Double*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int16*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int32*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Int64*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.SByte*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.Single*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt16*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt32*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreAndZip;(System.Numerics.Vector,System.UInt64*,System.ValueTuple,System.Numerics.Vector>);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNarrowing;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Byte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Double*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Int16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Int32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Int64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.SByte*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.Single*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.UInt16*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.UInt32*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;StoreNonTemporal;(System.Numerics.Vector,System.UInt64*,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Subtract;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;SubtractSaturate;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestAnyTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestFirstTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TestLastTrue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TransposeOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricMultiplyAddCoefficient;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricMultiplyAddCoefficient;(System.Numerics.Vector,System.Numerics.Vector,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricSelectCoefficient;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricSelectCoefficient;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricStartingValue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;TrigonometricStartingValue;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipEven;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;UnzipOdd;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;VectorTableLookup;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;Xor;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;XorAcross;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend8;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend16;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtend32;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningLower;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZeroExtendWideningUpper;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipHigh;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;ZipLow;(System.Numerics.Vector,System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics.Arm;Sve;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics.Wasm;PackedSimd;Abs;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Wasm;PackedSimd;Abs;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.Wasm;PackedSimd;Abs;(System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -43483,6 +46418,526 @@ neutral | System.Runtime.Intrinsics.X86;Avx2;Xor;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx2;Xor;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx2;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512+X64;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;And;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;And;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;AndNot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;AndNot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastPairScalarToVector512;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastPairScalarToVector512;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastPairScalarToVector512;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector128ToVector512;(System.Double*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector128ToVector512;(System.Int64*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector128ToVector512;(System.UInt64*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector256ToVector512;(System.Int32*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector256ToVector512;(System.Single*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;BroadcastVector256ToVector512;(System.UInt32*);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512Int64WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ConvertToVector512UInt64WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;DetectConflicts;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;DetectConflicts;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;DetectConflicts;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;DetectConflicts;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector128;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector128;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector128;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector256;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector256;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;ExtractVector256;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector128;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector128;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector128;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector256;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector256;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;InsertVector256;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;LeadingZeroCount;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;LeadingZeroCount;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;LeadingZeroCount;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;LeadingZeroCount;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;MultiShift;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;MultiShift;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;MultiplyLow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;MultiplyLow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Or;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Or;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;PermuteVar64x8;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;PermuteVar64x8;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;PermuteVar64x8x2;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;PermuteVar64x8x2;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Range;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Range;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Reduce;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Reduce;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Xor;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;Xor;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+V512;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;ConvertToUInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1+X64;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Abs;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Abs;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight32;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight32;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;AlignRight64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;BroadcastPairScalarToVector128;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;BroadcastPairScalarToVector128;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;BroadcastPairScalarToVector256;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;BroadcastPairScalarToVector256;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;BroadcastPairScalarToVector256;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareGreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareLessThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;CompareNotEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Int32,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt32,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToUInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128ByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Double;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Double;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Double;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int16WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int32WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Int64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByte;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128SByteWithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Single;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Single;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Single;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Single;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128Single;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt16WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32WithSaturation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32WithSaturation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt32WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector128UInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Double;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Double;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Double;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Int64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Int64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Int64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Int64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt32WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ConvertToVector256UInt64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DetectConflicts;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DivideScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;DivideScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Fixup;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Fixup;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Fixup;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Fixup;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FixupScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FixupScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplyAddNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplyAddNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplyAddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplyAddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplySubtractNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplySubtractNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplySubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;FusedMultiplySubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponent;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponent;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponent;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponent;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponentScalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponentScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponentScalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetExponentScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissa;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissa;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissa;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissa;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissaScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissaScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissaScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;GetMantissaScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;LeadingZeroCount;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Max;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Max;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Max;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Max;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Min;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Min;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Min;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Min;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiShift;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiShift;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiShift;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiShift;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyLow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyLow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyLow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyLow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;MultiplyScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar2x64x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar2x64x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar2x64x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x32x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x32x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x32x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar4x64x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x16;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x16;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x16x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x16x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x32x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x32x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar8x32x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x8;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x8;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x8x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x8x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x16;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x16;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x16x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar16x16x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar32x8;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar32x8;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar32x8x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;PermuteVar32x8x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Range;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Range;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Range;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Range;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RangeScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RangeScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14Scalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14Scalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14Scalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reciprocal14Scalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14Scalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14Scalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14Scalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReciprocalSqrt14Scalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reduce;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reduce;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reduce;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Reduce;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReduceScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReduceScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReduceScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ReduceScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeft;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateLeftVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRight;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RotateRightVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScale;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScale;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScale;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScale;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Scale;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Scale;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Scale;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Scale;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftLeftLogicalVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftLeftLogicalVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftLeftLogicalVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftLeftLogicalVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmetic;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmetic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmetic;(System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmetic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmeticVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmeticVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmeticVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightArithmeticVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightLogicalVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightLogicalVariable;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightLogicalVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;ShiftRightLogicalVariable;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;Shuffle2x128;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SqrtScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SqrtScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SumAbsoluteDifferencesInBlock32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;SumAbsoluteDifferencesInBlock32;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx10v1;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512BW+VL;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512BW+VL;CompareGreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512BW+VL;CompareGreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | @@ -43768,15 +47223,23 @@ neutral | System.Runtime.Intrinsics.X86;Avx512DQ;BroadcastVector256ToVector512;(System.Single*);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;BroadcastVector256ToVector512;(System.UInt32*);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Double;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512Int64WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64WithTruncation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ConvertToVector512UInt64WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512DQ;ExtractVector128;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | @@ -44042,21 +47505,33 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F+VL;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+VL;TernaryLogic;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+VL;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Int64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt64);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt64,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;ConvertToUInt64WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F+X64;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Abs;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Abs;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;AddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;AddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;AlignRight32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;AlignRight32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;AlignRight64;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | @@ -44146,9 +47621,16 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;CompareUnordered;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;CompareUnordered;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertScalarToVector128Double;(System.Runtime.Intrinsics.Vector128,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Int32,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt32);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertScalarToVector128Single;(System.Runtime.Intrinsics.Vector128,System.UInt32,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToUInt32WithTruncation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector128Byte;(System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -44173,15 +47655,18 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int16;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int16WithSaturation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32WithSaturation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Int32WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt16;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt16;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt16WithSaturation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector256UInt32WithSaturation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -44194,6 +47679,7 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int32WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -44202,12 +47688,15 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Int64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Single;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512Single;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt32WithTruncation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -44216,7 +47705,11 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ConvertToVector512UInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Divide;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Divide;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Divide;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Divide;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;DivideScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;DivideScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;DuplicateEvenIndexed;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;DuplicateEvenIndexed;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;DuplicateOddIndexed;(System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -44245,17 +47738,37 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;FixupScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FixupScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddSubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddSubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddSubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplyAddSubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegated;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractNegatedScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;FusedMultiplySubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;GetExponent;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;GetExponent;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;GetExponentScalar;(System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -44329,11 +47842,15 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;Min;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Min;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;MultiplyLow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;MultiplyLow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;MultiplyScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;MultiplyScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Or;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Or;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Or;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -44396,9 +47913,13 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;RoundScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Scale;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Scale;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Scale;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Scale;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;ScaleScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ShiftLeftLogical;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ShiftLeftLogical;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;ShiftLeftLogical;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | @@ -44440,7 +47961,11 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;Shuffle;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Shuffle;(System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Sqrt;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Sqrt;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Sqrt;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Sqrt;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;SqrtScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;SqrtScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Store;(System.Byte*,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Store;(System.Double*,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Store;(System.Int16*,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -44472,11 +47997,15 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;StoreAlignedNonTemporal;(System.UInt32*,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;StoreAlignedNonTemporal;(System.UInt64*,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Subtract;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;SubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512F;SubtractScalar;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.X86.FloatRoundingMode);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;TernaryLogic;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;TernaryLogic;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;TernaryLogic;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Byte);summary;df-generated | @@ -44508,6 +48037,10 @@ neutral | System.Runtime.Intrinsics.X86;Avx512F;Xor;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;Xor;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512F;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;MultiShift;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;MultiShift;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;MultiShift;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;MultiShift;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;PermuteVar16x8;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;PermuteVar16x8;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;PermuteVar16x8x2;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -44518,6 +48051,8 @@ neutral | System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;PermuteVar32x8x2;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi+VL;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi+X64;get_IsSupported;();summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi;MultiShift;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics.X86;Avx512Vbmi;MultiShift;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi;PermuteVar64x8;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi;PermuteVar64x8;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics.X86;Avx512Vbmi;PermuteVar64x8x2;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -45482,18 +49017,26 @@ neutral | System.Runtime.Intrinsics;Vector64;AsUInt64;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;BitwiseAnd;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;BitwiseOr;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Clamp;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;ClampNative;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConditionalSelect;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToDouble;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToDouble;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToInt32;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;ConvertToInt32Native;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToInt64;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;ConvertToInt64Native;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToSingle;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToSingle;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToUInt32;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;ConvertToUInt32Native;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ConvertToUInt64;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;ConvertToUInt64Native;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;CopyTo;(System.Runtime.Intrinsics.Vector64,System.Span);summary;df-generated | | System.Runtime.Intrinsics;Vector64;CopyTo;(System.Runtime.Intrinsics.Vector64,T[]);summary;df-generated | | System.Runtime.Intrinsics;Vector64;CopyTo;(System.Runtime.Intrinsics.Vector64,T[],System.Int32);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Cos;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Cos;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Create;(System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Create;(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Create;(System.Double);summary;df-generated | @@ -45543,13 +49086,20 @@ neutral | System.Runtime.Intrinsics;Vector64;CreateScalarUnsafe;(System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;CreateScalarUnsafe;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector64;CreateScalarUnsafe;(T);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;CreateSequence;(T,T);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;DegreesToRadians;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;DegreesToRadians;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Divide;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Divide;(System.Runtime.Intrinsics.Vector64,T);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Dot;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Equals;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;EqualsAll;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;EqualsAny;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Exp;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Exp;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ExtractMostSignificantBits;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;GetElement;(System.Runtime.Intrinsics.Vector64,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector64;GreaterThan;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;GreaterThanAll;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -45557,6 +49107,15 @@ neutral | System.Runtime.Intrinsics;Vector64;GreaterThanOrEqual;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;GreaterThanOrEqualAll;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;GreaterThanOrEqualAny;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Hypot;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Hypot;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;IsNaN;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;IsNegative;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;IsPositive;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;IsPositiveInfinity;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;IsZero;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Lerp;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Lerp;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;LessThan;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;LessThanAll;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;LessThanAny;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -45568,11 +49127,25 @@ neutral | System.Runtime.Intrinsics;Vector64;LoadAlignedNonTemporal;(T*);summary;df-generated | | System.Runtime.Intrinsics;Vector64;LoadUnsafe;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector64;LoadUnsafe;(T,System.UIntPtr);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Log2;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Log2;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Log;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Log;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Max;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MaxMagnitude;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MaxMagnitudeNumber;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MaxNative;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MaxNumber;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Min;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MinMagnitude;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MinMagnitudeNumber;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MinNative;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MinNumber;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Multiply;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Multiply;(System.Runtime.Intrinsics.Vector64,T);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Multiply;(T,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Narrow;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Narrow;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Narrow;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | @@ -45582,6 +49155,8 @@ neutral | System.Runtime.Intrinsics;Vector64;Narrow;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Negate;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;OnesComplement;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;RadiansToDegrees;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;RadiansToDegrees;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ShiftLeft;(System.Runtime.Intrinsics.Vector64,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ShiftLeft;(System.Runtime.Intrinsics.Vector64,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector64;ShiftLeft;(System.Runtime.Intrinsics.Vector64,System.Int32);summary;df-generated | @@ -45614,6 +49189,10 @@ neutral | System.Runtime.Intrinsics;Vector64;Shuffle;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Shuffle;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Shuffle;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Sin;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;Sin;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;SinCos;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector64;SinCos;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Sqrt;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;Store;(System.Runtime.Intrinsics.Vector64,T*);summary;df-generated | | System.Runtime.Intrinsics;Vector64;StoreAligned;(System.Runtime.Intrinsics.Vector64,T*);summary;df-generated | @@ -45654,6 +49233,7 @@ neutral | System.Runtime.Intrinsics;Vector64;ToString;();summary;df-generated | | System.Runtime.Intrinsics;Vector64;get_AllBitsSet;();summary;df-generated | | System.Runtime.Intrinsics;Vector64;get_Count;();summary;df-generated | +| System.Runtime.Intrinsics;Vector64;get_Indices;();summary;df-generated | | System.Runtime.Intrinsics;Vector64;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics;Vector64;get_Item;(System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector64;get_One;();summary;df-generated | @@ -45675,7 +49255,6 @@ neutral | System.Runtime.Intrinsics;Vector64;op_Subtraction;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;op_UnaryNegation;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector64;op_UnsignedRightShift;(System.Runtime.Intrinsics.Vector64,System.Int32);summary;df-generated | -| System.Runtime.Intrinsics;Vector128;Abs;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Add;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;AndNot;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;As;(System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -45698,23 +49277,31 @@ neutral | System.Runtime.Intrinsics;Vector128;AsVector128;(System.Numerics.Vector3);summary;df-generated | | System.Runtime.Intrinsics;Vector128;AsVector128;(System.Numerics.Vector4);summary;df-generated | | System.Runtime.Intrinsics;Vector128;AsVector128;(System.Numerics.Vector);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;AsVector128Unsafe;(System.Numerics.Vector2);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;AsVector128Unsafe;(System.Numerics.Vector3);summary;df-generated | | System.Runtime.Intrinsics;Vector128;AsVector;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;BitwiseAnd;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;BitwiseOr;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | -| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);summary;df-generated | -| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Clamp;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;ClampNative;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConditionalSelect;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToDouble;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToDouble;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;ConvertToInt32Native;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;ConvertToInt64Native;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToSingle;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToSingle;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToUInt32;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;ConvertToUInt32Native;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ConvertToUInt64;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;ConvertToUInt64Native;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;CopyTo;(System.Runtime.Intrinsics.Vector128,System.Span);summary;df-generated | | System.Runtime.Intrinsics;Vector128;CopyTo;(System.Runtime.Intrinsics.Vector128,T[]);summary;df-generated | | System.Runtime.Intrinsics;Vector128;CopyTo;(System.Runtime.Intrinsics.Vector128,T[],System.Int32);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Cos;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Cos;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.Double);summary;df-generated | @@ -45750,6 +49337,7 @@ neutral | System.Runtime.Intrinsics;Vector128;Create;(System.UInt64,System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Create;(System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Create;(T[]);summary;df-generated | @@ -45780,15 +49368,20 @@ neutral | System.Runtime.Intrinsics;Vector128;CreateScalarUnsafe;(System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector128;CreateScalarUnsafe;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector128;CreateScalarUnsafe;(T);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;CreateSequence;(T,T);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;DegreesToRadians;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;DegreesToRadians;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Divide;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Divide;(System.Runtime.Intrinsics.Vector128,T);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Dot;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Equals;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;EqualsAll;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;EqualsAny;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Exp;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Exp;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ExtractMostSignificantBits;(System.Runtime.Intrinsics.Vector128);summary;df-generated | -| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);summary;df-generated | -| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;GetElement;(System.Runtime.Intrinsics.Vector128,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector128;GreaterThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;GreaterThanAll;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -45796,6 +49389,15 @@ neutral | System.Runtime.Intrinsics;Vector128;GreaterThanOrEqual;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;GreaterThanOrEqualAll;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;GreaterThanOrEqualAny;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Hypot;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Hypot;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;IsNaN;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;IsNegative;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;IsPositive;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;IsPositiveInfinity;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;IsZero;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Lerp;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Lerp;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;LessThan;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;LessThanAll;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;LessThanAny;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -45807,11 +49409,25 @@ neutral | System.Runtime.Intrinsics;Vector128;LoadAlignedNonTemporal;(T*);summary;df-generated | | System.Runtime.Intrinsics;Vector128;LoadUnsafe;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector128;LoadUnsafe;(T,System.UIntPtr);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Log2;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Log2;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Log;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Log;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Max;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MaxMagnitude;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MaxMagnitudeNumber;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MaxNative;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MaxNumber;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Min;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MinMagnitude;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MinMagnitudeNumber;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MinNative;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MinNumber;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Multiply;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Multiply;(System.Runtime.Intrinsics.Vector128,T);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Multiply;(T,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Narrow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Narrow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Narrow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | @@ -45821,6 +49437,8 @@ neutral | System.Runtime.Intrinsics;Vector128;Narrow;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Negate;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;OnesComplement;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;RadiansToDegrees;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;RadiansToDegrees;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ShiftLeft;(System.Runtime.Intrinsics.Vector128,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ShiftLeft;(System.Runtime.Intrinsics.Vector128,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector128;ShiftLeft;(System.Runtime.Intrinsics.Vector128,System.Int32);summary;df-generated | @@ -45856,6 +49474,10 @@ neutral | System.Runtime.Intrinsics;Vector128;Shuffle;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Shuffle;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Shuffle;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Sin;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;Sin;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;SinCos;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector128;SinCos;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Sqrt;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;Store;(System.Runtime.Intrinsics.Vector128,T*);summary;df-generated | | System.Runtime.Intrinsics;Vector128;StoreAligned;(System.Runtime.Intrinsics.Vector128,T*);summary;df-generated | @@ -45896,6 +49518,7 @@ neutral | System.Runtime.Intrinsics;Vector128;ToString;();summary;df-generated | | System.Runtime.Intrinsics;Vector128;get_AllBitsSet;();summary;df-generated | | System.Runtime.Intrinsics;Vector128;get_Count;();summary;df-generated | +| System.Runtime.Intrinsics;Vector128;get_Indices;();summary;df-generated | | System.Runtime.Intrinsics;Vector128;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics;Vector128;get_Item;(System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector128;get_One;();summary;df-generated | @@ -45917,7 +49540,6 @@ neutral | System.Runtime.Intrinsics;Vector128;op_Subtraction;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;op_UnaryNegation;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector128;op_UnsignedRightShift;(System.Runtime.Intrinsics.Vector128,System.Int32);summary;df-generated | -| System.Runtime.Intrinsics;Vector256;Abs;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Add;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;AndNot;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;As;(System.Runtime.Intrinsics.Vector256);summary;df-generated | @@ -45937,20 +49559,26 @@ neutral | System.Runtime.Intrinsics;Vector256;AsVector;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;BitwiseAnd;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;BitwiseOr;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | -| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);summary;df-generated | -| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Clamp;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;ClampNative;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConditionalSelect;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToDouble;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToDouble;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;ConvertToInt32Native;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;ConvertToInt64Native;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToSingle;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToSingle;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToUInt32;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;ConvertToUInt32Native;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ConvertToUInt64;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;ConvertToUInt64Native;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;CopyTo;(System.Runtime.Intrinsics.Vector256,System.Span);summary;df-generated | | System.Runtime.Intrinsics;Vector256;CopyTo;(System.Runtime.Intrinsics.Vector256,T[]);summary;df-generated | | System.Runtime.Intrinsics;Vector256;CopyTo;(System.Runtime.Intrinsics.Vector256,T[],System.Int32);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Cos;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Cos;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.Double);summary;df-generated | @@ -45986,6 +49614,8 @@ neutral | System.Runtime.Intrinsics;Vector256;Create;(System.UInt64,System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Create;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Create;(System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Create;(T[]);summary;df-generated | @@ -46016,15 +49646,20 @@ neutral | System.Runtime.Intrinsics;Vector256;CreateScalarUnsafe;(System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector256;CreateScalarUnsafe;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector256;CreateScalarUnsafe;(T);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;CreateSequence;(T,T);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;DegreesToRadians;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;DegreesToRadians;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Divide;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Divide;(System.Runtime.Intrinsics.Vector256,T);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Dot;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Equals;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;EqualsAll;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;EqualsAny;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Exp;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Exp;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ExtractMostSignificantBits;(System.Runtime.Intrinsics.Vector256);summary;df-generated | -| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);summary;df-generated | -| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;GetElement;(System.Runtime.Intrinsics.Vector256,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector256;GreaterThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;GreaterThanAll;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | @@ -46032,6 +49667,15 @@ neutral | System.Runtime.Intrinsics;Vector256;GreaterThanOrEqual;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;GreaterThanOrEqualAll;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;GreaterThanOrEqualAny;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Hypot;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Hypot;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;IsNaN;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;IsNegative;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;IsPositive;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;IsPositiveInfinity;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;IsZero;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Lerp;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Lerp;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;LessThan;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;LessThanAll;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;LessThanAny;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | @@ -46043,11 +49687,25 @@ neutral | System.Runtime.Intrinsics;Vector256;LoadAlignedNonTemporal;(T*);summary;df-generated | | System.Runtime.Intrinsics;Vector256;LoadUnsafe;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector256;LoadUnsafe;(T,System.UIntPtr);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Log2;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Log2;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Log;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Log;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Max;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MaxMagnitude;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MaxMagnitudeNumber;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MaxNative;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MaxNumber;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Min;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MinMagnitude;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MinMagnitudeNumber;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MinNative;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MinNumber;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Multiply;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Multiply;(System.Runtime.Intrinsics.Vector256,T);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Multiply;(T,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Narrow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Narrow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Narrow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | @@ -46057,6 +49715,8 @@ neutral | System.Runtime.Intrinsics;Vector256;Narrow;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Negate;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;OnesComplement;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;RadiansToDegrees;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;RadiansToDegrees;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ShiftLeft;(System.Runtime.Intrinsics.Vector256,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ShiftLeft;(System.Runtime.Intrinsics.Vector256,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector256;ShiftLeft;(System.Runtime.Intrinsics.Vector256,System.Int32);summary;df-generated | @@ -46092,6 +49752,10 @@ neutral | System.Runtime.Intrinsics;Vector256;Shuffle;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Shuffle;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Shuffle;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Sin;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;Sin;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;SinCos;(System.Runtime.Intrinsics.Vector256);summary;df-generated | +| System.Runtime.Intrinsics;Vector256;SinCos;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Sqrt;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;Store;(System.Runtime.Intrinsics.Vector256,T*);summary;df-generated | | System.Runtime.Intrinsics;Vector256;StoreAligned;(System.Runtime.Intrinsics.Vector256,T*);summary;df-generated | @@ -46132,6 +49796,7 @@ neutral | System.Runtime.Intrinsics;Vector256;ToString;();summary;df-generated | | System.Runtime.Intrinsics;Vector256;get_AllBitsSet;();summary;df-generated | | System.Runtime.Intrinsics;Vector256;get_Count;();summary;df-generated | +| System.Runtime.Intrinsics;Vector256;get_Indices;();summary;df-generated | | System.Runtime.Intrinsics;Vector256;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics;Vector256;get_Item;(System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector256;get_One;();summary;df-generated | @@ -46153,7 +49818,6 @@ neutral | System.Runtime.Intrinsics;Vector256;op_Subtraction;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;op_UnaryNegation;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector256;op_UnsignedRightShift;(System.Runtime.Intrinsics.Vector256,System.Int32);summary;df-generated | -| System.Runtime.Intrinsics;Vector512;Abs;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Add;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;AndNot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;As;(System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -46173,20 +49837,26 @@ neutral | System.Runtime.Intrinsics;Vector512;AsVector;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;BitwiseAnd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;BitwiseOr;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | -| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);summary;df-generated | -| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Clamp;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;ClampNative;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConditionalSelect;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToDouble;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToDouble;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;ConvertToInt32Native;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToInt64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;ConvertToInt64Native;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToSingle;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToSingle;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToUInt32;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;ConvertToUInt32Native;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ConvertToUInt64;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;ConvertToUInt64Native;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;CopyTo;(System.Runtime.Intrinsics.Vector512,System.Span);summary;df-generated | | System.Runtime.Intrinsics;Vector512;CopyTo;(System.Runtime.Intrinsics.Vector512,T[]);summary;df-generated | | System.Runtime.Intrinsics;Vector512;CopyTo;(System.Runtime.Intrinsics.Vector512,T[],System.Int32);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Cos;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Cos;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte,System.Byte);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.Double);summary;df-generated | @@ -46222,6 +49892,9 @@ neutral | System.Runtime.Intrinsics;Vector512;Create;(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.ReadOnlySpan);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Create;(System.Runtime.Intrinsics.Vector64);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Create;(System.Runtime.Intrinsics.Vector128);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Create;(System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Create;(T[]);summary;df-generated | @@ -46252,15 +49925,20 @@ neutral | System.Runtime.Intrinsics;Vector512;CreateScalarUnsafe;(System.UInt64);summary;df-generated | | System.Runtime.Intrinsics;Vector512;CreateScalarUnsafe;(System.UIntPtr);summary;df-generated | | System.Runtime.Intrinsics;Vector512;CreateScalarUnsafe;(T);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;CreateSequence;(T,T);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;DegreesToRadians;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;DegreesToRadians;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Divide;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Divide;(System.Runtime.Intrinsics.Vector512,T);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Dot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Equals;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;EqualsAll;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;EqualsAny;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Exp;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Exp;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ExtractMostSignificantBits;(System.Runtime.Intrinsics.Vector512);summary;df-generated | -| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);summary;df-generated | -| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;FusedMultiplyAdd;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;GetElement;(System.Runtime.Intrinsics.Vector512,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector512;GreaterThan;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;GreaterThanAll;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -46268,6 +49946,15 @@ neutral | System.Runtime.Intrinsics;Vector512;GreaterThanOrEqual;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;GreaterThanOrEqualAll;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;GreaterThanOrEqualAny;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Hypot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Hypot;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;IsNaN;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;IsNegative;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;IsPositive;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;IsPositiveInfinity;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;IsZero;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Lerp;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Lerp;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;LessThan;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;LessThanAll;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;LessThanAny;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -46279,11 +49966,25 @@ neutral | System.Runtime.Intrinsics;Vector512;LoadAlignedNonTemporal;(T*);summary;df-generated | | System.Runtime.Intrinsics;Vector512;LoadUnsafe;(T);summary;df-generated | | System.Runtime.Intrinsics;Vector512;LoadUnsafe;(T,System.UIntPtr);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Log2;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Log2;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Log;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Log;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Max;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MaxMagnitude;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MaxMagnitudeNumber;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MaxNative;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MaxNumber;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Min;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MinMagnitude;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MinMagnitudeNumber;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MinNative;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MinNumber;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Multiply;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Multiply;(System.Runtime.Intrinsics.Vector512,T);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Multiply;(T,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;MultiplyAddEstimate;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Narrow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Narrow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Narrow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | @@ -46293,6 +49994,8 @@ neutral | System.Runtime.Intrinsics;Vector512;Narrow;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Negate;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;OnesComplement;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;RadiansToDegrees;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;RadiansToDegrees;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ShiftLeft;(System.Runtime.Intrinsics.Vector512,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ShiftLeft;(System.Runtime.Intrinsics.Vector512,System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector512;ShiftLeft;(System.Runtime.Intrinsics.Vector512,System.Int32);summary;df-generated | @@ -46328,6 +50031,10 @@ neutral | System.Runtime.Intrinsics;Vector512;Shuffle;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Shuffle;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Shuffle;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Sin;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;Sin;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;SinCos;(System.Runtime.Intrinsics.Vector512);summary;df-generated | +| System.Runtime.Intrinsics;Vector512;SinCos;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Sqrt;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;Store;(System.Runtime.Intrinsics.Vector512,T*);summary;df-generated | | System.Runtime.Intrinsics;Vector512;StoreAligned;(System.Runtime.Intrinsics.Vector512,T*);summary;df-generated | @@ -46366,6 +50073,7 @@ neutral | System.Runtime.Intrinsics;Vector512;ToString;();summary;df-generated | | System.Runtime.Intrinsics;Vector512;get_AllBitsSet;();summary;df-generated | | System.Runtime.Intrinsics;Vector512;get_Count;();summary;df-generated | +| System.Runtime.Intrinsics;Vector512;get_Indices;();summary;df-generated | | System.Runtime.Intrinsics;Vector512;get_IsSupported;();summary;df-generated | | System.Runtime.Intrinsics;Vector512;get_Item;(System.Int32);summary;df-generated | | System.Runtime.Intrinsics;Vector512;get_One;();summary;df-generated | @@ -46387,7 +50095,6 @@ neutral | System.Runtime.Intrinsics;Vector512;op_Subtraction;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;op_UnaryNegation;(System.Runtime.Intrinsics.Vector512);summary;df-generated | | System.Runtime.Intrinsics;Vector512;op_UnsignedRightShift;(System.Runtime.Intrinsics.Vector512,System.Int32);summary;df-generated | -| System.Runtime.Loader;AssemblyDependencyResolver;AssemblyDependencyResolver;(System.String);summary;df-generated | | System.Runtime.Loader;AssemblyLoadContext+ContextualReflectionScope;Dispose;();summary;df-generated | | System.Runtime.Loader;AssemblyLoadContext;AssemblyLoadContext;(System.Boolean);summary;df-generated | | System.Runtime.Loader;AssemblyLoadContext;AssemblyLoadContext;(System.String,System.Boolean);summary;df-generated | @@ -46441,6 +50148,11 @@ neutral | System.Runtime.Serialization.Json;DataContractJsonSerializer;DataContractJsonSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable);summary;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;IsStartObject;(System.Xml.XmlDictionaryReader);summary;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;IsStartObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.IO.Stream);summary;df-generated | +| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlDictionaryReader);summary;df-generated | +| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);summary;df-generated | +| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization.Json;DataContractJsonSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);summary;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;WriteEndObject;(System.Xml.XmlDictionaryWriter);summary;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;WriteEndObject;(System.Xml.XmlWriter);summary;df-generated | | System.Runtime.Serialization.Json;DataContractJsonSerializer;WriteObject;(System.IO.Stream,System.Object);summary;df-generated | @@ -46469,7 +50181,6 @@ neutral | System.Runtime.Serialization;CollectionDataContractAttribute;get_IsNamespaceSetExplicitly;();summary;df-generated | | System.Runtime.Serialization;CollectionDataContractAttribute;get_IsReferenceSetExplicitly;();summary;df-generated | | System.Runtime.Serialization;CollectionDataContractAttribute;get_IsValueNameSetExplicitly;();summary;df-generated | -| System.Runtime.Serialization;ContractNamespaceAttribute;ContractNamespaceAttribute;(System.String);summary;df-generated | | System.Runtime.Serialization;ContractNamespaceAttribute;get_ContractNamespace;();summary;df-generated | | System.Runtime.Serialization;DataContractAttribute;get_IsNameSetExplicitly;();summary;df-generated | | System.Runtime.Serialization;DataContractAttribute;get_IsNamespaceSetExplicitly;();summary;df-generated | @@ -46483,6 +50194,10 @@ neutral | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString);summary;df-generated | | System.Runtime.Serialization;DataContractSerializer;IsStartObject;(System.Xml.XmlDictionaryReader);summary;df-generated | | System.Runtime.Serialization;DataContractSerializer;IsStartObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);summary;df-generated | +| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver);summary;df-generated | +| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);summary;df-generated | | System.Runtime.Serialization;DataContractSerializer;WriteEndObject;(System.Xml.XmlDictionaryWriter);summary;df-generated | | System.Runtime.Serialization;DataContractSerializer;WriteEndObject;(System.Xml.XmlWriter);summary;df-generated | | System.Runtime.Serialization;DataContractSerializer;WriteObject;(System.Xml.XmlDictionaryWriter,System.Object,System.Runtime.Serialization.DataContractResolver);summary;df-generated | @@ -46576,7 +50291,6 @@ neutral | System.Runtime.Serialization;InvalidDataContractException;InvalidDataContractException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Runtime.Serialization;InvalidDataContractException;InvalidDataContractException;(System.String);summary;df-generated | | System.Runtime.Serialization;InvalidDataContractException;InvalidDataContractException;(System.String,System.Exception);summary;df-generated | -| System.Runtime.Serialization;KnownTypeAttribute;KnownTypeAttribute;(System.String);summary;df-generated | | System.Runtime.Serialization;KnownTypeAttribute;KnownTypeAttribute;(System.Type);summary;df-generated | | System.Runtime.Serialization;KnownTypeAttribute;get_MethodName;();summary;df-generated | | System.Runtime.Serialization;KnownTypeAttribute;get_Type;();summary;df-generated | @@ -46634,6 +50348,11 @@ neutral | System.Runtime.Serialization;XPathQueryGenerator;CreateFromDataContractSerializer;(System.Type,System.Reflection.MemberInfo[],System.Xml.XmlNamespaceManager);summary;df-generated | | System.Runtime.Serialization;XmlObjectSerializer;IsStartObject;(System.Xml.XmlDictionaryReader);summary;df-generated | | System.Runtime.Serialization;XmlObjectSerializer;IsStartObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.IO.Stream);summary;df-generated | +| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader);summary;df-generated | +| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);summary;df-generated | +| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader);summary;df-generated | +| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);summary;df-generated | | System.Runtime.Serialization;XmlObjectSerializer;WriteEndObject;(System.Xml.XmlDictionaryWriter);summary;df-generated | | System.Runtime.Serialization;XmlObjectSerializer;WriteEndObject;(System.Xml.XmlWriter);summary;df-generated | | System.Runtime.Serialization;XmlObjectSerializer;WriteObject;(System.IO.Stream,System.Object);summary;df-generated | @@ -47083,7 +50802,6 @@ neutral | System.Security.Claims;ClaimsPrincipal;WriteTo;(System.IO.BinaryWriter,System.Byte[]);summary;df-generated | | System.Security.Claims;ClaimsPrincipal;get_Current;();summary;df-generated | | System.Security.Claims;ClaimsPrincipal;get_Identity;();summary;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);summary;df-generated | | System.Security.Cryptography.X509Certificates;CertificateRequest;Create;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.Byte[]);summary;df-generated | | System.Security.Cryptography.X509Certificates;CertificateRequest;Create;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.X509SignatureGenerator,System.DateTimeOffset,System.DateTimeOffset,System.ReadOnlySpan);summary;df-generated | | System.Security.Cryptography.X509Certificates;CertificateRequest;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.DateTimeOffset,System.DateTimeOffset,System.Byte[]);summary;df-generated | @@ -47120,6 +50838,11 @@ neutral | System.Security.Cryptography.X509Certificates;ECDsaCertificateExtensions;CopyWithPrivateKey;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.ECDsa);summary;df-generated | | System.Security.Cryptography.X509Certificates;ECDsaCertificateExtensions;GetECDsaPrivateKey;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | | System.Security.Cryptography.X509Certificates;ECDsaCertificateExtensions;GetECDsaPublicKey;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoadLimitExceededException;Pkcs12LoadLimitExceededException;(System.String);summary;df-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;MakeReadOnly;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;get_DangerousNoLimits;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;get_Defaults;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;get_IsReadOnly;();summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;CreateFromSubjectPublicKeyInfo;(System.ReadOnlySpan,System.Int32);summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;ExportSubjectPublicKeyInfo;();summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;GetDSAPublicKey;();summary;df-generated | @@ -47127,7 +50850,10 @@ neutral | System.Security.Cryptography.X509Certificates;PublicKey;GetECDsaPublicKey;();summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;GetRSAPublicKey;();summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;PublicKey;(System.Security.Cryptography.AsymmetricAlgorithm);summary;df-generated | +| System.Security.Cryptography.X509Certificates;PublicKey;PublicKey;(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData);summary;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;TryExportSubjectPublicKeyInfo;(System.Span,System.Int32);summary;df-generated | +| System.Security.Cryptography.X509Certificates;PublicKey;get_EncodedKeyValue;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;PublicKey;get_EncodedParameters;();summary;df-generated | | System.Security.Cryptography.X509Certificates;RSACertificateExtensions;CopyWithPrivateKey;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.RSA);summary;df-generated | | System.Security.Cryptography.X509Certificates;RSACertificateExtensions;GetRSAPrivateKey;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | | System.Security.Cryptography.X509Certificates;RSACertificateExtensions;GetRSAPublicKey;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | @@ -47226,7 +50952,6 @@ neutral | System.Security.Cryptography.X509Certificates;X509Certificate2;get_NotAfter;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_NotBefore;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_RawData;();summary;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate2;get_RawDataMemory;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_SerialNumber;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_SignatureAlgorithm;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_SubjectName;();summary;df-generated | @@ -47250,7 +50975,6 @@ neutral | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;Remove;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;TryExportCertificatePems;(System.Span,System.Int32);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;TryExportPkcs7Pem;(System.Span,System.Int32);summary;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Enumerator;Dispose;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Enumerator;MoveNext;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Enumerator;Reset;();summary;df-generated | @@ -47282,6 +51006,8 @@ neutral | System.Security.Cryptography.X509Certificates;X509Certificate;GetKeyAlgorithmParametersString;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetPublicKey;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetPublicKeyString;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertData;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertDataString;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetSerialNumber;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetSerialNumberString;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;Import;(System.Byte[]);summary;df-generated | @@ -47317,7 +51043,17 @@ neutral | System.Security.Cryptography.X509Certificates;X509CertificateCollection;IndexOf;(System.Security.Cryptography.X509Certificates.X509Certificate);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;OnValidate;(System.Object);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;Remove;(System.Security.Cryptography.X509Certificates.X509Certificate);summary;df-generated | -| System.Security.Cryptography.X509Certificates;X509Chain;Build;(System.Security.Cryptography.X509Certificates.X509Certificate2);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadCertificate;(System.Byte[]);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadCertificate;(System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadCertificateFromFile;(System.String);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12;(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12;(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12Collection;(System.Byte[],System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12Collection;(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12CollectionFromFile;(System.String,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12CollectionFromFile;(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12FromFile;(System.String,System.ReadOnlySpan,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509CertificateLoader;LoadPkcs12FromFile;(System.String,System.String,System.Security.Cryptography.X509Certificates.X509KeyStorageFlags,System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;Create;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;Dispose;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;Dispose;(System.Boolean);summary;df-generated | @@ -47327,6 +51063,9 @@ neutral | System.Security.Cryptography.X509Certificates;X509Chain;get_ChainContext;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;get_ChainElements;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;get_ChainStatus;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509ChainElement;get_Certificate;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509ChainElement;get_ChainElementStatus;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509ChainElement;get_Information;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;get_Count;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;get_IsSynchronized;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509ChainElementEnumerator;Dispose;();summary;df-generated | @@ -47371,10 +51110,11 @@ neutral | System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.Security.Cryptography.X509Certificates.StoreName,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.String);summary;df-generated | -| System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.String,System.Security.Cryptography.X509Certificates.StoreLocation);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.String,System.Security.Cryptography.X509Certificates.StoreLocation,System.Security.Cryptography.X509Certificates.OpenFlags);summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;get_Certificates;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;get_IsOpen;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509Store;get_Location;();summary;df-generated | +| System.Security.Cryptography.X509Certificates;X509Store;get_Name;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509Store;get_StoreHandle;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;EnumerateDnsNames;();summary;df-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;EnumerateIPAddresses;();summary;df-generated | @@ -47453,7 +51193,6 @@ neutral | System.Security.Cryptography.Xml;ReferenceList;get_IsFixedSize;();summary;df-generated | | System.Security.Cryptography.Xml;ReferenceList;get_IsReadOnly;();summary;df-generated | | System.Security.Cryptography.Xml;ReferenceList;get_IsSynchronized;();summary;df-generated | -| System.Security.Cryptography.Xml;ReferenceList;get_ItemOf;(System.Int32);summary;df-generated | | System.Security.Cryptography.Xml;Signature;GetXml;();summary;df-generated | | System.Security.Cryptography.Xml;SignedInfo;get_Count;();summary;df-generated | | System.Security.Cryptography.Xml;SignedInfo;get_IsReadOnly;();summary;df-generated | @@ -47644,7 +51383,9 @@ neutral | System.Security.Cryptography;CngKey;SetProperty;(System.Security.Cryptography.CngProperty);summary;df-generated | | System.Security.Cryptography;CngKey;get_Algorithm;();summary;df-generated | | System.Security.Cryptography;CngKey;get_AlgorithmGroup;();summary;df-generated | +| System.Security.Cryptography;CngKey;get_ExportPolicy;();summary;df-generated | | System.Security.Cryptography;CngKey;get_Handle;();summary;df-generated | +| System.Security.Cryptography;CngKey;get_IsEphemeral;();summary;df-generated | | System.Security.Cryptography;CngKey;get_IsMachineKey;();summary;df-generated | | System.Security.Cryptography;CngKey;get_KeyName;();summary;df-generated | | System.Security.Cryptography;CngKey;get_KeySize;();summary;df-generated | @@ -47666,9 +51407,11 @@ neutral | System.Security.Cryptography;CngKeyBlobFormat;get_Pkcs8PrivateBlob;();summary;df-generated | | System.Security.Cryptography;CngKeyBlobFormat;op_Equality;(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat);summary;df-generated | | System.Security.Cryptography;CngKeyBlobFormat;op_Inequality;(System.Security.Cryptography.CngKeyBlobFormat,System.Security.Cryptography.CngKeyBlobFormat);summary;df-generated | +| System.Security.Cryptography;CngKeyCreationParameters;get_Parameters;();summary;df-generated | | System.Security.Cryptography;CngProperty;Equals;(System.Object);summary;df-generated | | System.Security.Cryptography;CngProperty;Equals;(System.Security.Cryptography.CngProperty);summary;df-generated | | System.Security.Cryptography;CngProperty;GetHashCode;();summary;df-generated | +| System.Security.Cryptography;CngProperty;get_Options;();summary;df-generated | | System.Security.Cryptography;CngProperty;op_Equality;(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty);summary;df-generated | | System.Security.Cryptography;CngProperty;op_Inequality;(System.Security.Cryptography.CngProperty,System.Security.Cryptography.CngProperty);summary;df-generated | | System.Security.Cryptography;CngProvider;Equals;(System.Object);summary;df-generated | @@ -47683,7 +51426,11 @@ neutral | System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String);summary;df-generated | | System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String);summary;df-generated | | System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String);summary;df-generated | -| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);summary;df-generated | +| System.Security.Cryptography;CngUIPolicy;get_CreationTitle;();summary;df-generated | +| System.Security.Cryptography;CngUIPolicy;get_Description;();summary;df-generated | +| System.Security.Cryptography;CngUIPolicy;get_FriendlyName;();summary;df-generated | +| System.Security.Cryptography;CngUIPolicy;get_ProtectionLevel;();summary;df-generated | +| System.Security.Cryptography;CngUIPolicy;get_UseContext;();summary;df-generated | | System.Security.Cryptography;CryptoConfig;AddAlgorithm;(System.Type,System.String[]);summary;df-generated | | System.Security.Cryptography;CryptoConfig;AddOID;(System.String,System.String[]);summary;df-generated | | System.Security.Cryptography;CryptoConfig;CreateFromName;(System.String);summary;df-generated | @@ -47834,6 +51581,7 @@ neutral | System.Security.Cryptography;DSACng;TryExportPkcs8PrivateKey;(System.Span,System.Int32);summary;df-generated | | System.Security.Cryptography;DSACng;VerifySignature;(System.Byte[],System.Byte[]);summary;df-generated | | System.Security.Cryptography;DSACng;VerifySignatureCore;(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.DSASignatureFormat);summary;df-generated | +| System.Security.Cryptography;DSACng;get_Key;();summary;df-generated | | System.Security.Cryptography;DSACryptoServiceProvider;CreateSignature;(System.Byte[]);summary;df-generated | | System.Security.Cryptography;DSACryptoServiceProvider;DSACryptoServiceProvider;(System.Int32);summary;df-generated | | System.Security.Cryptography;DSACryptoServiceProvider;DSACryptoServiceProvider;(System.Int32,System.Security.Cryptography.CspParameters);summary;df-generated | @@ -47954,6 +51702,7 @@ neutral | System.Security.Cryptography;ECDiffieHellmanCng;TryExportEncryptedPkcs8PrivateKey;(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32);summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCng;TryExportEncryptedPkcs8PrivateKey;(System.ReadOnlySpan,System.Security.Cryptography.PbeParameters,System.Span,System.Int32);summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCng;TryExportPkcs8PrivateKey;(System.Span,System.Int32);summary;df-generated | +| System.Security.Cryptography;ECDiffieHellmanCng;get_Key;();summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCng;get_UseSecretAgreementAsHmacKey;();summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCngPublicKey;Dispose;(System.Boolean);summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCngPublicKey;ExportExplicitParameters;();summary;df-generated | @@ -47963,7 +51712,6 @@ neutral | System.Security.Cryptography;ECDiffieHellmanCngPublicKey;Import;();summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCngPublicKey;ToXmlString;();summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanCngPublicKey;get_BlobFormat;();summary;df-generated | -| System.Security.Cryptography;ECDiffieHellmanOpenSsl;DuplicateKeyHandle;();summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanOpenSsl;ECDiffieHellmanOpenSsl;(System.Int32);summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanOpenSsl;ECDiffieHellmanOpenSsl;(System.IntPtr);summary;df-generated | | System.Security.Cryptography;ECDiffieHellmanOpenSsl;ECDiffieHellmanOpenSsl;(System.Security.Cryptography.ECCurve);summary;df-generated | @@ -48057,7 +51805,7 @@ neutral | System.Security.Cryptography;ECDsaCng;VerifyHash;(System.Byte[],System.Byte[]);summary;df-generated | | System.Security.Cryptography;ECDsaCng;VerifyHash;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | | System.Security.Cryptography;ECDsaCng;VerifyHashCore;(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.DSASignatureFormat);summary;df-generated | -| System.Security.Cryptography;ECDsaOpenSsl;DuplicateKeyHandle;();summary;df-generated | +| System.Security.Cryptography;ECDsaCng;get_Key;();summary;df-generated | | System.Security.Cryptography;ECDsaOpenSsl;ECDsaOpenSsl;(System.Int32);summary;df-generated | | System.Security.Cryptography;ECDsaOpenSsl;ECDsaOpenSsl;(System.IntPtr);summary;df-generated | | System.Security.Cryptography;ECDsaOpenSsl;ECDsaOpenSsl;(System.Security.Cryptography.ECCurve);summary;df-generated | @@ -48275,13 +52023,92 @@ neutral | System.Security.Cryptography;IncrementalHash;TryGetHashAndReset;(System.Span,System.Int32);summary;df-generated | | System.Security.Cryptography;IncrementalHash;get_HashLengthInBytes;();summary;df-generated | | System.Security.Cryptography;KeySizes;KeySizes;(System.Int32,System.Int32,System.Int32);summary;df-generated | +| System.Security.Cryptography;KeySizes;get_MaxSize;();summary;df-generated | +| System.Security.Cryptography;KeySizes;get_MinSize;();summary;df-generated | +| System.Security.Cryptography;KeySizes;get_SkipSize;();summary;df-generated | | System.Security.Cryptography;KeyedHashAlgorithm;Create;();summary;df-generated | | System.Security.Cryptography;KeyedHashAlgorithm;Create;(System.String);summary;df-generated | | System.Security.Cryptography;KeyedHashAlgorithm;Dispose;(System.Boolean);summary;df-generated | +| System.Security.Cryptography;Kmac128;AppendData;(System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac128;AppendData;(System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;Clone;();summary;df-generated | | System.Security.Cryptography;Kmac128;Dispose;();summary;df-generated | +| System.Security.Cryptography;Kmac128;GetCurrentHash;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Kmac128;GetCurrentHash;(System.Span);summary;df-generated | +| System.Security.Cryptography;Kmac128;GetHashAndReset;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Kmac128;GetHashAndReset;(System.Span);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.Byte[],System.Byte[],System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashDataAsync;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac128;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac128;Kmac128;(System.Byte[],System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac128;Kmac128;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac128;get_IsSupported;();summary;df-generated | +| System.Security.Cryptography;Kmac256;AppendData;(System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac256;AppendData;(System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;Clone;();summary;df-generated | | System.Security.Cryptography;Kmac256;Dispose;();summary;df-generated | +| System.Security.Cryptography;Kmac256;GetCurrentHash;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Kmac256;GetCurrentHash;(System.Span);summary;df-generated | +| System.Security.Cryptography;Kmac256;GetHashAndReset;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Kmac256;GetHashAndReset;(System.Span);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.Byte[],System.Byte[],System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashDataAsync;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac256;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Kmac256;Kmac256;(System.Byte[],System.Byte[]);summary;df-generated | +| System.Security.Cryptography;Kmac256;Kmac256;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;Kmac256;get_IsSupported;();summary;df-generated | +| System.Security.Cryptography;KmacXof128;AppendData;(System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof128;AppendData;(System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;Clone;();summary;df-generated | | System.Security.Cryptography;KmacXof128;Dispose;();summary;df-generated | +| System.Security.Cryptography;KmacXof128;GetCurrentHash;(System.Int32);summary;df-generated | +| System.Security.Cryptography;KmacXof128;GetCurrentHash;(System.Span);summary;df-generated | +| System.Security.Cryptography;KmacXof128;GetHashAndReset;(System.Int32);summary;df-generated | +| System.Security.Cryptography;KmacXof128;GetHashAndReset;(System.Span);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.Byte[],System.Byte[],System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashDataAsync;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof128;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof128;KmacXof128;(System.Byte[],System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof128;KmacXof128;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof128;get_IsSupported;();summary;df-generated | +| System.Security.Cryptography;KmacXof256;AppendData;(System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof256;AppendData;(System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;Clone;();summary;df-generated | | System.Security.Cryptography;KmacXof256;Dispose;();summary;df-generated | +| System.Security.Cryptography;KmacXof256;GetCurrentHash;(System.Int32);summary;df-generated | +| System.Security.Cryptography;KmacXof256;GetCurrentHash;(System.Span);summary;df-generated | +| System.Security.Cryptography;KmacXof256;GetHashAndReset;(System.Int32);summary;df-generated | +| System.Security.Cryptography;KmacXof256;GetHashAndReset;(System.Span);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.Byte[],System.Byte[],System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.ReadOnlySpan,System.IO.Stream,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Int32,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashData;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashDataAsync;(System.Byte[],System.IO.Stream,System.Int32,System.Byte[],System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Int32,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof256;HashDataAsync;(System.ReadOnlyMemory,System.IO.Stream,System.Memory,System.ReadOnlyMemory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;KmacXof256;KmacXof256;(System.Byte[],System.Byte[]);summary;df-generated | +| System.Security.Cryptography;KmacXof256;KmacXof256;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System.Security.Cryptography;KmacXof256;get_IsSupported;();summary;df-generated | | System.Security.Cryptography;MD5;Create;();summary;df-generated | | System.Security.Cryptography;MD5;Create;(System.String);summary;df-generated | | System.Security.Cryptography;MD5;HashData;(System.Byte[]);summary;df-generated | @@ -48315,7 +52142,6 @@ neutral | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.String,System.Byte[],System.String,System.Int32);summary;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.String,System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);summary;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;Reset;();summary;df-generated | -| System.Security.Cryptography;PbeParameters;PbeParameters;(System.Security.Cryptography.PbeEncryptionAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Int32);summary;df-generated | | System.Security.Cryptography;PbeParameters;get_EncryptionAlgorithm;();summary;df-generated | | System.Security.Cryptography;PbeParameters;get_HashAlgorithm;();summary;df-generated | | System.Security.Cryptography;PbeParameters;get_IterationCount;();summary;df-generated | @@ -48426,6 +52252,7 @@ neutral | System.Security.Cryptography;RSACng;TrySignHash;(System.ReadOnlySpan,System.Span,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding,System.Int32);summary;df-generated | | System.Security.Cryptography;RSACng;VerifyHash;(System.Byte[],System.Byte[],System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);summary;df-generated | | System.Security.Cryptography;RSACng;VerifyHash;(System.ReadOnlySpan,System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);summary;df-generated | +| System.Security.Cryptography;RSACng;get_Key;();summary;df-generated | | System.Security.Cryptography;RSACryptoServiceProvider;Decrypt;(System.Byte[],System.Boolean);summary;df-generated | | System.Security.Cryptography;RSACryptoServiceProvider;Decrypt;(System.Byte[],System.Security.Cryptography.RSAEncryptionPadding);summary;df-generated | | System.Security.Cryptography;RSACryptoServiceProvider;DecryptValue;(System.Byte[]);summary;df-generated | @@ -48470,7 +52297,6 @@ neutral | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;CreateKeyExchange;(System.Byte[]);summary;df-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;CreateKeyExchange;(System.Byte[],System.Type);summary;df-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;get_Parameters;();summary;df-generated | -| System.Security.Cryptography;RSAOpenSsl;DuplicateKeyHandle;();summary;df-generated | | System.Security.Cryptography;RSAOpenSsl;ExportParameters;(System.Boolean);summary;df-generated | | System.Security.Cryptography;RSAOpenSsl;ImportParameters;(System.Security.Cryptography.RSAParameters);summary;df-generated | | System.Security.Cryptography;RSAOpenSsl;RSAOpenSsl;(System.Int32);summary;df-generated | @@ -48528,7 +52354,6 @@ neutral | System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Byte[],System.Int32,System.Security.Cryptography.HashAlgorithmName);summary;df-generated | | System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Int32);summary;df-generated | | System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Int32,System.Int32);summary;df-generated | -| System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Int32,System.Int32,System.Security.Cryptography.HashAlgorithmName);summary;df-generated | | System.Security.Cryptography;Rfc2898DeriveBytes;get_HashAlgorithm;();summary;df-generated | | System.Security.Cryptography;Rijndael;Create;();summary;df-generated | | System.Security.Cryptography;Rijndael;Create;(System.String);summary;df-generated | @@ -48670,7 +52495,9 @@ neutral | System.Security.Cryptography;SP800108HmacCounterKdf;DeriveKey;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span);summary;df-generated | | System.Security.Cryptography;SP800108HmacCounterKdf;DeriveKey;(System.String,System.String,System.Int32);summary;df-generated | | System.Security.Cryptography;SP800108HmacCounterKdf;Dispose;();summary;df-generated | -| System.Security.Cryptography;SafeEvpPKeyHandle;DuplicateHandle;();summary;df-generated | +| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.Byte[],System.Security.Cryptography.HashAlgorithmName);summary;df-generated | +| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName);summary;df-generated | +| System.Security.Cryptography;SafeEvpPKeyHandle;OpenKeyFromProvider;(System.String,System.String);summary;df-generated | | System.Security.Cryptography;SafeEvpPKeyHandle;OpenPrivateKeyFromEngine;(System.String,System.String);summary;df-generated | | System.Security.Cryptography;SafeEvpPKeyHandle;OpenPublicKeyFromEngine;(System.String,System.String);summary;df-generated | | System.Security.Cryptography;SafeEvpPKeyHandle;ReleaseHandle;();summary;df-generated | @@ -48691,6 +52518,9 @@ neutral | System.Security.Cryptography;Shake128;HashData;(System.ReadOnlySpan,System.Span);summary;df-generated | | System.Security.Cryptography;Shake128;HashDataAsync;(System.IO.Stream,System.Int32,System.Threading.CancellationToken);summary;df-generated | | System.Security.Cryptography;Shake128;HashDataAsync;(System.IO.Stream,System.Memory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Shake128;Read;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Shake128;Read;(System.Span);summary;df-generated | +| System.Security.Cryptography;Shake128;Reset;();summary;df-generated | | System.Security.Cryptography;Shake128;get_IsSupported;();summary;df-generated | | System.Security.Cryptography;Shake256;AppendData;(System.Byte[]);summary;df-generated | | System.Security.Cryptography;Shake256;AppendData;(System.ReadOnlySpan);summary;df-generated | @@ -48706,6 +52536,9 @@ neutral | System.Security.Cryptography;Shake256;HashData;(System.ReadOnlySpan,System.Span);summary;df-generated | | System.Security.Cryptography;Shake256;HashDataAsync;(System.IO.Stream,System.Int32,System.Threading.CancellationToken);summary;df-generated | | System.Security.Cryptography;Shake256;HashDataAsync;(System.IO.Stream,System.Memory,System.Threading.CancellationToken);summary;df-generated | +| System.Security.Cryptography;Shake256;Read;(System.Int32);summary;df-generated | +| System.Security.Cryptography;Shake256;Read;(System.Span);summary;df-generated | +| System.Security.Cryptography;Shake256;Reset;();summary;df-generated | | System.Security.Cryptography;Shake256;get_IsSupported;();summary;df-generated | | System.Security.Cryptography;SignatureDescription;CreateDigest;();summary;df-generated | | System.Security.Cryptography;SignatureDescription;SignatureDescription;(System.Security.SecurityElement);summary;df-generated | @@ -49596,6 +53429,10 @@ neutral | System.Text.Json.Nodes;JsonArray;Contains;(System.Text.Json.Nodes.JsonNode);summary;df-generated | | System.Text.Json.Nodes;JsonArray;IndexOf;(System.Text.Json.Nodes.JsonNode);summary;df-generated | | System.Text.Json.Nodes;JsonArray;JsonArray;(System.Nullable);summary;df-generated | +| System.Text.Json.Nodes;JsonArray;JsonArray;(System.ReadOnlySpan);summary;df-generated | +| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNodeOptions,System.ReadOnlySpan);summary;df-generated | +| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[]);summary;df-generated | +| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNode[]);summary;df-generated | | System.Text.Json.Nodes;JsonArray;Remove;(System.Text.Json.Nodes.JsonNode);summary;df-generated | | System.Text.Json.Nodes;JsonArray;RemoveAt;(System.Int32);summary;df-generated | | System.Text.Json.Nodes;JsonArray;WriteTo;(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions);summary;df-generated | @@ -49614,11 +53451,15 @@ neutral | System.Text.Json.Nodes;JsonNode;WriteTo;(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json.Nodes;JsonObject;Contains;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Text.Json.Nodes;JsonObject;ContainsKey;(System.String);summary;df-generated | +| System.Text.Json.Nodes;JsonObject;GetAt;(System.Int32);summary;df-generated | | System.Text.Json.Nodes;JsonObject;IndexOf;(System.Collections.Generic.KeyValuePair);summary;df-generated | +| System.Text.Json.Nodes;JsonObject;IndexOf;(System.String);summary;df-generated | +| System.Text.Json.Nodes;JsonObject;JsonObject;(System.Collections.Generic.IEnumerable>,System.Nullable);summary;df-generated | | System.Text.Json.Nodes;JsonObject;JsonObject;(System.Nullable);summary;df-generated | | System.Text.Json.Nodes;JsonObject;Remove;(System.Collections.Generic.KeyValuePair);summary;df-generated | | System.Text.Json.Nodes;JsonObject;Remove;(System.String);summary;df-generated | | System.Text.Json.Nodes;JsonObject;RemoveAt;(System.Int32);summary;df-generated | +| System.Text.Json.Nodes;JsonObject;TryGetPropertyValue;(System.String,System.Text.Json.Nodes.JsonNode);summary;df-generated | | System.Text.Json.Nodes;JsonObject;TryGetValue;(System.String,System.Text.Json.Nodes.JsonNode);summary;df-generated | | System.Text.Json.Nodes;JsonObject;WriteTo;(System.Text.Json.Utf8JsonWriter,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json.Nodes;JsonObject;get_Count;();summary;df-generated | @@ -49659,10 +53500,16 @@ neutral | System.Text.Json.Nodes;JsonValue;Create;(System.UInt32,System.Nullable);summary;df-generated | | System.Text.Json.Nodes;JsonValue;Create;(System.UInt64,System.Nullable);summary;df-generated | | System.Text.Json.Nodes;JsonValue;Create;(T,System.Nullable);summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporter;GetJsonSchemaAsNode;(System.Text.Json.JsonSerializerOptions,System.Type,System.Text.Json.Schema.JsonSchemaExporterOptions);summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporter;GetJsonSchemaAsNode;(System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Text.Json.Schema.JsonSchemaExporterOptions);summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporterContext;get_BaseTypeInfo;();summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporterContext;get_Path;();summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporterContext;get_PropertyInfo;();summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporterContext;get_TypeInfo;();summary;df-generated | +| System.Text.Json.Schema;JsonSchemaExporterOptions;get_Default;();summary;df-generated | | System.Text.Json.Serialization.Metadata;DefaultJsonTypeInfoResolver;get_Modifiers;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonDerivedType;JsonDerivedType;(System.Type);summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonDerivedType;JsonDerivedType;(System.Type,System.Int32);summary;df-generated | -| System.Text.Json.Serialization.Metadata;JsonDerivedType;JsonDerivedType;(System.Type,System.String);summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonDerivedType;get_DerivedType;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonDerivedType;get_TypeDiscriminator;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateImmutableDictionaryInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues,System.Func>,TCollection>);summary;df-generated | @@ -49707,10 +53554,25 @@ neutral | System.Text.Json.Serialization.Metadata;JsonMetadataServices;get_UInt128Converter;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;get_UriConverter;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;get_VersionConverter;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_DeclaringType;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_DefaultValue;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_HasDefaultValue;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_IsMemberInitializer;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_IsNullable;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_Name;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_ParameterType;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_Position;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonPolymorphismOptions;get_DerivedTypes;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonPropertyInfo;get_DeclaringType;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonPropertyInfo;get_Options;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;get_PropertyType;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;MakeReadOnly;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_Converter;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_ElementType;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_KeyType;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_Kind;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_Options;();summary;df-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfo;get_Type;();summary;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;WithAddedModifier;(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver,System.Action);summary;df-generated | | System.Text.Json.Serialization;IJsonOnDeserialized;OnDeserialized;();summary;df-generated | | System.Text.Json.Serialization;IJsonOnDeserializing;OnDeserializing;();summary;df-generated | @@ -49726,10 +53588,10 @@ neutral | System.Text.Json.Serialization;JsonConverter;get_Type;();summary;df-generated | | System.Text.Json.Serialization;JsonConverterAttribute;CreateConverter;(System.Type);summary;df-generated | | System.Text.Json.Serialization;JsonConverterAttribute;JsonConverterAttribute;(System.Type);summary;df-generated | +| System.Text.Json.Serialization;JsonConverterAttribute;get_ConverterType;();summary;df-generated | | System.Text.Json.Serialization;JsonConverterFactory;get_Type;();summary;df-generated | | System.Text.Json.Serialization;JsonDerivedTypeAttribute;JsonDerivedTypeAttribute;(System.Type);summary;df-generated | | System.Text.Json.Serialization;JsonDerivedTypeAttribute;JsonDerivedTypeAttribute;(System.Type,System.Int32);summary;df-generated | -| System.Text.Json.Serialization;JsonDerivedTypeAttribute;JsonDerivedTypeAttribute;(System.Type,System.String);summary;df-generated | | System.Text.Json.Serialization;JsonDerivedTypeAttribute;get_DerivedType;();summary;df-generated | | System.Text.Json.Serialization;JsonDerivedTypeAttribute;get_TypeDiscriminator;();summary;df-generated | | System.Text.Json.Serialization;JsonNumberEnumConverter;CanConvert;(System.Type);summary;df-generated | @@ -49737,7 +53599,6 @@ neutral | System.Text.Json.Serialization;JsonNumberHandlingAttribute;get_Handling;();summary;df-generated | | System.Text.Json.Serialization;JsonObjectCreationHandlingAttribute;JsonObjectCreationHandlingAttribute;(System.Text.Json.Serialization.JsonObjectCreationHandling);summary;df-generated | | System.Text.Json.Serialization;JsonObjectCreationHandlingAttribute;get_Handling;();summary;df-generated | -| System.Text.Json.Serialization;JsonPropertyNameAttribute;JsonPropertyNameAttribute;(System.String);summary;df-generated | | System.Text.Json.Serialization;JsonPropertyNameAttribute;get_Name;();summary;df-generated | | System.Text.Json.Serialization;JsonPropertyOrderAttribute;JsonPropertyOrderAttribute;(System.Int32);summary;df-generated | | System.Text.Json.Serialization;JsonPropertyOrderAttribute;get_Order;();summary;df-generated | @@ -49747,6 +53608,7 @@ neutral | System.Text.Json.Serialization;JsonSourceGenerationOptionsAttribute;JsonSourceGenerationOptionsAttribute;(System.Text.Json.JsonSerializerDefaults);summary;df-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;CanConvert;(System.Type);summary;df-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;CanConvert;(System.Type);summary;df-generated | +| System.Text.Json.Serialization;JsonStringEnumMemberNameAttribute;get_Name;();summary;df-generated | | System.Text.Json.Serialization;JsonUnmappedMemberHandlingAttribute;JsonUnmappedMemberHandlingAttribute;(System.Text.Json.Serialization.JsonUnmappedMemberHandling);summary;df-generated | | System.Text.Json.Serialization;JsonUnmappedMemberHandlingAttribute;get_UnmappedMemberHandling;();summary;df-generated | | System.Text.Json.Serialization;ReferenceHandler;CreateResolver;();summary;df-generated | @@ -49770,6 +53632,7 @@ neutral | System.Text.Json;JsonElement+ObjectEnumerator;MoveNext;();summary;df-generated | | System.Text.Json;JsonElement+ObjectEnumerator;Reset;();summary;df-generated | | System.Text.Json;JsonElement+ObjectEnumerator;get_Current;();summary;df-generated | +| System.Text.Json;JsonElement;DeepEquals;(System.Text.Json.JsonElement,System.Text.Json.JsonElement);summary;df-generated | | System.Text.Json;JsonElement;GetArrayLength;();summary;df-generated | | System.Text.Json;JsonElement;GetBoolean;();summary;df-generated | | System.Text.Json;JsonElement;GetByte;();summary;df-generated | @@ -49782,6 +53645,7 @@ neutral | System.Text.Json;JsonElement;GetInt16;();summary;df-generated | | System.Text.Json;JsonElement;GetInt32;();summary;df-generated | | System.Text.Json;JsonElement;GetInt64;();summary;df-generated | +| System.Text.Json;JsonElement;GetPropertyCount;();summary;df-generated | | System.Text.Json;JsonElement;GetRawText;();summary;df-generated | | System.Text.Json;JsonElement;GetSByte;();summary;df-generated | | System.Text.Json;JsonElement;GetSingle;();summary;df-generated | @@ -49868,7 +53732,9 @@ neutral | System.Text.Json;JsonSerializer;DeserializeAsync;(System.IO.Stream,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;DeserializeAsync;(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;DeserializeAsync;(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);summary;df-generated | +| System.Text.Json;JsonSerializer;DeserializeAsyncEnumerable;(System.IO.Stream,System.Boolean,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;DeserializeAsyncEnumerable;(System.IO.Stream,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | +| System.Text.Json;JsonSerializer;DeserializeAsyncEnumerable;(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Boolean,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;DeserializeAsyncEnumerable;(System.IO.Stream,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;Serialize;(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json;JsonSerializer;Serialize;(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext);summary;df-generated | @@ -49879,8 +53745,11 @@ neutral | System.Text.Json;JsonSerializer;Serialize;(System.IO.Stream,TValue,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json;JsonSerializer;Serialize;(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json;JsonSerializer;Serialize;(TValue,System.Text.Json.JsonSerializerOptions);summary;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,System.Object,System.Type,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext,System.Threading.CancellationToken);summary;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,TValue,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,TValue,System.Text.Json.JsonSerializerOptions,System.Threading.CancellationToken);summary;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(System.Object,System.Type,System.Text.Json.JsonSerializerOptions);summary;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(System.Object,System.Type,System.Text.Json.Serialization.JsonSerializerContext);summary;df-generated | @@ -50119,6 +53988,7 @@ neutral | System.Text.RegularExpressions;MatchCollection;get_IsSynchronized;();summary;df-generated | | System.Text.RegularExpressions;MatchCollection;get_Item;(System.Int32);summary;df-generated | | System.Text.RegularExpressions;Regex+ValueMatchEnumerator;MoveNext;();summary;df-generated | +| System.Text.RegularExpressions;Regex+ValueSplitEnumerator;MoveNext;();summary;df-generated | | System.Text.RegularExpressions;Regex;CompileToAssembly;(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName);summary;df-generated | | System.Text.RegularExpressions;Regex;CompileToAssembly;(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[]);summary;df-generated | | System.Text.RegularExpressions;Regex;CompileToAssembly;(System.Text.RegularExpressions.RegexCompilationInfo[],System.Reflection.AssemblyName,System.Reflection.Emit.CustomAttributeBuilder[],System.String);summary;df-generated | @@ -50142,9 +54012,6 @@ neutral | System.Text.RegularExpressions;Regex;IsMatch;(System.String,System.String);summary;df-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);summary;df-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);summary;df-generated | -| System.Text.RegularExpressions;Regex;Match;(System.String,System.String);summary;df-generated | -| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);summary;df-generated | -| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);summary;df-generated | | System.Text.RegularExpressions;Regex;Regex;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Text.RegularExpressions;Regex;Regex;(System.String);summary;df-generated | | System.Text.RegularExpressions;Regex;Regex;(System.String,System.Text.RegularExpressions.RegexOptions);summary;df-generated | @@ -50158,7 +54025,6 @@ neutral | System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String);summary;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.Exception);summary;df-generated | -| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);summary;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;get_Input;();summary;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;get_MatchTimeout;();summary;df-generated | | System.Text.RegularExpressions;RegexMatchTimeoutException;get_Pattern;();summary;df-generated | @@ -50189,6 +54055,8 @@ neutral | System.Text.RegularExpressions;ValueMatch;get_Length;();summary;df-generated | | System.Text.Unicode;UnicodeRange;Create;(System.Char,System.Char);summary;df-generated | | System.Text.Unicode;UnicodeRange;UnicodeRange;(System.Int32,System.Int32);summary;df-generated | +| System.Text.Unicode;UnicodeRange;get_FirstCodePoint;();summary;df-generated | +| System.Text.Unicode;UnicodeRange;get_Length;();summary;df-generated | | System.Text.Unicode;UnicodeRanges;get_All;();summary;df-generated | | System.Text.Unicode;UnicodeRanges;get_AlphabeticPresentationForms;();summary;df-generated | | System.Text.Unicode;UnicodeRanges;get_Arabic;();summary;df-generated | @@ -50697,6 +54565,8 @@ neutral | System.Threading.Channels;Channel;CreateBounded;(System.Threading.Channels.BoundedChannelOptions,System.Action);summary;df-generated | | System.Threading.Channels;Channel;CreateUnbounded;();summary;df-generated | | System.Threading.Channels;Channel;CreateUnbounded;(System.Threading.Channels.UnboundedChannelOptions);summary;df-generated | +| System.Threading.Channels;Channel;CreateUnboundedPrioritized;();summary;df-generated | +| System.Threading.Channels;Channel;CreateUnboundedPrioritized;(System.Threading.Channels.UnboundedPrioritizedChannelOptions);summary;df-generated | | System.Threading.Channels;ChannelClosedException;ChannelClosedException;(System.Exception);summary;df-generated | | System.Threading.Channels;ChannelClosedException;ChannelClosedException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Threading.Channels;ChannelClosedException;ChannelClosedException;(System.String);summary;df-generated | @@ -50724,7 +54594,6 @@ neutral | System.Threading.RateLimiting;FixedWindowRateLimiter;AcquireAsyncCore;(System.Int32,System.Threading.CancellationToken);summary;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;Dispose;(System.Boolean);summary;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;DisposeAsyncCore;();summary;df-generated | -| System.Threading.RateLimiting;FixedWindowRateLimiter;FixedWindowRateLimiter;(System.Threading.RateLimiting.FixedWindowRateLimiterOptions);summary;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;GetStatistics;();summary;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;TryReplenish;();summary;df-generated | | System.Threading.RateLimiting;FixedWindowRateLimiter;get_IdleDuration;();summary;df-generated | @@ -50756,7 +54625,6 @@ neutral | System.Threading.RateLimiting;RateLimitPartition;GetNoLimiter;(TKey);summary;df-generated | | System.Threading.RateLimiting;RateLimitPartition;GetSlidingWindowLimiter;(TKey,System.Func);summary;df-generated | | System.Threading.RateLimiting;RateLimitPartition;GetTokenBucketLimiter;(TKey,System.Func);summary;df-generated | -| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);summary;df-generated | | System.Threading.RateLimiting;RateLimitPartition;get_Factory;();summary;df-generated | | System.Threading.RateLimiting;RateLimitPartition;get_PartitionKey;();summary;df-generated | | System.Threading.RateLimiting;RateLimiter;AcquireAsync;(System.Int32,System.Threading.CancellationToken);summary;df-generated | @@ -50772,7 +54640,6 @@ neutral | System.Threading.RateLimiting;SlidingWindowRateLimiter;Dispose;(System.Boolean);summary;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;DisposeAsyncCore;();summary;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;GetStatistics;();summary;df-generated | -| System.Threading.RateLimiting;SlidingWindowRateLimiter;SlidingWindowRateLimiter;(System.Threading.RateLimiting.SlidingWindowRateLimiterOptions);summary;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;TryReplenish;();summary;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;get_IdleDuration;();summary;df-generated | | System.Threading.RateLimiting;SlidingWindowRateLimiter;get_IsAutoReplenishing;();summary;df-generated | @@ -50780,7 +54647,6 @@ neutral | System.Threading.RateLimiting;TokenBucketRateLimiter;Dispose;(System.Boolean);summary;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;DisposeAsyncCore;();summary;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;GetStatistics;();summary;df-generated | -| System.Threading.RateLimiting;TokenBucketRateLimiter;TokenBucketRateLimiter;(System.Threading.RateLimiting.TokenBucketRateLimiterOptions);summary;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;TryReplenish;();summary;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;get_IdleDuration;();summary;df-generated | | System.Threading.RateLimiting;TokenBucketRateLimiter;get_IsAutoReplenishing;();summary;df-generated | @@ -50789,6 +54655,7 @@ neutral | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Func);summary;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Func,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;Complete;();summary;df-generated | +| System.Threading.Tasks.Dataflow;ActionBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;Post;(TInput);summary;df-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ToString;();summary;df-generated | @@ -50796,6 +54663,7 @@ neutral | System.Threading.Tasks.Dataflow;BatchBlock;BatchBlock;(System.Int32);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;BatchBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -50809,6 +54677,7 @@ neutral | System.Threading.Tasks.Dataflow;BatchedJoinBlock;BatchedJoinBlock;(System.Int32);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;BatchedJoinBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList,System.Collections.Generic.IList>>);summary;df-generated | @@ -50820,6 +54689,7 @@ neutral | System.Threading.Tasks.Dataflow;BatchedJoinBlock;BatchedJoinBlock;(System.Int32);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;BatchedJoinBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>);summary;df-generated | | System.Threading.Tasks.Dataflow;BatchedJoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Collections.Generic.IList>>);summary;df-generated | @@ -50832,6 +54702,7 @@ neutral | System.Threading.Tasks.Dataflow;BroadcastBlock;BroadcastBlock;(System.Func,System.Threading.Tasks.Dataflow.DataflowBlockOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;BroadcastBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;BroadcastBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -50841,6 +54712,7 @@ neutral | System.Threading.Tasks.Dataflow;BroadcastBlock;TryReceiveAll;(System.Collections.Generic.IList);summary;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;BufferBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;BufferBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -50868,6 +54740,7 @@ neutral | System.Threading.Tasks.Dataflow;DataflowMessageHeader;op_Equality;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader);summary;df-generated | | System.Threading.Tasks.Dataflow;DataflowMessageHeader;op_Inequality;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.DataflowMessageHeader);summary;df-generated | | System.Threading.Tasks.Dataflow;IDataflowBlock;Complete;();summary;df-generated | +| System.Threading.Tasks.Dataflow;IDataflowBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;IReceivableSourceBlock;TryReceive;(System.Predicate,TOutput);summary;df-generated | | System.Threading.Tasks.Dataflow;IReceivableSourceBlock;TryReceiveAll;(System.Collections.Generic.IList);summary;df-generated | | System.Threading.Tasks.Dataflow;ISourceBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | @@ -50877,6 +54750,7 @@ neutral | System.Threading.Tasks.Dataflow;ITargetBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;JoinBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>);summary;df-generated | @@ -50886,6 +54760,7 @@ neutral | System.Threading.Tasks.Dataflow;JoinBlock;get_OutputCount;();summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;JoinBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock>,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>);summary;df-generated | | System.Threading.Tasks.Dataflow;JoinBlock;ReserveMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock>);summary;df-generated | @@ -50895,6 +54770,7 @@ neutral | System.Threading.Tasks.Dataflow;JoinBlock;get_OutputCount;();summary;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;TransformBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -50910,6 +54786,7 @@ neutral | System.Threading.Tasks.Dataflow;TransformBlock;get_OutputCount;();summary;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;TransformManyBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,TInput,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;TransformManyBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -50927,6 +54804,7 @@ neutral | System.Threading.Tasks.Dataflow;TransformManyBlock;get_OutputCount;();summary;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;Complete;();summary;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;ConsumeMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock,System.Boolean);summary;df-generated | +| System.Threading.Tasks.Dataflow;WriteOnceBlock;Fault;(System.Exception);summary;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;LinkTo;(System.Threading.Tasks.Dataflow.ITargetBlock,System.Threading.Tasks.Dataflow.DataflowLinkOptions);summary;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;OfferMessage;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,T,System.Threading.Tasks.Dataflow.ISourceBlock,System.Boolean);summary;df-generated | | System.Threading.Tasks.Dataflow;WriteOnceBlock;ReleaseReservation;(System.Threading.Tasks.Dataflow.DataflowMessageHeader,System.Threading.Tasks.Dataflow.ITargetBlock);summary;df-generated | @@ -51028,6 +54906,8 @@ neutral | System.Threading.Tasks;Task;Wait;(System.Threading.CancellationToken);summary;df-generated | | System.Threading.Tasks;Task;Wait;(System.TimeSpan);summary;df-generated | | System.Threading.Tasks;Task;Wait;(System.TimeSpan,System.Threading.CancellationToken);summary;df-generated | +| System.Threading.Tasks;Task;WaitAll;(System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);summary;df-generated | +| System.Threading.Tasks;Task;WaitAll;(System.ReadOnlySpan);summary;df-generated | | System.Threading.Tasks;Task;WaitAll;(System.Threading.Tasks.Task[]);summary;df-generated | | System.Threading.Tasks;Task;WaitAll;(System.Threading.Tasks.Task[],System.Int32);summary;df-generated | | System.Threading.Tasks;Task;WaitAll;(System.Threading.Tasks.Task[],System.Int32,System.Threading.CancellationToken);summary;df-generated | @@ -51039,7 +54919,12 @@ neutral | System.Threading.Tasks;Task;WaitAny;(System.Threading.Tasks.Task[],System.Threading.CancellationToken);summary;df-generated | | System.Threading.Tasks;Task;WaitAny;(System.Threading.Tasks.Task[],System.TimeSpan);summary;df-generated | | System.Threading.Tasks;Task;WhenAll;(System.Collections.Generic.IEnumerable);summary;df-generated | +| System.Threading.Tasks;Task;WhenAll;(System.ReadOnlySpan);summary;df-generated | | System.Threading.Tasks;Task;WhenAll;(System.Threading.Tasks.Task[]);summary;df-generated | +| System.Threading.Tasks;Task;WhenEach;(System.Collections.Generic.IEnumerable);summary;df-generated | +| System.Threading.Tasks;Task;WhenEach;(System.Collections.Generic.IEnumerable>);summary;df-generated | +| System.Threading.Tasks;Task;WhenEach;(System.ReadOnlySpan>);summary;df-generated | +| System.Threading.Tasks;Task;WhenEach;(System.Threading.Tasks.Task[]);summary;df-generated | | System.Threading.Tasks;Task;Yield;();summary;df-generated | | System.Threading.Tasks;Task;get_CompletedSynchronously;();summary;df-generated | | System.Threading.Tasks;Task;get_CompletedTask;();summary;df-generated | @@ -51054,7 +54939,6 @@ neutral | System.Threading.Tasks;Task;get_IsFaulted;();summary;df-generated | | System.Threading.Tasks;Task;get_Status;();summary;df-generated | | System.Threading.Tasks;Task;get_Factory;();summary;df-generated | -| System.Threading.Tasks;TaskAsyncEnumerableExtensions;ToBlockingEnumerable;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);summary;df-generated | | System.Threading.Tasks;TaskCanceledException;TaskCanceledException;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);summary;df-generated | | System.Threading.Tasks;TaskCanceledException;TaskCanceledException;(System.String);summary;df-generated | | System.Threading.Tasks;TaskCanceledException;TaskCanceledException;(System.String,System.Exception);summary;df-generated | @@ -51063,6 +54947,7 @@ neutral | System.Threading.Tasks;TaskCompletionSource;SetCanceled;(System.Threading.CancellationToken);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetException;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetException;(System.Exception);summary;df-generated | +| System.Threading.Tasks;TaskCompletionSource;SetFromTask;(System.Threading.Tasks.Task);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetResult;();summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;TaskCompletionSource;(System.Object);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;TaskCompletionSource;(System.Threading.Tasks.TaskCreationOptions);summary;df-generated | @@ -51070,6 +54955,7 @@ neutral | System.Threading.Tasks;TaskCompletionSource;TrySetCanceled;(System.Threading.CancellationToken);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;TrySetException;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;TrySetException;(System.Exception);summary;df-generated | +| System.Threading.Tasks;TaskCompletionSource;TrySetFromTask;(System.Threading.Tasks.Task);summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;TrySetResult;();summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetCanceled;();summary;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetCanceled;(System.Threading.CancellationToken);summary;df-generated | @@ -51165,6 +55051,9 @@ neutral | System.Threading;AsyncFlowControl;op_Equality;(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl);summary;df-generated | | System.Threading;AsyncFlowControl;op_Inequality;(System.Threading.AsyncFlowControl,System.Threading.AsyncFlowControl);summary;df-generated | | System.Threading;AsyncLocal;AsyncLocal;(System.Action>);summary;df-generated | +| System.Threading;AsyncLocalValueChangedArgs;get_CurrentValue;();summary;df-generated | +| System.Threading;AsyncLocalValueChangedArgs;get_PreviousValue;();summary;df-generated | +| System.Threading;AsyncLocalValueChangedArgs;get_ThreadContextChanged;();summary;df-generated | | System.Threading;AutoResetEvent;AutoResetEvent;(System.Boolean);summary;df-generated | | System.Threading;Barrier;AddParticipant;();summary;df-generated | | System.Threading;Barrier;AddParticipants;(System.Int32);summary;df-generated | @@ -51213,6 +55102,7 @@ neutral | System.Threading;CancellationTokenSource;CancellationTokenSource;(System.Int32);summary;df-generated | | System.Threading;CancellationTokenSource;CancellationTokenSource;(System.TimeSpan);summary;df-generated | | System.Threading;CancellationTokenSource;CancellationTokenSource;(System.TimeSpan,System.TimeProvider);summary;df-generated | +| System.Threading;CancellationTokenSource;CreateLinkedTokenSource;(System.ReadOnlySpan);summary;df-generated | | System.Threading;CancellationTokenSource;CreateLinkedTokenSource;(System.Threading.CancellationToken);summary;df-generated | | System.Threading;CancellationTokenSource;CreateLinkedTokenSource;(System.Threading.CancellationToken,System.Threading.CancellationToken);summary;df-generated | | System.Threading;CancellationTokenSource;CreateLinkedTokenSource;(System.Threading.CancellationToken[]);summary;df-generated | @@ -51271,22 +55161,30 @@ neutral | System.Threading;Interlocked;And;(System.Int64,System.Int64);summary;df-generated | | System.Threading;Interlocked;And;(System.UInt32,System.UInt32);summary;df-generated | | System.Threading;Interlocked;And;(System.UInt64,System.UInt64);summary;df-generated | +| System.Threading;Interlocked;CompareExchange;(System.Byte,System.Byte,System.Byte);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.Double,System.Double,System.Double);summary;df-generated | +| System.Threading;Interlocked;CompareExchange;(System.Int16,System.Int16,System.Int16);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.Int32,System.Int32,System.Int32);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.Int64,System.Int64,System.Int64);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.Object,System.Object,System.Object);summary;df-generated | +| System.Threading;Interlocked;CompareExchange;(System.SByte,System.SByte,System.SByte);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.Single,System.Single,System.Single);summary;df-generated | +| System.Threading;Interlocked;CompareExchange;(System.UInt16,System.UInt16,System.UInt16);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.UInt32,System.UInt32,System.UInt32);summary;df-generated | | System.Threading;Interlocked;CompareExchange;(System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System.Threading;Interlocked;Decrement;(System.Int32);summary;df-generated | | System.Threading;Interlocked;Decrement;(System.Int64);summary;df-generated | | System.Threading;Interlocked;Decrement;(System.UInt32);summary;df-generated | | System.Threading;Interlocked;Decrement;(System.UInt64);summary;df-generated | +| System.Threading;Interlocked;Exchange;(System.Byte,System.Byte);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.Double,System.Double);summary;df-generated | +| System.Threading;Interlocked;Exchange;(System.Int16,System.Int16);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.Int32,System.Int32);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.Int64,System.Int64);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.Object,System.Object);summary;df-generated | +| System.Threading;Interlocked;Exchange;(System.SByte,System.SByte);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.Single,System.Single);summary;df-generated | +| System.Threading;Interlocked;Exchange;(System.UInt16,System.UInt16);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.UInt32,System.UInt32);summary;df-generated | | System.Threading;Interlocked;Exchange;(System.UInt64,System.UInt64);summary;df-generated | | System.Threading;Interlocked;Increment;(System.Int32);summary;df-generated | @@ -51752,6 +55650,8 @@ neutral | System.Web;HttpUtility;UrlDecodeToBytes;(System.Byte[],System.Int32,System.Int32);summary;df-generated | | System.Web;HttpUtility;UrlDecodeToBytes;(System.String);summary;df-generated | | System.Web;HttpUtility;UrlDecodeToBytes;(System.String,System.Text.Encoding);summary;df-generated | +| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[]);summary;df-generated | +| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[],System.Int32,System.Int32);summary;df-generated | | System.Web;HttpUtility;UrlEncodeUnicode;(System.String);summary;df-generated | | System.Web;HttpUtility;UrlEncodeUnicodeToBytes;(System.String);summary;df-generated | | System.Web;IHtmlString;ToHtmlString;();summary;df-generated | @@ -51766,6 +55666,7 @@ neutral | System.Xaml.Permissions;XamlAccessLevel;PrivateAccessTo;(System.String);summary;df-generated | | System.Xaml.Permissions;XamlAccessLevel;PrivateAccessTo;(System.Type);summary;df-generated | | System.Xaml.Permissions;XamlAccessLevel;get_AssemblyAccessToAssemblyName;();summary;df-generated | +| System.Xaml.Permissions;XamlAccessLevel;get_PrivateAccessToTypeName;();summary;df-generated | | System.Xaml.Permissions;XamlLoadPermission;Equals;(System.Object);summary;df-generated | | System.Xaml.Permissions;XamlLoadPermission;FromXml;(System.Security.SecurityElement);summary;df-generated | | System.Xaml.Permissions;XamlLoadPermission;GetHashCode;();summary;df-generated | @@ -51776,6 +55677,7 @@ neutral | System.Xaml.Permissions;XamlLoadPermission;XamlLoadPermission;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Xaml.Permissions;XamlLoadPermission;XamlLoadPermission;(System.Security.Permissions.PermissionState);summary;df-generated | | System.Xaml.Permissions;XamlLoadPermission;XamlLoadPermission;(System.Xaml.Permissions.XamlAccessLevel);summary;df-generated | +| System.Xaml.Permissions;XamlLoadPermission;get_AllowedAccess;();summary;df-generated | | System.Xml.Linq;Extensions;Remove;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Xml.Linq;Extensions;Remove;(System.Collections.Generic.IEnumerable);summary;df-generated | | System.Xml.Linq;XAttribute;Remove;();summary;df-generated | @@ -51861,6 +55763,7 @@ neutral | System.Xml.Linq;XNode;get_EqualityComparer;();summary;df-generated | | System.Xml.Linq;XNode;get_PreviousNode;();summary;df-generated | | System.Xml.Linq;XNodeDocumentOrderComparer;Compare;(System.Xml.Linq.XNode,System.Xml.Linq.XNode);summary;df-generated | +| System.Xml.Linq;XNodeEqualityComparer;Equals;(System.Object,System.Object);summary;df-generated | | System.Xml.Linq;XNodeEqualityComparer;Equals;(System.Xml.Linq.XNode,System.Xml.Linq.XNode);summary;df-generated | | System.Xml.Linq;XNodeEqualityComparer;GetHashCode;(System.Xml.Linq.XNode);summary;df-generated | | System.Xml.Linq;XObject;HasLineInfo;();summary;df-generated | @@ -51981,7 +55884,6 @@ neutral | System.Xml.Schema;XmlSchemaSet;Contains;(System.String);summary;df-generated | | System.Xml.Schema;XmlSchemaSet;Contains;(System.Xml.Schema.XmlSchema);summary;df-generated | | System.Xml.Schema;XmlSchemaSet;RemoveRecursive;(System.Xml.Schema.XmlSchema);summary;df-generated | -| System.Xml.Schema;XmlSchemaSet;Schemas;(System.String);summary;df-generated | | System.Xml.Schema;XmlSchemaSet;add_ValidationEventHandler;(System.Xml.Schema.ValidationEventHandler);summary;df-generated | | System.Xml.Schema;XmlSchemaSet;get_Count;();summary;df-generated | | System.Xml.Schema;XmlSchemaSet;get_GlobalAttributes;();summary;df-generated | @@ -52122,19 +56024,14 @@ neutral | System.Xml.Serialization;XmlSerializationReader;FixupArrayRefs;(System.Object);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;GetArrayLength;(System.String,System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;GetNullAttr;();summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;GetXsiType;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;InitCallbacks;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;InitIDs;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;IsXmlnsAttribute;(System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ParseWsdlArrayType;(System.Xml.XmlAttribute);summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;ReadElementQualifiedName;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadEndElement;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadNull;();summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;ReadNullableQualifiedName;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencedElements;();summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadTypedNull;(System.Xml.XmlQualifiedName);summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;ReadXmlDocument;(System.Boolean);summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;ReadXmlNode;(System.Boolean);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;Referenced;(System.Object);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ResolveDynamicAssembly;(System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ToByteArrayBase64;(System.Boolean);summary;df-generated | @@ -52145,7 +56042,6 @@ neutral | System.Xml.Serialization;XmlSerializationReader;ToDateTime;(System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ToEnum;(System.String,System.Collections.Hashtable,System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;ToTime;(System.String);summary;df-generated | -| System.Xml.Serialization;XmlSerializationReader;ToXmlQualifiedName;(System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;UnknownAttribute;(System.Object,System.Xml.XmlAttribute);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;UnknownAttribute;(System.Object,System.Xml.XmlAttribute,System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationReader;UnknownElement;(System.Object,System.Xml.XmlElement);summary;df-generated | @@ -52174,7 +56070,6 @@ neutral | System.Xml.Serialization;XmlSerializationWriter;WriteEndElement;();summary;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteEndElement;(System.Object);summary;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteReferencedElements;();summary;df-generated | -| System.Xml.Serialization;XmlSerializationWriter;WriteRpcResult;(System.String,System.String);summary;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteStartDocument;();summary;df-generated | | System.Xml.Serialization;XmlSerializer;CanDeserialize;(System.Xml.XmlReader);summary;df-generated | | System.Xml.Serialization;XmlSerializer;CreateReader;();summary;df-generated | @@ -52618,7 +56513,6 @@ neutral | System.Xml;XmlDocument;CreateDefaultAttribute;(System.String,System.String,System.String);summary;df-generated | | System.Xml;XmlDocument;GetElementById;(System.String);summary;df-generated | | System.Xml;XmlDocument;LoadXml;(System.String);summary;df-generated | -| System.Xml;XmlDocument;ReadNode;(System.Xml.XmlReader);summary;df-generated | | System.Xml;XmlDocument;Save;(System.IO.Stream);summary;df-generated | | System.Xml;XmlDocument;Save;(System.IO.TextWriter);summary;df-generated | | System.Xml;XmlDocument;Save;(System.String);summary;df-generated | @@ -52695,7 +56589,6 @@ neutral | System.Xml;XmlQualifiedName;Equals;(System.Object);summary;df-generated | | System.Xml;XmlQualifiedName;GetHashCode;();summary;df-generated | | System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String);summary;df-generated | -| System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String,System.String);summary;df-generated | | System.Xml;XmlQualifiedName;get_IsEmpty;();summary;df-generated | | System.Xml;XmlQualifiedName;op_Equality;(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName);summary;df-generated | | System.Xml;XmlQualifiedName;op_Inequality;(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName);summary;df-generated | @@ -53356,6 +57249,7 @@ neutral | System;Byte;MinMagnitude;(System.Byte,System.Byte);summary;df-generated | | System;Byte;MinMagnitudeNumber;(System.Byte,System.Byte);summary;df-generated | | System;Byte;MinNumber;(System.Byte,System.Byte);summary;df-generated | +| System;Byte;MultiplyAddEstimate;(System.Byte,System.Byte,System.Byte);summary;df-generated | | System;Byte;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Byte;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Byte;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -53525,6 +57419,7 @@ neutral | System;Char;MaxMagnitudeNumber;(System.Char,System.Char);summary;df-generated | | System;Char;MinMagnitude;(System.Char,System.Char);summary;df-generated | | System;Char;MinMagnitudeNumber;(System.Char,System.Char);summary;df-generated | +| System;Char;MultiplyAddEstimate;(System.Char,System.Char,System.Char);summary;df-generated | | System;Char;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Char;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Char;Parse;(System.String);summary;df-generated | @@ -53650,6 +57545,7 @@ neutral | System;Console;Write;(System.String,System.Object,System.Object);summary;df-generated | | System;Console;Write;(System.String,System.Object,System.Object,System.Object);summary;df-generated | | System;Console;Write;(System.String,System.Object[]);summary;df-generated | +| System;Console;Write;(System.String,System.ReadOnlySpan);summary;df-generated | | System;Console;Write;(System.UInt32);summary;df-generated | | System;Console;Write;(System.UInt64);summary;df-generated | | System;Console;WriteLine;();summary;df-generated | @@ -53668,6 +57564,7 @@ neutral | System;Console;WriteLine;(System.String,System.Object,System.Object);summary;df-generated | | System;Console;WriteLine;(System.String,System.Object,System.Object,System.Object);summary;df-generated | | System;Console;WriteLine;(System.String,System.Object[]);summary;df-generated | +| System;Console;WriteLine;(System.String,System.ReadOnlySpan);summary;df-generated | | System;Console;WriteLine;(System.UInt32);summary;df-generated | | System;Console;WriteLine;(System.UInt64);summary;df-generated | | System;Console;add_CancelKeyPress;(System.ConsoleCancelEventHandler);summary;df-generated | @@ -54006,6 +57903,8 @@ neutral | System;Decimal;Compare;(System.Decimal,System.Decimal);summary;df-generated | | System;Decimal;CompareTo;(System.Decimal);summary;df-generated | | System;Decimal;CompareTo;(System.Object);summary;df-generated | +| System;Decimal;ConvertToInteger;(System.Decimal);summary;df-generated | +| System;Decimal;ConvertToIntegerNative;(System.Decimal);summary;df-generated | | System;Decimal;CopySign;(System.Decimal,System.Decimal);summary;df-generated | | System;Decimal;CreateChecked;(TOther);summary;df-generated | | System;Decimal;CreateSaturating;(TOther);summary;df-generated | @@ -54059,6 +57958,7 @@ neutral | System;Decimal;MinMagnitudeNumber;(System.Decimal,System.Decimal);summary;df-generated | | System;Decimal;MinNumber;(System.Decimal,System.Decimal);summary;df-generated | | System;Decimal;Multiply;(System.Decimal,System.Decimal);summary;df-generated | +| System;Decimal;MultiplyAddEstimate;(System.Decimal,System.Decimal,System.Decimal);summary;df-generated | | System;Decimal;Negate;(System.Decimal);summary;df-generated | | System;Decimal;OnDeserialization;(System.Object);summary;df-generated | | System;Decimal;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -54151,8 +58051,8 @@ neutral | System;Decimal;get_Scale;();summary;df-generated | | System;Decimal;get_Tau;();summary;df-generated | | System;Decimal;get_Zero;();summary;df-generated | +| System;Delegate+InvocationListEnumerator;MoveNext;();summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Object,System.Reflection.MethodInfo);summary;df-generated | -| System;Delegate;CreateDelegate;(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean);summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Object,System.String);summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Object,System.String,System.Boolean);summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Object,System.String,System.Boolean,System.Boolean);summary;df-generated | @@ -54160,8 +58060,10 @@ neutral | System;Delegate;CreateDelegate;(System.Type,System.Type,System.String);summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Type,System.String,System.Boolean);summary;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Type,System.String,System.Boolean,System.Boolean);summary;df-generated | +| System;Delegate;EnumerateInvocationList;(TDelegate);summary;df-generated | | System;Delegate;Equals;(System.Object);summary;df-generated | | System;Delegate;GetHashCode;();summary;df-generated | +| System;Delegate;get_HasSingleTarget;();summary;df-generated | | System;Delegate;get_Method;();summary;df-generated | | System;Delegate;op_Equality;(System.Delegate,System.Delegate);summary;df-generated | | System;Delegate;op_Inequality;(System.Delegate,System.Delegate);summary;df-generated | @@ -54190,6 +58092,8 @@ neutral | System;Double;Clamp;(System.Double,System.Double,System.Double);summary;df-generated | | System;Double;CompareTo;(System.Double);summary;df-generated | | System;Double;CompareTo;(System.Object);summary;df-generated | +| System;Double;ConvertToInteger;(System.Double);summary;df-generated | +| System;Double;ConvertToIntegerNative;(System.Double);summary;df-generated | | System;Double;CopySign;(System.Double,System.Double);summary;df-generated | | System;Double;Cos;(System.Double);summary;df-generated | | System;Double;CosPi;(System.Double);summary;df-generated | @@ -54251,6 +58155,7 @@ neutral | System;Double;MinMagnitude;(System.Double,System.Double);summary;df-generated | | System;Double;MinMagnitudeNumber;(System.Double,System.Double);summary;df-generated | | System;Double;MinNumber;(System.Double,System.Double);summary;df-generated | +| System;Double;MultiplyAddEstimate;(System.Double,System.Double,System.Double);summary;df-generated | | System;Double;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Double;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Double;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -54416,6 +58321,7 @@ neutral | System;Enum;TryParse;(System.ReadOnlySpan,TEnum);summary;df-generated | | System;Enum;TryParse;(System.String,System.Boolean,TEnum);summary;df-generated | | System;Enum;TryParse;(System.String,TEnum);summary;df-generated | +| System;Environment+ProcessCpuUsage;get_TotalTime;();summary;df-generated | | System;Environment;Exit;(System.Int32);summary;df-generated | | System;Environment;FailFast;(System.String);summary;df-generated | | System;Environment;FailFast;(System.String,System.Exception);summary;df-generated | @@ -54430,6 +58336,7 @@ neutral | System;Environment;SetEnvironmentVariable;(System.String,System.String);summary;df-generated | | System;Environment;SetEnvironmentVariable;(System.String,System.String,System.EnvironmentVariableTarget);summary;df-generated | | System;Environment;get_CommandLine;();summary;df-generated | +| System;Environment;get_CpuUsage;();summary;df-generated | | System;Environment;get_CurrentManagedThreadId;();summary;df-generated | | System;Environment;get_HasShutdownStarted;();summary;df-generated | | System;Environment;get_Is64BitOperatingSystem;();summary;df-generated | @@ -54525,6 +58432,8 @@ neutral | System;GenericUriParser;GenericUriParser;(System.GenericUriParserOptions);summary;df-generated | | System;Guid;CompareTo;(System.Guid);summary;df-generated | | System;Guid;CompareTo;(System.Object);summary;df-generated | +| System;Guid;CreateVersion7;();summary;df-generated | +| System;Guid;CreateVersion7;(System.DateTimeOffset);summary;df-generated | | System;Guid;Equals;(System.Guid);summary;df-generated | | System;Guid;Equals;(System.Object);summary;df-generated | | System;Guid;GetHashCode;();summary;df-generated | @@ -54558,6 +58467,9 @@ neutral | System;Guid;TryParseExact;(System.String,System.String,System.Guid);summary;df-generated | | System;Guid;TryWriteBytes;(System.Span);summary;df-generated | | System;Guid;TryWriteBytes;(System.Span,System.Boolean,System.Int32);summary;df-generated | +| System;Guid;get_AllBitsSet;();summary;df-generated | +| System;Guid;get_Variant;();summary;df-generated | +| System;Guid;get_Version;();summary;df-generated | | System;Guid;op_Equality;(System.Guid,System.Guid);summary;df-generated | | System;Guid;op_GreaterThan;(System.Guid,System.Guid);summary;df-generated | | System;Guid;op_GreaterThanOrEqual;(System.Guid,System.Guid);summary;df-generated | @@ -54638,6 +58550,7 @@ neutral | System;Half;Min;(System.Half,System.Half);summary;df-generated | | System;Half;MinMagnitude;(System.Half,System.Half);summary;df-generated | | System;Half;MinMagnitudeNumber;(System.Half,System.Half);summary;df-generated | +| System;Half;MultiplyAddEstimate;(System.Half,System.Half,System.Half);summary;df-generated | | System;Half;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Half;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Half;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -54833,6 +58746,7 @@ neutral | System;Int16;MinMagnitude;(System.Int16,System.Int16);summary;df-generated | | System;Int16;MinMagnitudeNumber;(System.Int16,System.Int16);summary;df-generated | | System;Int16;MinNumber;(System.Int16,System.Int16);summary;df-generated | +| System;Int16;MultiplyAddEstimate;(System.Int16,System.Int16,System.Int16);summary;df-generated | | System;Int16;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Int16;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Int16;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -54919,6 +58833,7 @@ neutral | System;Int16;get_Radix;();summary;df-generated | | System;Int16;get_Zero;();summary;df-generated | | System;Int32;Abs;(System.Int32);summary;df-generated | +| System;Int32;BigMul;(System.Int32,System.Int32);summary;df-generated | | System;Int32;Clamp;(System.Int32,System.Int32,System.Int32);summary;df-generated | | System;Int32;CompareTo;(System.Int32);summary;df-generated | | System;Int32;CompareTo;(System.Object);summary;df-generated | @@ -54961,6 +58876,7 @@ neutral | System;Int32;MinMagnitude;(System.Int32,System.Int32);summary;df-generated | | System;Int32;MinMagnitudeNumber;(System.Int32,System.Int32);summary;df-generated | | System;Int32;MinNumber;(System.Int32,System.Int32);summary;df-generated | +| System;Int32;MultiplyAddEstimate;(System.Int32,System.Int32,System.Int32);summary;df-generated | | System;Int32;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Int32;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Int32;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -55043,6 +58959,7 @@ neutral | System;Int32;get_Radix;();summary;df-generated | | System;Int32;get_Zero;();summary;df-generated | | System;Int64;Abs;(System.Int64);summary;df-generated | +| System;Int64;BigMul;(System.Int64,System.Int64);summary;df-generated | | System;Int64;Clamp;(System.Int64,System.Int64,System.Int64);summary;df-generated | | System;Int64;CompareTo;(System.Int64);summary;df-generated | | System;Int64;CompareTo;(System.Object);summary;df-generated | @@ -55085,6 +59002,7 @@ neutral | System;Int64;MinMagnitude;(System.Int64,System.Int64);summary;df-generated | | System;Int64;MinMagnitudeNumber;(System.Int64,System.Int64);summary;df-generated | | System;Int64;MinNumber;(System.Int64,System.Int64);summary;df-generated | +| System;Int64;MultiplyAddEstimate;(System.Int64,System.Int64,System.Int64);summary;df-generated | | System;Int64;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Int64;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Int64;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -55204,6 +59122,7 @@ neutral | System;Int128;MaxMagnitudeNumber;(System.Int128,System.Int128);summary;df-generated | | System;Int128;MinMagnitude;(System.Int128,System.Int128);summary;df-generated | | System;Int128;MinMagnitudeNumber;(System.Int128,System.Int128);summary;df-generated | +| System;Int128;MultiplyAddEstimate;(System.Int128,System.Int128,System.Int128);summary;df-generated | | System;Int128;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Int128;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Int128;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -55429,7 +59348,10 @@ neutral | System;Math;Atan;(System.Double);summary;df-generated | | System;Math;Atanh;(System.Double);summary;df-generated | | System;Math;BigMul;(System.Int32,System.Int32);summary;df-generated | +| System;Math;BigMul;(System.Int64,System.Int64);summary;df-generated | | System;Math;BigMul;(System.Int64,System.Int64,System.Int64);summary;df-generated | +| System;Math;BigMul;(System.UInt32,System.UInt32);summary;df-generated | +| System;Math;BigMul;(System.UInt64,System.UInt64);summary;df-generated | | System;Math;BigMul;(System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System;Math;BitDecrement;(System.Double);summary;df-generated | | System;Math;BitIncrement;(System.Double);summary;df-generated | @@ -55579,6 +59501,8 @@ neutral | System;Memory;get_IsEmpty;();summary;df-generated | | System;Memory;get_Length;();summary;df-generated | | System;Memory;get_Span;();summary;df-generated | +| System;MemoryExtensions+SpanSplitEnumerator;MoveNext;();summary;df-generated | +| System;MemoryExtensions+SpanSplitEnumerator;get_Current;();summary;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;AppendFormatted;(System.Object,System.Int32,System.String);summary;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;AppendFormatted;(System.ReadOnlySpan);summary;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;AppendFormatted;(System.ReadOnlySpan,System.Int32,System.String);summary;df-generated | @@ -55639,6 +59563,7 @@ neutral | System;MemoryExtensions;Count;(System.Span,T);summary;df-generated | | System;MemoryExtensions;EndsWith;(System.ReadOnlySpan,System.ReadOnlySpan,System.StringComparison);summary;df-generated | | System;MemoryExtensions;EndsWith;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System;MemoryExtensions;EndsWith;(System.ReadOnlySpan,T);summary;df-generated | | System;MemoryExtensions;EndsWith;(System.Span,System.ReadOnlySpan);summary;df-generated | | System;MemoryExtensions;EnumerateLines;(System.Span);summary;df-generated | | System;MemoryExtensions;EnumerateRunes;(System.Span);summary;df-generated | @@ -55720,6 +59645,7 @@ neutral | System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.Span,System.ReadOnlySpan,System.StringSplitOptions);summary;df-generated | | System;MemoryExtensions;StartsWith;(System.ReadOnlySpan,System.ReadOnlySpan,System.StringComparison);summary;df-generated | | System;MemoryExtensions;StartsWith;(System.ReadOnlySpan,System.ReadOnlySpan);summary;df-generated | +| System;MemoryExtensions;StartsWith;(System.ReadOnlySpan,T);summary;df-generated | | System;MemoryExtensions;StartsWith;(System.Span,System.ReadOnlySpan);summary;df-generated | | System;MemoryExtensions;ToLower;(System.ReadOnlySpan,System.Span,System.Globalization.CultureInfo);summary;df-generated | | System;MemoryExtensions;ToLowerInvariant;(System.ReadOnlySpan,System.Span);summary;df-generated | @@ -55876,6 +59802,7 @@ neutral | System;ReadOnlyMemory;get_Span;();summary;df-generated | | System;ReadOnlySpan+Enumerator;MoveNext;();summary;df-generated | | System;ReadOnlySpan+Enumerator;get_Current;();summary;df-generated | +| System;ReadOnlySpan;CastUp;(System.ReadOnlySpan);summary;df-generated | | System;ReadOnlySpan;Equals;(System.Object);summary;df-generated | | System;ReadOnlySpan;GetHashCode;();summary;df-generated | | System;ReadOnlySpan;ReadOnlySpan;(System.Void*,System.Int32);summary;df-generated | @@ -55951,6 +59878,7 @@ neutral | System;SByte;MinMagnitude;(System.SByte,System.SByte);summary;df-generated | | System;SByte;MinMagnitudeNumber;(System.SByte,System.SByte);summary;df-generated | | System;SByte;MinNumber;(System.SByte,System.SByte);summary;df-generated | +| System;SByte;MultiplyAddEstimate;(System.SByte,System.SByte,System.SByte);summary;df-generated | | System;SByte;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;SByte;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;SByte;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -56059,6 +59987,8 @@ neutral | System;Single;Clamp;(System.Single,System.Single,System.Single);summary;df-generated | | System;Single;CompareTo;(System.Object);summary;df-generated | | System;Single;CompareTo;(System.Single);summary;df-generated | +| System;Single;ConvertToInteger;(System.Single);summary;df-generated | +| System;Single;ConvertToIntegerNative;(System.Single);summary;df-generated | | System;Single;CopySign;(System.Single,System.Single);summary;df-generated | | System;Single;Cos;(System.Single);summary;df-generated | | System;Single;CosPi;(System.Single);summary;df-generated | @@ -56120,6 +60050,7 @@ neutral | System;Single;MinMagnitude;(System.Single,System.Single);summary;df-generated | | System;Single;MinMagnitudeNumber;(System.Single,System.Single);summary;df-generated | | System;Single;MinNumber;(System.Single,System.Single);summary;df-generated | +| System;Single;MultiplyAddEstimate;(System.Single,System.Single,System.Single);summary;df-generated | | System;Single;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;Single;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;Single;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -56447,11 +60378,21 @@ neutral | System;TimeSpan;Equals;(System.TimeSpan);summary;df-generated | | System;TimeSpan;Equals;(System.TimeSpan,System.TimeSpan);summary;df-generated | | System;TimeSpan;FromDays;(System.Double);summary;df-generated | +| System;TimeSpan;FromDays;(System.Int32);summary;df-generated | +| System;TimeSpan;FromDays;(System.Int32,System.Int32,System.Int64,System.Int64,System.Int64,System.Int64);summary;df-generated | | System;TimeSpan;FromHours;(System.Double);summary;df-generated | +| System;TimeSpan;FromHours;(System.Int32);summary;df-generated | +| System;TimeSpan;FromHours;(System.Int32,System.Int64,System.Int64,System.Int64,System.Int64);summary;df-generated | | System;TimeSpan;FromMicroseconds;(System.Double);summary;df-generated | +| System;TimeSpan;FromMicroseconds;(System.Int64);summary;df-generated | | System;TimeSpan;FromMilliseconds;(System.Double);summary;df-generated | +| System;TimeSpan;FromMilliseconds;(System.Int64,System.Int64);summary;df-generated | | System;TimeSpan;FromMinutes;(System.Double);summary;df-generated | +| System;TimeSpan;FromMinutes;(System.Int64);summary;df-generated | +| System;TimeSpan;FromMinutes;(System.Int64,System.Int64,System.Int64,System.Int64);summary;df-generated | | System;TimeSpan;FromSeconds;(System.Double);summary;df-generated | +| System;TimeSpan;FromSeconds;(System.Int64);summary;df-generated | +| System;TimeSpan;FromSeconds;(System.Int64,System.Int64,System.Int64);summary;df-generated | | System;TimeSpan;FromTicks;(System.Int64);summary;df-generated | | System;TimeSpan;GetHashCode;();summary;df-generated | | System;TimeSpan;Multiply;(System.Double);summary;df-generated | @@ -56662,7 +60603,6 @@ neutral | System;Type;GetGenericParameterConstraints;();summary;df-generated | | System;Type;GetHashCode;();summary;df-generated | | System;Type;GetInterface;(System.String);summary;df-generated | -| System;Type;GetInterfaceMap;(System.Type);summary;df-generated | | System;Type;GetMember;(System.String);summary;df-generated | | System;Type;GetMember;(System.String,System.Reflection.BindingFlags);summary;df-generated | | System;Type;GetMember;(System.String,System.Reflection.MemberTypes,System.Reflection.BindingFlags);summary;df-generated | @@ -56854,6 +60794,7 @@ neutral | System;UInt16;MinMagnitude;(System.UInt16,System.UInt16);summary;df-generated | | System;UInt16;MinMagnitudeNumber;(System.UInt16,System.UInt16);summary;df-generated | | System;UInt16;MinNumber;(System.UInt16,System.UInt16);summary;df-generated | +| System;UInt16;MultiplyAddEstimate;(System.UInt16,System.UInt16,System.UInt16);summary;df-generated | | System;UInt16;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;UInt16;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;UInt16;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -56939,6 +60880,7 @@ neutral | System;UInt16;get_Radix;();summary;df-generated | | System;UInt16;get_Zero;();summary;df-generated | | System;UInt32;Abs;(System.UInt32);summary;df-generated | +| System;UInt32;BigMul;(System.UInt32,System.UInt32);summary;df-generated | | System;UInt32;Clamp;(System.UInt32,System.UInt32,System.UInt32);summary;df-generated | | System;UInt32;CompareTo;(System.Object);summary;df-generated | | System;UInt32;CompareTo;(System.UInt32);summary;df-generated | @@ -56981,6 +60923,7 @@ neutral | System;UInt32;MinMagnitude;(System.UInt32,System.UInt32);summary;df-generated | | System;UInt32;MinMagnitudeNumber;(System.UInt32,System.UInt32);summary;df-generated | | System;UInt32;MinNumber;(System.UInt32,System.UInt32);summary;df-generated | +| System;UInt32;MultiplyAddEstimate;(System.UInt32,System.UInt32,System.UInt32);summary;df-generated | | System;UInt32;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;UInt32;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;UInt32;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -57066,6 +61009,7 @@ neutral | System;UInt32;get_Radix;();summary;df-generated | | System;UInt32;get_Zero;();summary;df-generated | | System;UInt64;Abs;(System.UInt64);summary;df-generated | +| System;UInt64;BigMul;(System.UInt64,System.UInt64);summary;df-generated | | System;UInt64;Clamp;(System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System;UInt64;CompareTo;(System.Object);summary;df-generated | | System;UInt64;CompareTo;(System.UInt64);summary;df-generated | @@ -57108,6 +61052,7 @@ neutral | System;UInt64;MinMagnitude;(System.UInt64,System.UInt64);summary;df-generated | | System;UInt64;MinMagnitudeNumber;(System.UInt64,System.UInt64);summary;df-generated | | System;UInt64;MinNumber;(System.UInt64,System.UInt64);summary;df-generated | +| System;UInt64;MultiplyAddEstimate;(System.UInt64,System.UInt64,System.UInt64);summary;df-generated | | System;UInt64;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;UInt64;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;UInt64;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | @@ -57225,6 +61170,7 @@ neutral | System;UInt128;MaxMagnitudeNumber;(System.UInt128,System.UInt128);summary;df-generated | | System;UInt128;MinMagnitude;(System.UInt128,System.UInt128);summary;df-generated | | System;UInt128;MinMagnitudeNumber;(System.UInt128,System.UInt128);summary;df-generated | +| System;UInt128;MultiplyAddEstimate;(System.UInt128,System.UInt128,System.UInt128);summary;df-generated | | System;UInt128;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | | System;UInt128;Parse;(System.ReadOnlySpan,System.IFormatProvider);summary;df-generated | | System;UInt128;Parse;(System.ReadOnlySpan,System.Globalization.NumberStyles,System.IFormatProvider);summary;df-generated | diff --git a/csharp/ql/test/library-tests/dataflow/library/FlowSummariesFiltered.expected b/csharp/ql/test/library-tests/dataflow/library/FlowSummariesFiltered.expected index d40ca375c19..a426b242845 100644 --- a/csharp/ql/test/library-tests/dataflow/library/FlowSummariesFiltered.expected +++ b/csharp/ql/test/library-tests/dataflow/library/FlowSummariesFiltered.expected @@ -762,11 +762,15 @@ | Microsoft.Extensions.Caching.Memory;MemoryCacheOptions;get_Value;();Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Caching.Memory;PostEvictionCallbackRegistration;set_EvictionCallback;(Microsoft.Extensions.Caching.Memory.PostEvictionDelegate);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Caching.Memory;PostEvictionDelegate;BeginInvoke;(System.Object,System.Object,Microsoft.Extensions.Caching.Memory.EvictionReason,System.Object,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Configuration.CommandLine;CommandLineConfigurationProvider;CommandLineConfigurationProvider;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.CommandLine.CommandLineConfigurationProvider.Args];value;dfc-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;EnvironmentVariablesConfigurationProvider;(System.String);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider._prefix];value;dfc-generated | | Microsoft.Extensions.Configuration.EnvironmentVariables;EnvironmentVariablesConfigurationProvider;ToString;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.EnvironmentVariables.EnvironmentVariablesConfigurationProvider._prefix];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Read;(System.IO.Stream);Argument[0];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];taint;dfc-generated | +| Microsoft.Extensions.Configuration.Ini;IniStreamConfigurationProvider;Read;(System.IO.Stream);Argument[0];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];taint;dfc-generated | | Microsoft.Extensions.Configuration.KeyPerFile;KeyPerFileConfigurationSource;set_IgnoreCondition;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration.Memory;MemoryConfigurationProvider;MemoryConfigurationProvider;(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.UserSecrets;PathHelper;GetSecretsPathFromSecretsId;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration.UserSecrets;UserSecretsIdAttribute;UserSecretsIdAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute.UserSecretsId];value;dfc-generated | | Microsoft.Extensions.Configuration.Xml;XmlDocumentDecryptor;CreateDecryptingXmlReader;(System.IO.Stream,System.Xml.XmlReaderSettings);Argument[0];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Configuration.Xml;XmlDocumentDecryptor;DecryptDocumentAndCreateXmlReader;(System.Xml.XmlDocument);Argument[0].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration.Xml;XmlStreamConfigurationProvider;Read;(System.IO.Stream,Microsoft.Extensions.Configuration.Xml.XmlDocumentDecryptor);Argument[0];Argument[1];taint;df-generated | @@ -794,10 +798,15 @@ | Microsoft.Extensions.Configuration;ConfigurationBuilder;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationBuilder;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];ReturnValue.SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationBuilder;get_Sources;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationBuilder._sources];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Path];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[1];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Key];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[2];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.Value];value;dfc-generated | +| Microsoft.Extensions.Configuration;ConfigurationDebugViewContext;ConfigurationDebugViewContext;(System.String,System.String,System.String,Microsoft.Extensions.Configuration.IConfigurationProvider);Argument[3];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationDebugViewContext.ConfigurationProvider];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationExtensions;Add;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Configuration;ConfigurationKeyNameAttribute;ConfigurationKeyNameAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.ConfigurationKeyNameAttribute.Name];value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;Add;(Microsoft.Extensions.Configuration.IConfigurationSource);Argument[0];ReturnValue.SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources].Element;value;dfc-generated | | Microsoft.Extensions.Configuration;ConfigurationManager;get_Sources;();Argument[this].SyntheticField[Microsoft.Extensions.Configuration.ConfigurationManager._sources];ReturnValue;value;dfc-generated | @@ -831,7 +840,9 @@ | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileLoadExceptionHandler;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileLoadExceptionHandler;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;FileConfigurationExtensions;SetFileProvider;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;FileConfigurationProvider;FileConfigurationProvider;(Microsoft.Extensions.Configuration.FileConfigurationSource);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source];value;dfc-generated | | Microsoft.Extensions.Configuration;FileConfigurationProvider;ToString;();Argument[this].Property[Microsoft.Extensions.Configuration.FileConfigurationProvider.Source].Property[Microsoft.Extensions.Configuration.FileConfigurationSource.Path];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Configuration;FileConfigurationSource;EnsureDefaults;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;FileConfigurationSource;set_OnLoadException;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;IConfiguration;GetReloadToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;IConfiguration;get_Item;(System.String);Argument[this];ReturnValue;taint;manual | @@ -841,6 +852,7 @@ | Microsoft.Extensions.Configuration;IConfigurationProvider;GetChildKeys;(System.Collections.Generic.IEnumerable,System.String);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | Microsoft.Extensions.Configuration;IConfigurationProvider;GetReloadToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Configuration;IConfigurationRoot;get_Providers;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Configuration;IConfigurationSource;Build;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,Microsoft.Extensions.FileProviders.IFileProvider,System.String,System.Boolean,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;IniConfigurationExtensions;AddIniFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | @@ -862,6 +874,7 @@ | Microsoft.Extensions.Configuration;KeyPerFileConfigurationBuilderExtensions;AddKeyPerFile;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Configuration;MemoryConfigurationBuilderExtensions;AddInMemoryCollection;(Microsoft.Extensions.Configuration.IConfigurationBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;MemoryConfigurationBuilderExtensions;AddInMemoryCollection;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Collections.Generic.IEnumerable>);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Configuration;StreamConfigurationProvider;StreamConfigurationProvider;(Microsoft.Extensions.Configuration.StreamConfigurationSource);Argument[0];Argument[this].Property[Microsoft.Extensions.Configuration.StreamConfigurationProvider.Source];value;dfc-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Configuration;UserSecretsConfigurationExtensions;AddUserSecrets;(Microsoft.Extensions.Configuration.IConfigurationBuilder,System.Reflection.Assembly,System.Boolean,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | @@ -941,6 +954,7 @@ | Microsoft.Extensions.DependencyInjection;EncoderServiceCollectionExtensions;AddWebEncoders;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;ExceptionHandlerServiceCollectionExtensions;AddExceptionHandler;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;ExceptionHandlerServiceCollectionExtensions;AddExceptionHandler;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.DependencyInjection;FromKeyedServicesAttribute;FromKeyedServicesAttribute;(System.Object);Argument[0];Argument[this].Property[Microsoft.Extensions.DependencyInjection.FromKeyedServicesAttribute.Key];value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddAsyncCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func>,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -949,6 +963,7 @@ | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HealthChecksBuilderDelegateExtensions;AddCheck;(Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder,System.String,System.Func,System.Collections.Generic.IEnumerable,System.Nullable);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddAsKeyed;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,Microsoft.Extensions.DependencyInjection.ServiceLifetime);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddDefaultLogger;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddHttpMessageHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;AddHttpMessageHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[0];ReturnValue;value;hq-generated | @@ -1009,6 +1024,7 @@ | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RedactLoggedHeaders;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RedactLoggedHeaders;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RemoveAllLoggers;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;RemoveAsKeyed;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;SetHandlerLifetime;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.TimeSpan);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;UseSocketsHttpHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.DependencyInjection;HttpClientBuilderExtensions;UseSocketsHttpHandler;(Microsoft.Extensions.DependencyInjection.IHttpClientBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | @@ -1449,7 +1465,6 @@ | Microsoft.Extensions.FileProviders.Composite;CompositeDirectoryContents;CompositeDirectoryContents;(System.Collections.Generic.IList,System.String);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;PhysicalDirectoryInfo;(System.IO.DirectoryInfo);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info];value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_Name;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.DirectoryInfo.Name];ReturnValue;value;dfc-generated | -| Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_PhysicalPath;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Field[System.IO.FileSystemInfo.FullPath];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalDirectoryInfo;get_PhysicalPath;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalDirectoryInfo._info].Property[System.IO.FileSystemInfo.FullName];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalFileInfo;CreateReadStream;();Argument[this].Property[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo.PhysicalPath];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.FileProviders.Physical;PhysicalFileInfo;CreateReadStream;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.Physical.PhysicalFileInfo._info].Property[System.IO.FileSystemInfo.FullName];ReturnValue;taint;dfc-generated | @@ -1462,6 +1477,8 @@ | Microsoft.Extensions.FileProviders;CompositeFileProvider;CompositeFileProvider;(Microsoft.Extensions.FileProviders.IFileProvider[]);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders];value;dfc-generated | | Microsoft.Extensions.FileProviders;CompositeFileProvider;CompositeFileProvider;(System.Collections.Generic.IEnumerable);Argument[0].Element;Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders].Element;value;dfc-generated | | Microsoft.Extensions.FileProviders;CompositeFileProvider;get_FileProviders;();Argument[this].SyntheticField[Microsoft.Extensions.FileProviders.CompositeFileProvider._fileProviders];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.FileProviders;NotFoundFileInfo;NotFoundFileInfo;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.FileProviders.NotFoundFileInfo.Name];value;dfc-generated | +| Microsoft.Extensions.FileProviders;PhysicalFileProvider;PhysicalFileProvider;(System.String,Microsoft.Extensions.FileProviders.Physical.ExclusionFilters);Argument[0];Argument[this].Property[Microsoft.Extensions.FileProviders.PhysicalFileProvider.Root];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoBase;EnumerateFileSystemInfos;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;DirectoryInfoBase;GetDirectory;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileInfoWrapper;FileInfoWrapper;(System.IO.FileInfo);Argument[0];Argument[this].SyntheticField[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoWrapper._fileInfo];value;dfc-generated | @@ -1472,20 +1489,36 @@ | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_FullName;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_Name;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Abstractions;FileSystemInfoBase;get_ParentDirectory;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;LiteralPathSegment;LiteralPathSegment;(System.String,System.StringComparison);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.LiteralPathSegment.Value];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.BeginsWith];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[1];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.Contains];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments;WildcardPathSegment;WildcardPathSegment;(System.String,System.Collections.Generic.List,System.String,System.StringComparison);Argument[2];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment.EndsWith];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContext;PushDataFrame;(TFrame);Argument[0];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear+FrameData;get_Stem;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;PatternContextLinear;(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.Pattern];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextLinear;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear+FrameData.Stem];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged+FrameData;get_Stem;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;CalculateStem;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PatternContextRagged;(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.EndsWith];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;PushDirectory;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase);Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.Pattern].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern.StartsWith];Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.SegmentGroup];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[0].Property[Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase.Name];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts;PatternContextRagged;Test;(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase);Argument[this].Field[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext`1.Frame].Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged+FrameData.Stem];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];taint;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;IPatternContext;Declare;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.FileSystemGlobbing.Internal;MatcherContext;MatcherContext;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable,Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase,System.StringComparison);Argument[2];Argument[this];taint;df-generated | +| Microsoft.Extensions.FileSystemGlobbing.Internal;PatternTestResult;Success;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult.Stem];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;FilePatternMatch;(System.String,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Path];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;FilePatternMatch;FilePatternMatch;(System.String,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch.Stem];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing;InMemoryDirectoryInfo;GetFile;(System.String);Argument[this];ReturnValue.SyntheticField[Microsoft.Extensions.FileSystemGlobbing.Internal.InMemoryFileInfo._parent];value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing;Matcher;AddExclude;(System.String);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.FileSystemGlobbing;Matcher;AddInclude;(System.String);Argument[this];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;MatcherExtensions;GetResultsInFullPath;(Microsoft.Extensions.FileSystemGlobbing.Matcher,System.String);Argument[1];ReturnValue.Element;taint;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files];value;dfc-generated | +| Microsoft.Extensions.FileSystemGlobbing;PatternMatchingResult;PatternMatchingResult;(System.Collections.Generic.IEnumerable,System.Boolean);Argument[0];Argument[this].Property[Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult.Files];value;dfc-generated | | Microsoft.Extensions.Hosting.Internal;ApplicationLifetime;ApplicationLifetime;(Microsoft.Extensions.Logging.ILogger);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Hosting.Internal;ConsoleLifetime;ConsoleLifetime;(Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.ILoggerFactory);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Hosting.Internal;ConsoleLifetime;ConsoleLifetime;(Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Hosting.IHostEnvironment,Microsoft.Extensions.Hosting.IHostApplicationLifetime,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.ILoggerFactory);Argument[1];Argument[this];taint;df-generated | @@ -1501,8 +1534,11 @@ | Microsoft.Extensions.Hosting;GenericHostWebHostBuilderExtensions;ConfigureWebHost;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;GenericHostWebHostBuilderExtensions;ConfigureWebHost;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Hosting;Host;CreateEmptyApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args];ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];taint;dfc-generated | +| Microsoft.Extensions.Hosting;Host;CreateEmptyApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration];ReturnValue.Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];value;dfc-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;HostApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Args];Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];taint;dfc-generated | +| Microsoft.Extensions.Hosting;HostApplicationBuilder;HostApplicationBuilder;(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings);Argument[0].Property[Microsoft.Extensions.Hosting.HostApplicationBuilderSettings.Configuration];Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];value;dfc-generated | | Microsoft.Extensions.Hosting;HostApplicationBuilder;get_Configuration;();Argument[this].Property[Microsoft.Extensions.Hosting.HostApplicationBuilder.Configuration];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Hosting;HostBuilderContext;HostBuilderContext;(System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[Microsoft.Extensions.Hosting.HostBuilderContext.Properties];value;dfc-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[0];ReturnValue;value;hq-generated | | Microsoft.Extensions.Hosting;HostingHostBuilderExtensions;ConfigureAppConfiguration;(Microsoft.Extensions.Hosting.IHostBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | @@ -1603,8 +1639,20 @@ | Microsoft.Extensions.Http;HttpMessageHandlerBuilder;CreateHandlerPipeline;(System.Net.Http.HttpMessageHandler,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;value;dfc-generated | | Microsoft.Extensions.Http;IHttpMessageHandlerBuilderFilter;Configure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Localization;IResourceNamesCache;GetOrAdd;(System.String,System.Func>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Category];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.EventId];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.State];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[4];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[4];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Exception];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter];value;dfc-generated | +| Microsoft.Extensions.Logging.Abstractions;LogEntry;LogEntry;(Microsoft.Extensions.Logging.LogLevel,System.String,Microsoft.Extensions.Logging.EventId,TState,System.Exception,System.Func);Argument[5];Argument[this].Property[Microsoft.Extensions.Logging.Abstractions.LogEntry`1.Formatter];value;hq-generated | | Microsoft.Extensions.Logging.Console;ConfigurationConsoleLoggerSettings;ConfigurationConsoleLoggerSettings;(Microsoft.Extensions.Configuration.IConfiguration);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Logging.Console;ConsoleFormatter;ConsoleFormatter;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.Console.ConsoleFormatter.Name];value;dfc-generated | | Microsoft.Extensions.Logging.Console;ConsoleFormatter;Write;(Microsoft.Extensions.Logging.Abstractions.LogEntry,Microsoft.Extensions.Logging.IExternalScopeProvider,System.IO.TextWriter);Argument[0];Argument[2];taint;df-generated | | Microsoft.Extensions.Logging.Console;ConsoleLoggerProvider;ConsoleLoggerProvider;(Microsoft.Extensions.Options.IOptionsMonitor,System.Collections.Generic.IEnumerable);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging.Console;IConsoleLoggerSettings;Reload;();Argument[this];ReturnValue;value;dfc-generated | @@ -1659,6 +1707,7 @@ | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggerFactory,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggerFactory,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Logging;DebugLoggerFactoryExtensions;AddDebug;(Microsoft.Extensions.Logging.ILoggingBuilder);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Logging;EventId;EventId;(System.Int32,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name];value;dfc-generated | | Microsoft.Extensions.Logging;EventId;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.EventId.Name];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;EventLoggerFactoryExtensions;AddEventLog;(Microsoft.Extensions.Logging.ILoggerFactory);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;EventLoggerFactoryExtensions;AddEventLog;(Microsoft.Extensions.Logging.ILoggerFactory,Microsoft.Extensions.Logging.EventLog.EventLogSettings);Argument[0];ReturnValue;value;dfc-generated | @@ -1759,8 +1808,21 @@ | Microsoft.Extensions.Logging;LoggerFactory;LoggerFactory;(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider);Argument[2];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging;LoggerFactory;LoggerFactory;(System.Collections.Generic.IEnumerable,Microsoft.Extensions.Options.IOptionsMonitor,Microsoft.Extensions.Options.IOptions,Microsoft.Extensions.Logging.IExternalScopeProvider);Argument[3];Argument[this];taint;df-generated | | Microsoft.Extensions.Logging;LoggerFilterOptions;get_Rules;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.LogLevel];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.Filter];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;LoggerFilterRule;(System.String,System.String,System.Nullable,System.Func);Argument[3];Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.Filter];value;hq-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.CategoryName];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Logging;LoggerFilterRule;ToString;();Argument[this].Property[Microsoft.Extensions.Logging.LoggerFilterRule.ProviderName];ReturnValue;taint;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(Microsoft.Extensions.Logging.LogLevel,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.Int32,Microsoft.Extensions.Logging.LogLevel,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | +| Microsoft.Extensions.Logging;LoggerMessageAttribute;LoggerMessageAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.LoggerMessageAttribute.Message];value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;AddConfiguration;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Configuration.IConfiguration);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;AddProvider;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.ILoggerProvider);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;ClearProviders;(Microsoft.Extensions.Logging.ILoggingBuilder);Argument[0];ReturnValue;value;dfc-generated | @@ -1769,6 +1831,7 @@ | Microsoft.Extensions.Logging;LoggingBuilderExtensions;Configure;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;Configure;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Logging;LoggingBuilderExtensions;SetMinimumLevel;(Microsoft.Extensions.Logging.ILoggingBuilder,Microsoft.Extensions.Logging.LogLevel);Argument[0];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Logging;ProviderAliasAttribute;ProviderAliasAttribute;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Logging.ProviderAliasAttribute.Alias];value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggerFactory,System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -1777,28 +1840,92 @@ | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.Diagnostics.SourceSwitch,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.String);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Logging;TraceSourceFactoryExtensions;AddTraceSource;(Microsoft.Extensions.Logging.ILoggingBuilder,System.String,System.Diagnostics.TraceListener);Argument[0];ReturnValue;value;dfc-generated | -| Microsoft.Extensions.Options;ConfigurationChangeTokenSource;ConfigurationChangeTokenSource;(System.String,Microsoft.Extensions.Configuration.IConfiguration);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigurationChangeTokenSource;ConfigurationChangeTokenSource;(System.String,Microsoft.Extensions.Configuration.IConfiguration);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigurationChangeTokenSource`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;ConfigurationChangeTokenSource;GetChangeToken;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`6.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`5.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`4.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`3.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`2.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureNamedOptions;ConfigureNamedOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ConfigureNamedOptions`1.Action];value;hq-generated | | Microsoft.Extensions.Options;ConfigureOptions;Configure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;ConfigureOptions;ConfigureOptions;(System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ConfigureOptions`1.Action];value;hq-generated | +| Microsoft.Extensions.Options;DataAnnotationValidateOptions;DataAnnotationValidateOptions;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.DataAnnotationValidateOptions`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;IOptionsMonitor;OnChange;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;IOptionsMonitorCache;GetOrAdd;(System.String,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;NamedConfigureFromConfigurationOptions;NamedConfigureFromConfigurationOptions;(System.String,Microsoft.Extensions.Configuration.IConfiguration,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -1826,6 +1953,8 @@ | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;Configure;(System.Action);Argument[this];ReturnValue;value;hq-generated | +| Microsoft.Extensions.Options;OptionsBuilder;OptionsBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Services];value;dfc-generated | +| Microsoft.Extensions.Options;OptionsBuilder;OptionsBuilder;(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.OptionsBuilder`1.Name];value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;OptionsBuilder;PostConfigure;(System.Action);Argument[this];ReturnValue;value;dfc-generated | @@ -1898,6 +2027,7 @@ | Microsoft.Extensions.Options;OptionsBuilder;Validate;(System.Func,System.String);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Options;OptionsBuilder;Validate;(System.Func,System.String);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Options;OptionsBuilder;Validate;(System.Func,System.String);Argument[this];ReturnValue;value;hq-generated | +| Microsoft.Extensions.Options;OptionsFactory;Create;(System.String);Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[0].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[1].Element;Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsFactory;OptionsFactory;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable>);Argument[2].Element;Argument[this];taint;df-generated | @@ -1905,47 +2035,194 @@ | Microsoft.Extensions.Options;OptionsMonitor;OptionsMonitor;(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsMonitor;OptionsMonitor;(Microsoft.Extensions.Options.IOptionsFactory,System.Collections.Generic.IEnumerable>,Microsoft.Extensions.Options.IOptionsMonitorCache);Argument[2];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;OptionsMonitorExtensions;OnChange;(Microsoft.Extensions.Options.IOptionsMonitor,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;OptionsValidationException;OptionsValidationException;(System.String,System.Type,System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.OptionsName];value;dfc-generated | +| Microsoft.Extensions.Options;OptionsValidationException;OptionsValidationException;(System.String,System.Type,System.Collections.Generic.IEnumerable);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures];value;dfc-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_Message;();Argument[this].Property[Microsoft.Extensions.Options.OptionsValidationException.Failures].Element;ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Options;OptionsValidationException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | +| Microsoft.Extensions.Options;OptionsWrapper;OptionsWrapper;(TOptions);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.OptionsWrapper`1.Value];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Action);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`6.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Action);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`5.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,TDep3,System.Action);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`4.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep1,TDep2,System.Action);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`3.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(TOptions);Argument[0];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,TDep,System.Action);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`2.Action];value;hq-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigure;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Action];value;dfc-generated | +| Microsoft.Extensions.Options;PostConfigureOptions;PostConfigureOptions;(System.String,System.Action);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.PostConfigureOptions`1.Action];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency5];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Dependency5];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[6].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[6].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[7];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,TDep5,System.Func,System.String);Argument[7];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`6.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency4];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Dependency4];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[5].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[5].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,TDep4,System.Func,System.String);Argument[6];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`5.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency3];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Dependency3];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,TDep3,System.Func,System.String);Argument[5];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`4.FailureMessage];value;hq-generated | | Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency1];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency1];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency2];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Dependency2];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep1,TDep2,System.Func,System.String);Argument[4];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`3.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Dependency];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Dependency];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | -| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[1];Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,TDep,System.Func,System.String);Argument[3];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`2.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;Validate;(System.String,TOptions);Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Name];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Name];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Validation];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[1];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.Validation];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptions;ValidateOptions;(System.String,System.Func,System.String);Argument[2];Argument[this].Property[Microsoft.Extensions.Options.ValidateOptions`1.FailureMessage];value;hq-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];taint;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.FailureMessage];value;dfc-generated | +| Microsoft.Extensions.Options;ValidateOptionsResult;Fail;(System.String);Argument[0];ReturnValue.Property[Microsoft.Extensions.Options.ValidateOptionsResult.Failures].Element;value;dfc-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddError;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddError;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResult;(Microsoft.Extensions.Options.ValidateOptionsResult);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Options;ValidateOptionsResultBuilder;AddResults;(System.Collections.Generic.IEnumerable);Argument[0].Element;Argument[this];taint;df-generated | +| Microsoft.Extensions.Options;ValidateOptionsResultBuilder;Build;();Argument[this];ReturnValue;taint;df-generated | | Microsoft.Extensions.Primitives;CancellationChangeToken;CancellationChangeToken;(System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action,TState);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | Microsoft.Extensions.Primitives;ChangeToken;OnChange;(System.Func,System.Action,TState);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| Microsoft.Extensions.Primitives;CompositeChangeToken;CompositeChangeToken;(System.Collections.Generic.IReadOnlyList);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.CompositeChangeToken.ChangeTokens];value;dfc-generated | | Microsoft.Extensions.Primitives;Extensions;Append;(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment);Argument[0];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Primitives;Extensions;Append;(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment);Argument[1].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];Argument[0];taint;dfc-generated | | Microsoft.Extensions.Primitives;Extensions;Append;(System.Text.StringBuilder,Microsoft.Extensions.Primitives.StringSegment);Argument[1].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | @@ -1954,6 +2231,8 @@ | Microsoft.Extensions.Primitives;IChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;dfc-generated | | Microsoft.Extensions.Primitives;IChangeToken;RegisterChangeCallback;(System.Action,System.Object);Argument[this];ReturnValue;value;hq-generated | | Microsoft.Extensions.Primitives;InplaceStringBuilder;ToString;();Argument[this];ReturnValue;taint;df-generated | +| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];value;dfc-generated | +| Microsoft.Extensions.Primitives;StringSegment;StringSegment;(System.String,System.Int32,System.Int32);Argument[0];Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];value;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;Substring;(System.Int32);Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;Substring;(System.Int32,System.Int32);Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | | Microsoft.Extensions.Primitives;StringSegment;ToString;();Argument[this].Property[Microsoft.Extensions.Primitives.StringSegment.Buffer];ReturnValue;taint;dfc-generated | @@ -4210,7 +4489,7 @@ | System.Buffers;ReadOnlySpanAction;BeginInvoke;(System.ReadOnlySpan,TArg,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Buffers;SearchValues;Create;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Buffers;SearchValues;Create;(System.ReadOnlySpan,System.StringComparison);Argument[0];ReturnValue;taint;df-generated | -| System.Buffers;SequenceReader;SequenceReader;(System.Buffers.ReadOnlySequence);Argument[0];Argument[this];taint;df-generated | +| System.Buffers;SequenceReader;SequenceReader;(System.Buffers.ReadOnlySequence);Argument[0];Argument[this].Property[System.Buffers.SequenceReader`1.Sequence];value;dfc-generated | | System.Buffers;SequenceReader;TryCopyTo;(System.Span);Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element;Argument[0].Element;value;dfc-generated | | System.Buffers;SequenceReader;TryCopyTo;(System.Span);Argument[this].Property[System.Buffers.SequenceReader`1.UnreadSpan].Element;Argument[0].Element;value;dfc-generated | | System.Buffers;SequenceReader;TryPeek;(System.Int64,T);Argument[this].Property[System.Buffers.SequenceReader`1.CurrentSpan].Element;ReturnValue;value;dfc-generated | @@ -4349,6 +4628,9 @@ | System.CodeDom.Compiler;CodeGenerator;get_Options;();Argument[this].SyntheticField[System.CodeDom.Compiler.CodeGenerator._options];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;CodeGenerator;get_Output;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CodeGeneratorOptions;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[0];Argument[this].Property[System.CodeDom.Compiler.CompilerError.FileName];value;dfc-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[3];Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorNumber];value;dfc-generated | +| System.CodeDom.Compiler;CompilerError;CompilerError;(System.String,System.Int32,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.CodeDom.Compiler.CompilerError.ErrorText];value;dfc-generated | | System.CodeDom.Compiler;CompilerError;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerErrorCollection;Add;(System.CodeDom.Compiler.CompilerError);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;AddRange;(System.CodeDom.Compiler.CompilerErrorCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4359,9 +4641,12 @@ | System.CodeDom.Compiler;CompilerErrorCollection;Insert;(System.Int32,System.CodeDom.Compiler.CompilerError);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;CompilerErrorCollection;set_Item;(System.Int32,System.CodeDom.Compiler.CompilerError);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom.Compiler;CompilerInfo;CreateDefaultCompilerParameters;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerInfo;GetExtensions;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerInfo;GetLanguages;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;CompilerParameters;CompilerParameters;(System.String[],System.String,System.Boolean);Argument[0].Element;Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.ReferencedAssemblies].Element;value;dfc-generated | +| System.CodeDom.Compiler;CompilerParameters;CompilerParameters;(System.String[],System.String,System.Boolean);Argument[1];Argument[this].Property[System.CodeDom.Compiler.CompilerParameters.OutputAssembly];value;dfc-generated | +| System.CodeDom.Compiler;CompilerResults;CompilerResults;(System.CodeDom.Compiler.TempFileCollection);Argument[0];Argument[this].Property[System.CodeDom.Compiler.CompilerResults.TempFiles];value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[3];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[4];ReturnValue;value;dfc-generated | | System.CodeDom.Compiler;Executor;ExecWaitWithCapture;(System.IntPtr,System.String,System.String,System.CodeDom.Compiler.TempFileCollection,System.String,System.String);Argument[4];ReturnValue;value;dfc-generated | @@ -4410,6 +4695,10 @@ | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.Char[]);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.Char[]);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | @@ -4430,6 +4719,10 @@ | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | +| System.CodeDom.Compiler;IndentedTextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;dfc-generated | | System.CodeDom.Compiler;IndentedTextWriter;WriteLineAsync;(System.Char[],System.Int32,System.Int32);Argument[0].Element;Argument[this].SyntheticField[System.CodeDom.Compiler.IndentedTextWriter._writer];taint;df-generated | @@ -4455,12 +4748,18 @@ | System.CodeDom.Compiler;TempFileCollection;get_BasePath;();Argument[this];ReturnValue;taint;df-generated | | System.CodeDom.Compiler;TempFileCollection;get_TempDir;();Argument[this].SyntheticField[System.CodeDom.Compiler.TempFileCollection._tempDir];ReturnValue;value;dfc-generated | | System.CodeDom;CodeArgumentReferenceExpression;CodeArgumentReferenceExpression;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression[]);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.CodeDom.CodeTypeReference,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | +| System.CodeDom;CodeArrayCreateExpression;CodeArrayCreateExpression;(System.Type,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeArrayCreateExpression.SizeExpression];value;dfc-generated | | System.CodeDom;CodeArrayCreateExpression;get_Initializers;();Argument[this];ReturnValue;taint;df-generated | -| System.CodeDom;CodeAttachEventStatement;CodeAttachEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.String,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeArrayIndexerExpression;CodeArrayIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeArrayIndexerExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeAssignStatement;CodeAssignStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeAssignStatement.Left];value;dfc-generated | +| System.CodeDom;CodeAssignStatement;CodeAssignStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAssignStatement.Right];value;dfc-generated | +| System.CodeDom;CodeAttachEventStatement;CodeAttachEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAttachEventStatement.Listener];value;dfc-generated | +| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value];value;dfc-generated | +| System.CodeDom;CodeAttributeArgument;CodeAttributeArgument;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeAttributeArgument.Value];value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;Add;(System.CodeDom.CodeAttributeArgument);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;AddRange;(System.CodeDom.CodeAttributeArgumentCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeArgumentCollection;AddRange;(System.CodeDom.CodeAttributeArgument[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4484,7 +4783,11 @@ | System.CodeDom;CodeAttributeDeclarationCollection;Insert;(System.Int32,System.CodeDom.CodeAttributeDeclaration);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeAttributeDeclarationCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeAttributeDeclarationCollection;set_Item;(System.Int32,System.CodeDom.CodeAttributeDeclaration);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeBinaryOperatorExpression;CodeBinaryOperatorExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Left];value;dfc-generated | +| System.CodeDom;CodeBinaryOperatorExpression;CodeBinaryOperatorExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeBinaryOperatorType,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeBinaryOperatorExpression.Right];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | +| System.CodeDom;CodeCastExpression;CodeCastExpression;(System.Type,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeCastExpression.Expression];value;dfc-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String,System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeCatchClause;CodeCatchClause;(System.String,System.CodeDom.CodeTypeReference);Argument[1];Argument[this];taint;df-generated | @@ -4499,9 +4802,11 @@ | System.CodeDom;CodeCatchClauseCollection;Insert;(System.Int32,System.CodeDom.CodeCatchClause);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCatchClauseCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeCatchClauseCollection;set_Item;(System.Int32,System.CodeDom.CodeCatchClause);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[1];Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumAlgorithmId];value;dfc-generated | +| System.CodeDom;CodeChecksumPragma;CodeChecksumPragma;(System.String,System.Guid,System.Byte[]);Argument[2];Argument[this].Property[System.CodeDom.CodeChecksumPragma.ChecksumData];value;dfc-generated | | System.CodeDom;CodeComment;CodeComment;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeComment;CodeComment;(System.String,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeCommentStatement;CodeCommentStatement;(System.CodeDom.CodeComment);Argument[0];Argument[this].Property[System.CodeDom.CodeCommentStatement.Comment];value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;Add;(System.CodeDom.CodeCommentStatement);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;AddRange;(System.CodeDom.CodeCommentStatementCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;AddRange;(System.CodeDom.CodeCommentStatement[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4511,9 +4816,13 @@ | System.CodeDom;CodeCommentStatementCollection;Insert;(System.Int32,System.CodeDom.CodeCommentStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeCommentStatementCollection;set_Item;(System.Int32,System.CodeDom.CodeCommentStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition];value;dfc-generated | +| System.CodeDom;CodeConditionStatement;CodeConditionStatement;(System.CodeDom.CodeExpression,System.CodeDom.CodeStatement[],System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeConditionStatement.Condition];value;dfc-generated | | System.CodeDom;CodeDefaultValueExpression;CodeDefaultValueExpression;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[2];Argument[this];taint;df-generated | +| System.CodeDom;CodeDelegateCreateExpression;CodeDelegateCreateExpression;(System.CodeDom.CodeTypeReference,System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this].Property[System.CodeDom.CodeDelegateCreateExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDelegateInvokeExpression;CodeDelegateInvokeExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeDelegateInvokeExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeDirectionExpression;CodeDirectionExpression;(System.CodeDom.FieldDirection,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeDirectionExpression.Expression];value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;Add;(System.CodeDom.CodeDirective);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;AddRange;(System.CodeDom.CodeDirectiveCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;AddRange;(System.CodeDom.CodeDirective[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4523,7 +4832,7 @@ | System.CodeDom;CodeDirectiveCollection;Insert;(System.Int32,System.CodeDom.CodeDirective);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeDirectiveCollection;set_Item;(System.Int32,System.CodeDom.CodeDirective);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeEventReferenceExpression;CodeEventReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeEventReferenceExpression;CodeEventReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeEventReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeExpressionCollection;Add;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;AddRange;(System.CodeDom.CodeExpressionCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;AddRange;(System.CodeDom.CodeExpression[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4533,10 +4842,15 @@ | System.CodeDom;CodeExpressionCollection;Insert;(System.Int32,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeExpressionCollection;set_Item;(System.Int32,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodeFieldReferenceExpression;CodeFieldReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeExpressionStatement;CodeExpressionStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeExpressionStatement.Expression];value;dfc-generated | +| System.CodeDom;CodeFieldReferenceExpression;CodeFieldReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeFieldReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeGotoStatement;CodeGotoStatement;(System.String);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeIndexerExpression;CodeIndexerExpression;(System.CodeDom.CodeExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this].Property[System.CodeDom.CodeIndexerExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[0];Argument[this].Property[System.CodeDom.CodeIterationStatement.InitStatement];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[1];Argument[this].Property[System.CodeDom.CodeIterationStatement.TestExpression];value;dfc-generated | +| System.CodeDom;CodeIterationStatement;CodeIterationStatement;(System.CodeDom.CodeStatement,System.CodeDom.CodeExpression,System.CodeDom.CodeStatement,System.CodeDom.CodeStatement[]);Argument[2];Argument[this].Property[System.CodeDom.CodeIterationStatement.IncrementStatement];value;dfc-generated | | System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String,System.CodeDom.CodeStatement);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeLabeledStatement;CodeLabeledStatement;(System.String,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.CodeDom.CodeLabeledStatement.Statement];value;dfc-generated | | System.CodeDom;CodeLinePragma;CodeLinePragma;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeMemberField;CodeMemberField;(System.CodeDom.CodeTypeReference,System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeMemberField;CodeMemberField;(System.CodeDom.CodeTypeReference,System.String);Argument[1];Argument[this];taint;df-generated | @@ -4552,8 +4866,9 @@ | System.CodeDom;CodeMemberMethod;remove_PopulateParameters;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeMemberMethod;remove_PopulateStatements;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeMethodInvokeExpression;CodeMethodInvokeExpression;(System.CodeDom.CodeMethodReferenceExpression,System.CodeDom.CodeExpression[]);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[]);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeMethodReferenceExpression;CodeMethodReferenceExpression;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeTypeReference[]);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReferenceExpression.TargetObject];value;dfc-generated | +| System.CodeDom;CodeMethodReturnStatement;CodeMethodReturnStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeMethodReturnStatement.Expression];value;dfc-generated | | System.CodeDom;CodeNamespace;CodeNamespace;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeNamespace;add_PopulateComments;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeNamespace;add_PopulateImports;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -4594,9 +4909,11 @@ | System.CodeDom;CodeParameterDeclarationExpressionCollection;Insert;(System.Int32,System.CodeDom.CodeParameterDeclarationExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeParameterDeclarationExpressionCollection;set_Item;(System.Int32,System.CodeDom.CodeParameterDeclarationExpression);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | -| System.CodeDom;CodePropertyReferenceExpression;CodePropertyReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodePrimitiveExpression;CodePrimitiveExpression;(System.Object);Argument[0];Argument[this].Property[System.CodeDom.CodePrimitiveExpression.Value];value;dfc-generated | +| System.CodeDom;CodePropertyReferenceExpression;CodePropertyReferenceExpression;(System.CodeDom.CodeExpression,System.String);Argument[0];Argument[this].Property[System.CodeDom.CodePropertyReferenceExpression.TargetObject];value;dfc-generated | | System.CodeDom;CodeRegionDirective;CodeRegionDirective;(System.CodeDom.CodeRegionMode,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeEventReferenceExpression,System.CodeDom.CodeExpression);Argument[1];Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener];value;dfc-generated | +| System.CodeDom;CodeRemoveEventStatement;CodeRemoveEventStatement;(System.CodeDom.CodeExpression,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeRemoveEventStatement.Listener];value;dfc-generated | | System.CodeDom;CodeSnippetCompileUnit;CodeSnippetCompileUnit;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeSnippetExpression;CodeSnippetExpression;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeSnippetStatement;CodeSnippetStatement;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -4610,6 +4927,7 @@ | System.CodeDom;CodeStatementCollection;Insert;(System.Int32,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeStatementCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeStatementCollection;set_Item;(System.Int32,System.CodeDom.CodeStatement);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeThrowExceptionStatement;CodeThrowExceptionStatement;(System.CodeDom.CodeExpression);Argument[0];Argument[this].Property[System.CodeDom.CodeThrowExceptionStatement.ToThrow];value;dfc-generated | | System.CodeDom;CodeTypeDeclaration;CodeTypeDeclaration;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeDeclaration;add_PopulateBaseTypes;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.CodeDom;CodeTypeDeclaration;add_PopulateMembers;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -4647,8 +4965,10 @@ | System.CodeDom;CodeTypeParameterCollection;Insert;(System.Int32,System.CodeDom.CodeTypeParameter);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeTypeParameterCollection;get_Item;(System.Int32);Argument[this].Property[System.Collections.CollectionBase.List].Element;ReturnValue;value;dfc-generated | | System.CodeDom;CodeTypeParameterCollection;set_Item;(System.Int32,System.CodeDom.CodeTypeParameter);Argument[1];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.CodeDom.CodeTypeReference,System.Int32);Argument[0];Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType];value;dfc-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.CodeDom.CodeTypeReferenceOptions);Argument[0];Argument[this];taint;df-generated | +| System.CodeDom;CodeTypeReference;CodeTypeReference;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeTypeReference;get_TypeArguments;();Argument[this].Property[System.CodeDom.CodeTypeReference.ArrayElementType].Property[System.CodeDom.CodeTypeReference.TypeArguments];ReturnValue;value;dfc-generated | | System.CodeDom;CodeTypeReferenceCollection;Add;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.CodeDom;CodeTypeReferenceCollection;AddRange;(System.CodeDom.CodeTypeReferenceCollection);Argument[0].Property[System.Collections.CollectionBase.List].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -4662,12 +4982,11 @@ | System.CodeDom;CodeTypeReferenceExpression;CodeTypeReferenceExpression;(System.CodeDom.CodeTypeReference);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String);Argument[0];Argument[this];taint;df-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[0];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.CodeDom.CodeTypeReference,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.String,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | -| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String,System.CodeDom.CodeExpression);Argument[1];Argument[this];taint;df-generated | +| System.CodeDom;CodeVariableDeclarationStatement;CodeVariableDeclarationStatement;(System.Type,System.String,System.CodeDom.CodeExpression);Argument[2];Argument[this].Property[System.CodeDom.CodeVariableDeclarationStatement.InitExpression];value;dfc-generated | | System.CodeDom;CodeVariableReferenceExpression;CodeVariableReferenceExpression;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Collections.Concurrent;BlockingCollection;Add;(T);Argument[0];Argument[this].Element;value;manual | | System.Collections.Concurrent;BlockingCollection;Add;(T,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | @@ -4728,6 +5047,7 @@ | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Int32,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Concurrent;ConcurrentDictionary;ConcurrentDictionary;(System.Int32,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[1].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | +| System.Collections.Concurrent;ConcurrentDictionary;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func);Argument[0];Argument[1].Parameter[0];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func);Argument[0];Argument[1].Parameter[0];value;hq-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func);Argument[1].ReturnValue;ReturnValue;value;dfc-generated | @@ -4743,6 +5063,7 @@ | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[2];Argument[1].Parameter[1];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;GetOrAdd;(TKey,System.Func,TArg);Argument[2];Argument[1].Parameter[1];value;hq-generated | +| System.Collections.Concurrent;ConcurrentDictionary;TryGetAlternateLookup;(System.Collections.Concurrent.ConcurrentDictionary+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Concurrent.ConcurrentDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Concurrent;ConcurrentDictionary;get_Comparer;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Concurrent;ConcurrentDictionary;get_Keys;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element;value;manual | | System.Collections.Concurrent;ConcurrentDictionary;get_Values;();Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue.Element;value;manual | @@ -4764,18 +5085,30 @@ | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Collections.Frozen;FrozenDictionary;ToFrozenDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;ContainsKey;(TAlternateKey);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;TryGetValue;(TAlternateKey,TValue);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenDictionary+AlternateLookup;get_Item;(TAlternateKey);Argument[0];Argument[this];taint;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenDictionary`2+Enumerator.Current];ReturnValue;value;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenDictionary`2+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenDictionary+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | +| System.Collections.Frozen;FrozenDictionary;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | +| System.Collections.Frozen;FrozenDictionary;TryGetAlternateLookup;(System.Collections.Frozen.FrozenDictionary+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenDictionary`2+AlternateLookup`1.Dictionary];value;dfc-generated | | System.Collections.Frozen;FrozenDictionary;get_Keys;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenDictionary;get_Values;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenSet;Create;(System.Collections.Generic.IEqualityComparer,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenSet;Create;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet;ToFrozenSet;(System.Collections.Generic.IEnumerable,System.Collections.Generic.IEqualityComparer);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;Contains;(TAlternate);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;TryGetValue;(TAlternate,T);Argument[0];Argument[this];taint;df-generated | +| System.Collections.Frozen;FrozenSet+AlternateLookup;TryGetValue;(TAlternate,T);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenSet`1+Enumerator.Current];ReturnValue;value;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this].Property[System.Collections.Frozen.FrozenSet`1+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Frozen;FrozenSet+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Collections.Frozen;FrozenSet;CopyTo;(System.Span);Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element;Argument[0].Element;value;dfc-generated | +| System.Collections.Frozen;FrozenSet;GetAlternateLookup;();Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set];value;dfc-generated | +| System.Collections.Frozen;FrozenSet;TryGetAlternateLookup;(System.Collections.Frozen.FrozenSet+AlternateLookup);Argument[this];ReturnValue.Property[System.Collections.Frozen.FrozenSet`1+AlternateLookup`1.Set];value;dfc-generated | | System.Collections.Frozen;FrozenSet;TryGetValue;(T,T);Argument[this].Property[System.Collections.Frozen.FrozenSet`1.Items].Element;ReturnValue;value;dfc-generated | | System.Collections.Frozen;FrozenSet;get_Items;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;CollectionExtensions;AsReadOnly;(System.Collections.Generic.IList);Argument[0].Element;ReturnValue;taint;df-generated | @@ -4919,6 +5252,29 @@ | System.Collections.Generic;List;Slice;(System.Int32,System.Int32);Argument[this].Element;ReturnValue.Element;value;dfc-generated | | System.Collections.Generic;List;Sort;(System.Comparison);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Collections.Generic;List;TrueForAll;(System.Predicate);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Key;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+Enumerator;get_Value;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+Enumerator.Current].Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+KeyCollection+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+KeyCollection+Enumerator.Current];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary+KeyCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+ValueCollection+Enumerator.Current];ReturnValue;value;df-generated | +| System.Collections.Generic;OrderedDictionary+ValueCollection+Enumerator;get_Current;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2+ValueCollection+Enumerator.Current];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary+ValueCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IDictionary,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;OrderedDictionary;(System.Int32,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer];value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;Remove;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;TryGetValue;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | +| System.Collections.Generic;OrderedDictionary;get_Comparer;();Argument[this].SyntheticField[System.Collections.Generic.OrderedDictionary`2._comparer];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;get_Keys;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Keys];ReturnValue;value;dfc-generated | +| System.Collections.Generic;OrderedDictionary;get_Values;();Argument[this].Property[System.Collections.Generic.OrderedDictionary`2.Values];ReturnValue;value;dfc-generated | | System.Collections.Generic;PriorityQueue+UnorderedItemsCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;PriorityQueue+UnorderedItemsCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Generic;PriorityQueue;Dequeue;();Argument[this];ReturnValue;taint;df-generated | @@ -5196,13 +5552,53 @@ | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>);Argument[0];ReturnValue;value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer);Argument[0];ReturnValue;value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0];ReturnValue;value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IEqualityComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableDictionary;ToImmutableDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Collections.Immutable;ImmutableDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Immutable;ImmutableDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | @@ -5226,10 +5622,7 @@ | System.Collections.Immutable;ImmutableDictionary;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary`2+Enumerator.Current];value;manual | | System.Collections.Immutable;ImmutableDictionary;Remove;(TKey);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;RemoveRange;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[0];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[1];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;SetItem;(TKey,TValue);Argument[this];ReturnValue;taint;df-generated | -| System.Collections.Immutable;ImmutableDictionary;SetItems;(System.Collections.Generic.IEnumerable>);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;SetItems;(System.Collections.Generic.IEnumerable>);Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;ToBuilder;();Argument[this];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableDictionary;TryGetKey;(TKey,TKey);Argument[0];ReturnValue;value;dfc-generated | @@ -5498,11 +5891,41 @@ | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];ReturnValue;taint;df-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable>,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];ReturnValue;taint;df-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[0].Element;Argument[2].Parameter[0];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2].ReturnValue;ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;hq-generated | +| System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;dfc-generated | | System.Collections.Immutable;ImmutableSortedDictionary;ToImmutableSortedDictionary;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Collections.Generic.IComparer,System.Collections.Generic.IEqualityComparer);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Collections.Immutable;ImmutableSortedDictionary+Builder;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | @@ -5639,6 +6062,9 @@ | System.Collections.ObjectModel;ReadOnlyObservableCollection;add_PropertyChanged;(System.ComponentModel.PropertyChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Collections.ObjectModel;ReadOnlyObservableCollection;remove_CollectionChanged;(System.Collections.Specialized.NotifyCollectionChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Collections.ObjectModel;ReadOnlyObservableCollection;remove_PropertyChanged;(System.ComponentModel.PropertyChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Collections.ObjectModel;ReadOnlySet;ReadOnlySet;(System.Collections.Generic.ISet);Argument[0];Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set];value;dfc-generated | +| System.Collections.ObjectModel;ReadOnlySet;get_Set;();Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set];ReturnValue;value;dfc-generated | +| System.Collections.ObjectModel;ReadOnlySet;get_SyncRoot;();Argument[this].SyntheticField[System.Collections.ObjectModel.ReadOnlySet`1._set].Property[System.Collections.ICollection.SyncRoot];ReturnValue;value;dfc-generated | | System.Collections.Specialized;CollectionsUtil;CreateCaseInsensitiveHashtable;(System.Collections.IDictionary);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | | System.Collections.Specialized;CollectionsUtil;CreateCaseInsensitiveHashtable;(System.Collections.IDictionary);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue.Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | | System.Collections.Specialized;INotifyCollectionChanged;add_CollectionChanged;(System.Collections.Specialized.NotifyCollectionChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -5780,8 +6206,6 @@ | System.Collections;IDictionaryEnumerator;get_Value;();Argument[this];ReturnValue;taint;df-generated | | System.Collections;IEnumerable;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.Collections;IEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | -| System.Collections;IEqualityComparer;Equals;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | -| System.Collections;IEqualityComparer;Equals;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Collections;IEqualityComparer;GetHashCode;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Collections;IList;Add;(System.Object);Argument[0];Argument[this].Element;value;manual | | System.Collections;IList;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -5814,9 +6238,22 @@ | System.Collections;Stack;Stack;(System.Collections.ICollection);Argument[0].Element;Argument[this].SyntheticField[System.Collections.Stack._array].Element;value;dfc-generated | | System.Collections;Stack;Synchronized;(System.Collections.Stack);Argument[0].Element;ReturnValue;taint;df-generated | | System.Collections;Stack;ToArray;();Argument[this].SyntheticField[System.Collections.Stack._array].Element;ReturnValue.Element;value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;ColumnAttribute;ColumnAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ColumnAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;ForeignKeyAttribute;ForeignKeyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.ForeignKeyAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;InversePropertyAttribute;InversePropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.InversePropertyAttribute.Property];value;dfc-generated | +| System.ComponentModel.DataAnnotations.Schema;TableAttribute;TableAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.Schema.TableAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AllowedValuesAttribute;AllowedValuesAttribute;(System.Object[]);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.AllowedValuesAttribute.Values];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.Name];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey];value;dfc-generated | +| System.ComponentModel.DataAnnotations;AssociationAttribute;AssociationAttribute;(System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey];value;dfc-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_OtherKeyMembers;();Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.OtherKey];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel.DataAnnotations;AssociationAttribute;get_ThisKeyMembers;();Argument[this].Property[System.ComponentModel.DataAnnotations.AssociationAttribute.ThisKey];ReturnValue.Element;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;CompareAttribute;CompareAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty];value;dfc-generated | +| System.ComponentModel.DataAnnotations;CompareAttribute;IsValid;(System.Object,System.ComponentModel.DataAnnotations.ValidationContext);Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherProperty];Argument[this].Property[System.ComponentModel.DataAnnotations.CompareAttribute.OtherPropertyDisplayName];value;dfc-generated | +| System.ComponentModel.DataAnnotations;CustomValidationAttribute;CustomValidationAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.CustomValidationAttribute.Method];value;dfc-generated | +| System.ComponentModel.DataAnnotations;DataTypeAttribute;DataTypeAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType];value;dfc-generated | | System.ComponentModel.DataAnnotations;DataTypeAttribute;GetDataTypeName;();Argument[this].Property[System.ComponentModel.DataAnnotations.DataTypeAttribute.CustomDataType];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations;DeniedValuesAttribute;DeniedValuesAttribute;(System.Object[]);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DeniedValuesAttribute.Values];value;dfc-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetAutoGenerateField;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetAutoGenerateFilter;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetDescription;();Argument[this];ReturnValue;taint;df-generated | @@ -5825,13 +6262,18 @@ | System.ComponentModel.DataAnnotations;DisplayAttribute;GetOrder;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetPrompt;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;DisplayAttribute;GetShortName;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.DisplayColumn];value;dfc-generated | +| System.ComponentModel.DataAnnotations;DisplayColumnAttribute;DisplayColumnAttribute;(System.String,System.String,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.DisplayColumnAttribute.SortColumn];value;dfc-generated | | System.ComponentModel.DataAnnotations;DisplayFormatAttribute;GetNullDisplayText;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;FilterUIHintAttribute;FilterUIHintAttribute;(System.String,System.String,System.Object[]);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.UIHint];value;dfc-generated | | System.ComponentModel.DataAnnotations;FilterUIHintAttribute;FilterUIHintAttribute;(System.String,System.String,System.Object[]);Argument[1];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.PresentationLayer];value;dfc-generated | | System.ComponentModel.DataAnnotations;FilterUIHintAttribute;get_ControlParameters;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;FilterUIHintAttribute;get_FilterUIHint;();Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.UIHint];ReturnValue;value;dfc-generated | | System.ComponentModel.DataAnnotations;FilterUIHintAttribute;get_PresentationLayer;();Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.FilterUIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.PresentationLayer];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Type,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Minimum];value;dfc-generated | +| System.ComponentModel.DataAnnotations;RangeAttribute;RangeAttribute;(System.Type,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.RangeAttribute.Maximum];value;dfc-generated | | System.ComponentModel.DataAnnotations;RegularExpressionAttribute;FormatErrorMessage;(System.String);Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern];ReturnValue;taint;dfc-generated | +| System.ComponentModel.DataAnnotations;RegularExpressionAttribute;RegularExpressionAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.RegularExpressionAttribute.Pattern];value;dfc-generated | | System.ComponentModel.DataAnnotations;UIHintAttribute;UIHintAttribute;(System.String,System.String,System.Object[]);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.UIHint];value;dfc-generated | | System.ComponentModel.DataAnnotations;UIHintAttribute;UIHintAttribute;(System.String,System.String,System.Object[]);Argument[1];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute._implementation].SyntheticField[System.ComponentModel.DataAnnotations.UIHintAttribute+UIHintImplementation.PresentationLayer];value;dfc-generated | | System.ComponentModel.DataAnnotations;UIHintAttribute;get_ControlParameters;();Argument[this];ReturnValue;taint;df-generated | @@ -5848,15 +6290,26 @@ | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.ValidationContext._serviceProvider];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationContext;InitializeServiceProvider;(System.Func);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DataAnnotations.ValidationContext._serviceProvider];value;hq-generated | +| System.ComponentModel.DataAnnotations;ValidationContext;ValidationContext;(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationContext.ObjectInstance];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationContext;get_Items;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.ComponentModel.DataAnnotations.ValidationResult,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.ValidationAttribute];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationException;ValidationException;(System.String,System.ComponentModel.DataAnnotations.ValidationAttribute,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationException.Value];value;dfc-generated | | System.ComponentModel.DataAnnotations;ValidationResult;ToString;();Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];ReturnValue;value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.ComponentModel.DataAnnotations.ValidationResult);Argument[0].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String,System.Collections.Generic.IEnumerable);Argument[0];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.ErrorMessage];value;dfc-generated | +| System.ComponentModel.DataAnnotations;ValidationResult;ValidationResult;(System.String,System.Collections.Generic.IEnumerable);Argument[1];Argument[this].Property[System.ComponentModel.DataAnnotations.ValidationResult.MemberNames];value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Append;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Pop;();Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;Push;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Current;();Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | | System.ComponentModel.Design.Serialization;ContextStack;get_Item;(System.Type);Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.ContextStack._contextStack].Element;ReturnValue;value;dfc-generated | +| System.ComponentModel.Design.Serialization;DefaultSerializationProviderAttribute;DefaultSerializationProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute.ProviderTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;DesignerSerializerAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId];taint;df-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute._typeId];taint;dfc-generated | | System.ComponentModel.Design.Serialization;DesignerSerializerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.Design.Serialization.DesignerSerializerAttribute.SerializerBaseTypeName];ReturnValue;taint;df-generated | @@ -5867,22 +6320,40 @@ | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;add_SerializationComplete;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;remove_ResolveName;(System.ComponentModel.Design.Serialization.ResolveNameEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design.Serialization;IDesignerSerializationManager;remove_SerializationComplete;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design.Serialization;InstanceDescriptor;InstanceDescriptor;(System.Reflection.MemberInfo,System.Collections.ICollection,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.InstanceDescriptor.MemberInfo];value;dfc-generated | +| System.ComponentModel.Design.Serialization;MemberRelationship;MemberRelationship;(System.Object,System.ComponentModel.MemberDescriptor);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Owner];value;dfc-generated | +| System.ComponentModel.Design.Serialization;MemberRelationship;MemberRelationship;(System.Object,System.ComponentModel.MemberDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.MemberRelationship.Member];value;dfc-generated | +| System.ComponentModel.Design.Serialization;ResolveNameEventArgs;ResolveNameEventArgs;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.ResolveNameEventArgs.Name];value;dfc-generated | | System.ComponentModel.Design.Serialization;ResolveNameEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.Serialization.ResolveNameEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.String,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.String,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerBaseTypeName];value;dfc-generated | +| System.ComponentModel.Design.Serialization;RootDesignerSerializerAttribute;RootDesignerSerializerAttribute;(System.String,System.Type,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute.SerializerTypeName];value;dfc-generated | +| System.ComponentModel.Design;ActiveDesignerEventArgs;ActiveDesignerEventArgs;(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost);Argument[0];Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.OldDesigner];value;dfc-generated | +| System.ComponentModel.Design;ActiveDesignerEventArgs;ActiveDesignerEventArgs;(System.ComponentModel.Design.IDesignerHost,System.ComponentModel.Design.IDesignerHost);Argument[1];Argument[this].Property[System.ComponentModel.Design.ActiveDesignerEventArgs.NewDesigner];value;dfc-generated | | System.ComponentModel.Design;ActiveDesignerEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ActiveDesignerEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;CommandID;ToString;();Argument[this].Property[System.ComponentModel.Design.CommandID.Guid];ReturnValue;taint;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Component];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[1];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.Member];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.OldValue];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangedEventArgs;ComponentChangedEventArgs;(System.Object,System.ComponentModel.MemberDescriptor,System.Object,System.Object);Argument[3];Argument[this].Property[System.ComponentModel.Design.ComponentChangedEventArgs.NewValue];value;dfc-generated | | System.ComponentModel.Design;ComponentChangedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentChangedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design;ComponentChangingEventArgs;ComponentChangingEventArgs;(System.Object,System.ComponentModel.MemberDescriptor);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Component];value;dfc-generated | +| System.ComponentModel.Design;ComponentChangingEventArgs;ComponentChangingEventArgs;(System.Object,System.ComponentModel.MemberDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.Design.ComponentChangingEventArgs.Member];value;dfc-generated | | System.ComponentModel.Design;ComponentChangingEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentChangingEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;ComponentEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel.Design;ComponentRenameEventArgs;ComponentRenameEventArgs;(System.Object,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.ComponentRenameEventArgs.Component];value;dfc-generated | | System.ComponentModel.Design;ComponentRenameEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.ComponentRenameEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerCollection;DesignerCollection;(System.Collections.IList);Argument[0];Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers];value;dfc-generated | | System.ComponentModel.Design;DesignerCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.ComponentModel.Design;DesignerCollection;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.Design.DesignerCollection._designers].Element;ReturnValue;value;dfc-generated | +| System.ComponentModel.Design;DesignerEventArgs;DesignerEventArgs;(System.ComponentModel.Design.IDesignerHost);Argument[0];Argument[this].Property[System.ComponentModel.Design.DesignerEventArgs.Designer];value;dfc-generated | | System.ComponentModel.Design;DesignerEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.DesignerEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.ComponentModel.Design;DesignerOptionService+DesignerOptionCollection;get_Properties;();Argument[this];ReturnValue;taint;df-generated | -| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[2];ReturnValue;taint;df-generated | -| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[0];ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Parent];value;dfc-generated | +| System.ComponentModel.Design;DesignerOptionService;CreateOptionCollection;(System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection,System.String,System.Object);Argument[1];ReturnValue.Property[System.ComponentModel.Design.DesignerOptionService+DesignerOptionCollection.Name];value;dfc-generated | +| System.ComponentModel.Design;DesignerTransaction;DesignerTransaction;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.DesignerTransaction.Description];value;dfc-generated | | System.ComponentModel.Design;DesignerTransactionCloseEventHandler;BeginInvoke;(System.Object,System.ComponentModel.Design.DesignerTransactionCloseEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerVerb;DesignerVerb;(System.String,System.EventHandler);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;DesignerVerb;DesignerVerb;(System.String,System.EventHandler,System.ComponentModel.Design.CommandID);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -5901,6 +6372,7 @@ | System.ComponentModel.Design;DesignerVerbCollection;set_Item;(System.Int32,System.ComponentModel.Design.DesignerVerb);Argument[1];Argument[this].Element;value;manual | | System.ComponentModel.Design;DesigntimeLicenseContext;GetSavedLicenseKey;(System.Type,System.Reflection.Assembly);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel.Design;DesigntimeLicenseContext;SetSavedLicenseKey;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | +| System.ComponentModel.Design;HelpKeywordAttribute;HelpKeywordAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.Design.HelpKeywordAttribute.HelpKeyword];value;dfc-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentAdded;(System.ComponentModel.Design.ComponentEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentAdding;(System.ComponentModel.Design.ComponentEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;IComponentChangeService;add_ComponentChanged;(System.ComponentModel.Design.ComponentChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -5949,14 +6421,22 @@ | System.ComponentModel.Design;MenuCommand;remove_CommandChanged;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel.Design;ServiceContainer;ServiceContainer;(System.IServiceProvider);Argument[0];Argument[this];taint;df-generated | | System.ComponentModel.Design;ServiceCreatorCallback;BeginInvoke;(System.ComponentModel.Design.IServiceContainer,System.Type,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;AddingNewEventArgs;AddingNewEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.AddingNewEventArgs.NewObject];value;dfc-generated | | System.ComponentModel;AddingNewEventHandler;BeginInvoke;(System.Object,System.ComponentModel.AddingNewEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;AmbientValueAttribute;(System.Type,System.String);Argument[1];Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];value;dfc-generated | +| System.ComponentModel;AmbientValueAttribute;get_Value;();Argument[this].SyntheticField[System.ComponentModel.AmbientValueAttribute._value];ReturnValue;value;dfc-generated | | System.ComponentModel;ArrayConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;ArrayConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;ArrayConverter;GetProperties;(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | +| System.ComponentModel;AsyncCompletedEventArgs;AsyncCompletedEventArgs;(System.Exception,System.Boolean,System.Object);Argument[0];Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.Error];value;dfc-generated | +| System.ComponentModel;AsyncCompletedEventArgs;AsyncCompletedEventArgs;(System.Exception,System.Boolean,System.Object);Argument[2];Argument[this].Property[System.ComponentModel.AsyncCompletedEventArgs.UserState];value;dfc-generated | | System.ComponentModel;AsyncCompletedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.AsyncCompletedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;Post;(System.Threading.SendOrPostCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;PostOperationCompleted;(System.Threading.SendOrPostCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;AsyncOperation;get_SynchronizationContext;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;AsyncOperationManager;CreateOperation;(System.Object);Argument[0];ReturnValue.Property[System.ComponentModel.AsyncOperation.UserSuppliedState];value;dfc-generated | | System.ComponentModel;AttributeCollection;AttributeCollection;(System.Attribute[]);Argument[0];Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes];value;dfc-generated | | System.ComponentModel;AttributeCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Collections.IEnumerator.Current];value;manual | | System.ComponentModel;AttributeCollection;get_Attributes;();Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes];ReturnValue;value;dfc-generated | @@ -5964,6 +6444,9 @@ | System.ComponentModel;AttributeCollection;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes].Element;ReturnValue;value;dfc-generated | | System.ComponentModel;AttributeCollection;get_Item;(System.Type);Argument[this].Property[System.ComponentModel.AttributeCollection.Attributes].Element;ReturnValue;value;dfc-generated | | System.ComponentModel;AttributeCollection;get_Item;(System.Type);Argument[this].SyntheticField[System.ComponentModel.AttributeCollection._attributes].Element;ReturnValue;value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName];value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.TypeName];value;dfc-generated | +| System.ComponentModel;AttributeProviderAttribute;AttributeProviderAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.AttributeProviderAttribute.PropertyName];value;dfc-generated | | System.ComponentModel;BackgroundWorker;add_DoWork;(System.ComponentModel.DoWorkEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;BackgroundWorker;add_ProgressChanged;(System.ComponentModel.ProgressChangedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;BackgroundWorker;add_RunWorkerCompleted;(System.ComponentModel.RunWorkerCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -5998,6 +6481,9 @@ | System.ComponentModel;CollectionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;CollectionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;CollectionConverter;GetProperties;(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;ComplexBindingPropertiesAttribute;ComplexBindingPropertiesAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.ComplexBindingPropertiesAttribute.DataMember];value;dfc-generated | | System.ComponentModel;Component;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;Component;get_Container;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ComponentCollection;ComponentCollection;(System.ComponentModel.IComponent[]);Argument[0].Element;Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | @@ -6015,7 +6501,8 @@ | System.ComponentModel;CultureInfoConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;CultureInfoConverter;GetCultureName;(System.Globalization.CultureInfo);Argument[0].Property[System.Globalization.CultureInfo.Name];ReturnValue;value;dfc-generated | | System.ComponentModel;CultureInfoConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | -| System.ComponentModel;CustomTypeDescriptor;CustomTypeDescriptor;(System.ComponentModel.ICustomTypeDescriptor);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel;CustomTypeDescriptor;CustomTypeDescriptor;(System.ComponentModel.ICustomTypeDescriptor);Argument[0];Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent];value;dfc-generated | +| System.ComponentModel;CustomTypeDescriptor;get_RequireRegisteredTypes;();Argument[this].SyntheticField[System.ComponentModel.CustomTypeDescriptor._parent].Property[System.ComponentModel.ICustomTypeDescriptor.RequireRegisteredTypes];ReturnValue;value;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;DateOnlyConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;value;dfc-generated | @@ -6033,6 +6520,9 @@ | System.ComponentModel;DateTimeOffsetConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;DecimalConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;DecimalConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | +| System.ComponentModel;DefaultBindingPropertyAttribute;DefaultBindingPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultBindingPropertyAttribute.Name];value;dfc-generated | +| System.ComponentModel;DefaultEventAttribute;DefaultEventAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultEventAttribute.Name];value;dfc-generated | +| System.ComponentModel;DefaultPropertyAttribute;DefaultPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DefaultPropertyAttribute.Name];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.Object);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | | System.ComponentModel;DefaultValueAttribute;DefaultValueAttribute;(System.Type,System.String);Argument[1];Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];value;dfc-generated | @@ -6040,16 +6530,26 @@ | System.ComponentModel;DefaultValueAttribute;get_Value;();Argument[this].SyntheticField[System.ComponentModel.DefaultValueAttribute._value];ReturnValue;value;dfc-generated | | System.ComponentModel;DescriptionAttribute;DescriptionAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];value;dfc-generated | | System.ComponentModel;DescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];ReturnValue;value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];value;dfc-generated | +| System.ComponentModel;DesignerAttribute;DesignerAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerTypeName];value;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];taint;df-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];taint;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];ReturnValue;taint;df-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerAttribute.DesignerBaseTypeName];ReturnValue;taint;dfc-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];ReturnValue;value;df-generated | | System.ComponentModel;DesignerAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.DesignerAttribute._typeId];ReturnValue;value;dfc-generated | +| System.ComponentModel;DesignerCategoryAttribute;DesignerCategoryAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];value;dfc-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];ReturnValue;taint;df-generated | | System.ComponentModel;DesignerCategoryAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.DesignerCategoryAttribute.Category];ReturnValue;taint;dfc-generated | +| System.ComponentModel;DisplayNameAttribute;DisplayNameAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue];value;dfc-generated | | System.ComponentModel;DisplayNameAttribute;get_DisplayName;();Argument[this].Property[System.ComponentModel.DisplayNameAttribute.DisplayNameValue];ReturnValue;value;dfc-generated | +| System.ComponentModel;DoWorkEventArgs;DoWorkEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.DoWorkEventArgs.Argument];value;dfc-generated | | System.ComponentModel;DoWorkEventHandler;BeginInvoke;(System.Object,System.ComponentModel.DoWorkEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName];value;dfc-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];value;dfc-generated | +| System.ComponentModel;EditorAttribute;EditorAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.EditorAttribute.EditorTypeName];value;dfc-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId];taint;df-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];Argument[this].SyntheticField[System.ComponentModel.EditorAttribute._typeId];taint;dfc-generated | | System.ComponentModel;EditorAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.EditorAttribute.EditorBaseTypeName];ReturnValue;taint;df-generated | @@ -6105,6 +6605,7 @@ | System.ComponentModel;IContainer;get_Components;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetProperties;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetProperties;(System.Attribute[]);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;ICustomTypeDescriptor;GetPropertiesFromRegisteredType;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ICustomTypeDescriptor;GetPropertyOwner;(System.ComponentModel.PropertyDescriptor);Argument[this];ReturnValue;value;dfc-generated | | System.ComponentModel;IListSource;GetList;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;INestedSite;get_FullName;();Argument[this];ReturnValue;taint;df-generated | @@ -6120,6 +6621,7 @@ | System.ComponentModel;ITypedList;GetItemProperties;(System.ComponentModel.PropertyDescriptor[]);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;ITypedList;GetListName;(System.ComponentModel.PropertyDescriptor[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.ComponentModel;ITypedList;GetListName;(System.ComponentModel.PropertyDescriptor[]);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;InitializationEventAttribute;InitializationEventAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.InitializationEventAttribute.EventName];value;dfc-generated | | System.ComponentModel;InstallerTypeAttribute;InstallerTypeAttribute;(System.String);Argument[0];Argument[this];taint;df-generated | | System.ComponentModel;LicenseContext;GetSavedLicenseKey;(System.Type,System.Reflection.Assembly);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;LicenseContext;SetSavedLicenseKey;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | @@ -6130,12 +6632,21 @@ | System.ComponentModel;LicenseProviderAttribute;LicenseProviderAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName];value;dfc-generated | | System.ComponentModel;LicenseProviderAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName];ReturnValue;taint;df-generated | | System.ComponentModel;LicenseProviderAttribute;get_TypeId;();Argument[this].SyntheticField[System.ComponentModel.LicenseProviderAttribute._licenseProviderName];ReturnValue;taint;dfc-generated | +| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.ComponentModel.PropertyDescriptor);Argument[1];Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor];value;dfc-generated | +| System.ComponentModel;ListChangedEventArgs;ListChangedEventArgs;(System.ComponentModel.ListChangedType,System.Int32,System.ComponentModel.PropertyDescriptor);Argument[2];Argument[this].Property[System.ComponentModel.ListChangedEventArgs.PropertyDescriptor];value;dfc-generated | | System.ComponentModel;ListChangedEventHandler;BeginInvoke;(System.Object,System.ComponentModel.ListChangedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.ComponentModel;ListSortDescription;ListSortDescription;(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection);Argument[0];Argument[this].Property[System.ComponentModel.ListSortDescription.PropertyDescriptor];value;dfc-generated | | System.ComponentModel;ListSortDescriptionCollection;ListSortDescriptionCollection;(System.ComponentModel.ListSortDescription[]);Argument[0].Element;Argument[this];taint;df-generated | | System.ComponentModel;ListSortDescriptionCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.ComponentModel;ListSortDescriptionCollection;set_Item;(System.Int32,System.ComponentModel.ListSortDescription);Argument[1];Argument[this].Element;value;manual | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DataSource];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.DisplayMember];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.ValueMember];value;dfc-generated | +| System.ComponentModel;LookupBindingPropertiesAttribute;LookupBindingPropertiesAttribute;(System.String,System.String,System.String,System.String);Argument[3];Argument[this].Property[System.ComponentModel.LookupBindingPropertiesAttribute.LookupMember];value;dfc-generated | | System.ComponentModel;MarshalByValueComponent;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MarshalByValueComponent;get_Container;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean);Argument[0];Argument[this].Property[System.ComponentModel.MaskedTextProvider.Mask];value;dfc-generated | +| System.ComponentModel;MaskedTextProvider;MaskedTextProvider;(System.String,System.Globalization.CultureInfo,System.Boolean,System.Char,System.Char,System.Boolean);Argument[1];Argument[this].Property[System.ComponentModel.MaskedTextProvider.Culture];value;dfc-generated | | System.ComponentModel;MaskedTextProvider;ToDisplayString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MaskedTextProvider;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;MaskedTextProvider;ToString;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -6164,6 +6675,7 @@ | System.ComponentModel;NestedContainer;CreateSite;(System.ComponentModel.IComponent,System.String);Argument[this];ReturnValue.SyntheticField[System.ComponentModel.Container+Site.Container];value;dfc-generated | | System.ComponentModel;NestedContainer;CreateSite;(System.ComponentModel.IComponent,System.String);Argument[this];ReturnValue.SyntheticField[System.ComponentModel.NestedContainer+Site.Container];value;dfc-generated | | System.ComponentModel;NestedContainer;GetService;(System.Type);Argument[this];ReturnValue;value;dfc-generated | +| System.ComponentModel;NestedContainer;NestedContainer;(System.ComponentModel.IComponent);Argument[0];Argument[this].Property[System.ComponentModel.NestedContainer.Owner];value;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2].Property[System.Uri.OriginalString];ReturnValue;taint;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.ComponentModel;NullableConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | @@ -6187,6 +6699,7 @@ | System.ComponentModel;PropertyDescriptor;SetValue;(System.Object,System.Object);Argument[1];Argument[0];taint;df-generated | | System.ComponentModel;PropertyDescriptor;SetValue;(System.Object,System.Object);Argument[this];Argument[0];taint;df-generated | | System.ComponentModel;PropertyDescriptor;get_Converter;();Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;PropertyDescriptor;get_ConverterFromRegisteredType;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.ComponentModel;PropertyDescriptorCollection;Add;(System.ComponentModel.PropertyDescriptor);Argument[0];Argument[this].Element;value;manual | @@ -6217,10 +6730,15 @@ | System.ComponentModel;PropertyDescriptorCollection;set_Item;(System.Int32,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.ComponentModel;PropertyDescriptorCollection;set_Item;(System.Object,System.Object);Argument[1];Argument[this].Element;value;manual | | System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.String[],System.ComponentModel.PropertyTabScope[]);Argument[0].Element;Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;value;dfc-generated | +| System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.String[],System.ComponentModel.PropertyTabScope[]);Argument[1].Element;Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.Type[],System.ComponentModel.PropertyTabScope[]);Argument[0].Element;Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses].Element;value;dfc-generated | +| System.ComponentModel;PropertyTabAttribute;InitializeArrays;(System.Type[],System.ComponentModel.PropertyTabScope[]);Argument[1].Element;Argument[this].Property[System.ComponentModel.PropertyTabAttribute.TabScopes].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;PropertyTabAttribute;(System.String,System.ComponentModel.PropertyTabScope);Argument[0];Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;get_TabClassNames;();Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClassNames].Element;ReturnValue.Element;value;dfc-generated | | System.ComponentModel;PropertyTabAttribute;get_TabClasses;();Argument[this].SyntheticField[System.ComponentModel.PropertyTabAttribute._tabClasses];ReturnValue;value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.String);Argument[0];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.ReceiverTypeName];value;dfc-generated | +| System.ComponentModel;ProvidePropertyAttribute;ProvidePropertyAttribute;(System.String,System.Type);Argument[0];Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];value;dfc-generated | | System.ComponentModel;ProvidePropertyAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];ReturnValue;taint;df-generated | | System.ComponentModel;ProvidePropertyAttribute;get_TypeId;();Argument[this].Property[System.ComponentModel.ProvidePropertyAttribute.PropertyName];ReturnValue;taint;dfc-generated | | System.ComponentModel;ReferenceConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | @@ -6229,6 +6747,7 @@ | System.ComponentModel;ReferenceConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;ReferenceConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | | System.ComponentModel;ReferenceConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;RefreshEventArgs;RefreshEventArgs;(System.Object);Argument[0];Argument[this].Property[System.ComponentModel.RefreshEventArgs.ComponentChanged];value;dfc-generated | | System.ComponentModel;RefreshEventHandler;BeginInvoke;(System.ComponentModel.RefreshEventArgs,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.ComponentModel;RunWorkerCompletedEventArgs;RunWorkerCompletedEventArgs;(System.Object,System.Exception,System.Boolean);Argument[0];Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result];value;dfc-generated | | System.ComponentModel;RunWorkerCompletedEventArgs;get_Result;();Argument[this].SyntheticField[System.ComponentModel.RunWorkerCompletedEventArgs._result];ReturnValue;value;dfc-generated | @@ -6250,6 +6769,7 @@ | System.ComponentModel;ToolboxItemAttribute;ToolboxItemAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName];value;dfc-generated | | System.ComponentModel;ToolboxItemAttribute;get_ToolboxItemTypeName;();Argument[this].SyntheticField[System.ComponentModel.ToolboxItemAttribute._toolboxItemTypeName];ReturnValue;value;dfc-generated | | System.ComponentModel;ToolboxItemFilterAttribute;ToString;();Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString];ReturnValue;taint;dfc-generated | +| System.ComponentModel;ToolboxItemFilterAttribute;ToolboxItemFilterAttribute;(System.String,System.ComponentModel.ToolboxItemFilterType);Argument[0];Argument[this].Property[System.ComponentModel.ToolboxItemFilterAttribute.FilterString];value;dfc-generated | | System.ComponentModel;TypeConverter+StandardValuesCollection;StandardValuesCollection;(System.Collections.ICollection);Argument[0];Argument[this].SyntheticField[System.ComponentModel.TypeConverter+StandardValuesCollection._values];value;dfc-generated | | System.ComponentModel;TypeConverter+StandardValuesCollection;get_Item;(System.Int32);Argument[this].SyntheticField[System.ComponentModel.TypeConverter+StandardValuesCollection._values].Element;ReturnValue;value;dfc-generated | | System.ComponentModel;TypeConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | @@ -6281,15 +6801,20 @@ | System.ComponentModel;TypeConverter;GetStandardValues;();Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeConverter;GetStandardValues;(System.ComponentModel.ITypeDescriptorContext);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeConverter;SortProperties;(System.ComponentModel.PropertyDescriptorCollection,System.String[]);Argument[0];ReturnValue;value;dfc-generated | +| System.ComponentModel;TypeConverterAttribute;TypeConverterAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.TypeConverterAttribute.ConverterTypeName];value;dfc-generated | | System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptor;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptor;(System.Object);Argument[this];ReturnValue;taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptorFromRegisteredType;(System.Object);Argument[0];ReturnValue;taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;GetExtendedTypeDescriptorFromRegisteredType;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetFullComponentName;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Object);Argument[0];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[1];ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptionProvider;GetTypeDescriptor;(System.Type,System.Object);Argument[this];ReturnValue;taint;df-generated | -| System.ComponentModel;TypeDescriptionProvider;TypeDescriptionProvider;(System.ComponentModel.TypeDescriptionProvider);Argument[0];Argument[this];taint;df-generated | +| System.ComponentModel;TypeDescriptionProvider;TypeDescriptionProvider;(System.ComponentModel.TypeDescriptionProvider);Argument[0];Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent];value;dfc-generated | +| System.ComponentModel;TypeDescriptionProvider;get_RequireRegisteredTypes;();Argument[this].SyntheticField[System.ComponentModel.TypeDescriptionProvider._parent].Property[System.ComponentModel.TypeDescriptionProvider.RequireRegisteredTypes];ReturnValue;value;dfc-generated | +| System.ComponentModel;TypeDescriptionProviderAttribute;TypeDescriptionProviderAttribute;(System.String);Argument[0];Argument[this].Property[System.ComponentModel.TypeDescriptionProviderAttribute.TypeName];value;dfc-generated | | System.ComponentModel;TypeDescriptor;AddAttributes;(System.Object,System.Attribute[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptor;AddAttributes;(System.Type,System.Attribute[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.ComponentModel;TypeDescriptor;CreateEvent;(System.Type,System.ComponentModel.EventDescriptor,System.Attribute[]);Argument[1];ReturnValue;taint;df-generated | @@ -6311,12 +6836,15 @@ | System.ComponentModel;VersionConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;value;dfc-generated | | System.ComponentModel;VersionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.ComponentModel;VersionConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | +| System.ComponentModel;WarningException;WarningException;(System.String,System.String,System.String);Argument[1];Argument[this].Property[System.ComponentModel.WarningException.HelpUrl];value;dfc-generated | +| System.ComponentModel;WarningException;WarningException;(System.String,System.String,System.String);Argument[2];Argument[this].Property[System.ComponentModel.WarningException.HelpTopic];value;dfc-generated | | System.Configuration.Internal;IConfigErrorInfo;get_Filename;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IConfigSystem;Init;(System.Type,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | | System.Configuration.Internal;IConfigSystem;get_Host;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IConfigSystem;get_Root;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigConfigurationFactory;Create;(System.Type,System.Object[]);Argument[1].Element;ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigConfigurationFactory;NormalizeLocationSubPath;(System.String,System.Configuration.Internal.IConfigErrorInfo);Argument[0];ReturnValue;value;dfc-generated | +| System.Configuration.Internal;IInternalConfigHost;CreateConfigurationContext;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamName;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Configuration.Internal;IInternalConfigHost;GetStreamNameForConfigSource;(System.String,System.String);Argument[1];ReturnValue;taint;dfc-generated | @@ -6335,10 +6863,8 @@ | System.Configuration.Internal;IInternalConfigRecord;get_StreamName;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetConfigRecord;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetConfigRecord;(System.String);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetSection;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetSection;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigPath;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigRecord;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;GetUniqueConfigRecord;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration.Internal;IInternalConfigRoot;Init;(System.Configuration.Internal.IInternalConfigHost,System.Boolean);Argument[0];Argument[this];taint;df-generated | @@ -6347,6 +6873,7 @@ | System.Configuration.Internal;IInternalConfigRoot;remove_ConfigChanged;(System.Configuration.Internal.InternalConfigEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;IInternalConfigRoot;remove_ConfigRemoved;(System.Configuration.Internal.InternalConfigEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;IInternalConfigSystem;GetSection;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Configuration.Internal;InternalConfigEventArgs;InternalConfigEventArgs;(System.String);Argument[0];Argument[this].Property[System.Configuration.Internal.InternalConfigEventArgs.ConfigPath];value;dfc-generated | | System.Configuration.Internal;InternalConfigEventHandler;BeginInvoke;(System.Object,System.Configuration.Internal.InternalConfigEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Configuration.Internal;StreamChangeCallback;BeginInvoke;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Configuration.Provider;ProviderBase;Initialize;(System.String,System.Collections.Specialized.NameValueCollection);Argument[0];Argument[this].SyntheticField[System.Configuration.Provider.ProviderBase._name];value;dfc-generated | @@ -6467,6 +6994,7 @@ | System.Configuration;ConfigurationElementCollection;ConfigurationElementCollection;(System.Collections.IComparer);Argument[0];Argument[this];taint;df-generated | | System.Configuration;ConfigurationElementCollection;CopyTo;(System.Configuration.ConfigurationElement[],System.Int32);Argument[this].Element;Argument[0].Element;value;dfc-generated | | System.Configuration;ConfigurationElementCollection;GetElementKey;(System.Configuration.ConfigurationElement);Argument[0];ReturnValue;taint;df-generated | +| System.Configuration;ConfigurationElementProperty;ConfigurationElementProperty;(System.Configuration.ConfigurationValidatorBase);Argument[0];Argument[this].Property[System.Configuration.ConfigurationElementProperty.Validator];value;dfc-generated | | System.Configuration;ConfigurationErrorsException;ConfigurationErrorsException;(System.String,System.Exception,System.String,System.Int32);Argument[2];Argument[this].SyntheticField[System.Configuration.ConfigurationErrorsException._firstFilename];value;dfc-generated | | System.Configuration;ConfigurationErrorsException;GetFilename;(System.Xml.XmlNode);Argument[0].Element;ReturnValue;taint;df-generated | | System.Configuration;ConfigurationErrorsException;GetFilename;(System.Xml.XmlReader);Argument[0].Property[System.Configuration.Internal.IConfigErrorInfo.Filename];ReturnValue;value;dfc-generated | @@ -6497,9 +7025,14 @@ | System.Configuration;ConfigurationManager;OpenMappedExeConfiguration;(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel);Argument[0];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationManager;OpenMappedExeConfiguration;(System.Configuration.ExeConfigurationFileMap,System.Configuration.ConfigurationUserLevel,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationManager;OpenMappedMachineConfiguration;(System.Configuration.ConfigurationFileMap);Argument[0];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type);Argument[0];Argument[this];taint;df-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type);Argument[0];Argument[this].Property[System.Configuration.ConfigurationProperty.Name];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[0];Argument[this].Property[System.Configuration.ConfigurationProperty.Name];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[2];Argument[this].Property[System.Configuration.ConfigurationProperty.DefaultValue];value;dfc-generated | | System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[3];Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[4];Argument[this].Property[System.Configuration.ConfigurationProperty.Validator];value;dfc-generated | +| System.Configuration;ConfigurationProperty;ConfigurationProperty;(System.String,System.Type,System.Object,System.ComponentModel.TypeConverter,System.Configuration.ConfigurationValidatorBase,System.Configuration.ConfigurationPropertyOptions,System.String);Argument[6];Argument[this].Property[System.Configuration.ConfigurationProperty.Description];value;dfc-generated | | System.Configuration;ConfigurationProperty;get_Converter;();Argument[this].SyntheticField[System.Configuration.ConfigurationProperty._converter];ReturnValue;value;dfc-generated | +| System.Configuration;ConfigurationPropertyAttribute;ConfigurationPropertyAttribute;(System.String);Argument[0];Argument[this].Property[System.Configuration.ConfigurationPropertyAttribute.Name];value;dfc-generated | | System.Configuration;ConfigurationPropertyCollection;Add;(System.Configuration.ConfigurationProperty);Argument[0];Argument[this].SyntheticField[System.Configuration.ConfigurationPropertyCollection._items].Element;value;dfc-generated | | System.Configuration;ConfigurationPropertyCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationPropertyCollection;CopyTo;(System.Configuration.ConfigurationProperty[],System.Int32);Argument[this].Element;Argument[0].Element;value;dfc-generated | @@ -6509,8 +7042,7 @@ | System.Configuration;ConfigurationSection;DeserializeSection;(System.Xml.XmlReader);Argument[0];Argument[this];taint;df-generated | | System.Configuration;ConfigurationSection;GetRuntimeObject;();Argument[this];ReturnValue;value;dfc-generated | | System.Configuration;ConfigurationSection;SerializeSection;(System.Configuration.ConfigurationElement,System.String,System.Configuration.ConfigurationSaveMode);Argument[this];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[0];Argument[1];taint;df-generated | -| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[this];Argument[1];taint;df-generated | +| System.Configuration;ConfigurationSectionCollection;Add;(System.String,System.Configuration.ConfigurationSection);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSection.SectionInformation].Property[System.Configuration.SectionInformation.Name];value;dfc-generated | | System.Configuration;ConfigurationSectionCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationSectionCollection;Get;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionCollection;Get;(System.String);Argument[this];ReturnValue;taint;df-generated | @@ -6518,7 +7050,8 @@ | System.Configuration;ConfigurationSectionCollection;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionGroup;get_SectionGroups;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ConfigurationSectionGroup;get_Sections;();Argument[this];ReturnValue;taint;df-generated | -| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[this];Argument[1];taint;df-generated | +| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSectionGroup.Name];value;dfc-generated | +| System.Configuration;ConfigurationSectionGroupCollection;Add;(System.String,System.Configuration.ConfigurationSectionGroup);Argument[0];Argument[1].Property[System.Configuration.ConfigurationSectionGroup.SectionGroupName];value;dfc-generated | | System.Configuration;ConfigurationSectionGroupCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;ConfigurationSectionGroupCollection;CopyTo;(System.Configuration.ConfigurationSectionGroup[],System.Int32);Argument[this];Argument[0].Element;taint;df-generated | | System.Configuration;ConfigurationSectionGroupCollection;Get;(System.Int32);Argument[this];ReturnValue;taint;df-generated | @@ -6540,6 +7073,9 @@ | System.Configuration;ContextInformation;get_HostingContext;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;DefaultSettingValueAttribute;DefaultSettingValueAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.Configuration.DefaultSettingValueAttribute._value];value;dfc-generated | | System.Configuration;DefaultSettingValueAttribute;get_Value;();Argument[this].SyntheticField[System.Configuration.DefaultSettingValueAttribute._value];ReturnValue;value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.ExeConfigFilename];value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.LocalUserConfigFilename];value;dfc-generated | +| System.Configuration;ExeConfigurationFileMap;Clone;();Argument[this].Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename];ReturnValue.Property[System.Configuration.ExeConfigurationFileMap.RoamingUserConfigFilename];value;dfc-generated | | System.Configuration;GenericEnumConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue.Element;taint;dfc-generated | | System.Configuration;GenericEnumConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;taint;dfc-generated | | System.Configuration;GenericEnumConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;value;dfc-generated | @@ -6594,6 +7130,7 @@ | System.Configuration;ProviderSettingsCollection;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Configuration;ProviderSettingsCollection;set_Item;(System.Int32,System.Configuration.ProviderSettings);Argument[this];Argument[1];taint;df-generated | | System.Configuration;RegexStringValidator;RegexStringValidator;(System.String);Argument[0];Argument[this];taint;df-generated | +| System.Configuration;RegexStringValidatorAttribute;RegexStringValidatorAttribute;(System.String);Argument[0];Argument[this].Property[System.Configuration.RegexStringValidatorAttribute.Regex];value;dfc-generated | | System.Configuration;RegexStringValidatorAttribute;get_ValidatorInstance;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;SchemeSettingElement;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Configuration;SchemeSettingElementCollection;GetElementKey;(System.Configuration.ConfigurationElement);Argument[0].Property[System.Configuration.SchemeSettingElement.Name];ReturnValue;value;df-generated | @@ -6640,6 +7177,7 @@ | System.Configuration;SettingsLoadedEventHandler;BeginInvoke;(System.Object,System.Configuration.SettingsLoadedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Configuration;SettingsPropertyCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Configuration;SettingsPropertyCollection;get_Item;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Configuration;SettingsPropertyValue;SettingsPropertyValue;(System.Configuration.SettingsProperty);Argument[0];Argument[this].Property[System.Configuration.SettingsPropertyValue.Property];value;dfc-generated | | System.Configuration;SettingsPropertyValue;get_Name;();Argument[this].Property[System.Configuration.SettingsPropertyValue.Property].Property[System.Configuration.SettingsProperty.Name];ReturnValue;value;dfc-generated | | System.Configuration;SettingsPropertyValueCollection;Add;(System.Configuration.SettingsPropertyValue);Argument[0];Argument[this].SyntheticField[System.Configuration.SettingsPropertyValueCollection._values].Element;value;dfc-generated | | System.Configuration;SettingsPropertyValueCollection;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | @@ -6690,6 +7228,8 @@ | System.Configuration;WhiteSpaceTrimStringConverter;ConvertFrom;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object);Argument[2];ReturnValue;value;dfc-generated | | System.Configuration;WhiteSpaceTrimStringConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2].Element;ReturnValue;taint;dfc-generated | | System.Configuration;WhiteSpaceTrimStringConverter;ConvertTo;(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type);Argument[2];ReturnValue;taint;dfc-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String,System.Data.IDataReader);Argument[this];ReturnValue;taint;df-generated | | System.Data.Common;DataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader);Argument[0];ReturnValue.Element;value;dfc-generated | | System.Data.Common;DataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDataReader);Argument[0];ReturnValue;value;dfc-generated | | System.Data.Common;DataAdapter;add_FillError;(System.Data.FillErrorEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -6775,6 +7315,10 @@ | System.Data.Common;DbConnectionStringBuilder;get_Item;(System.String);Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];ReturnValue;value;manual | | System.Data.Common;DbConnectionStringBuilder;set_Item;(System.String,System.Object);Argument[0];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Data.Common;DbConnectionStringBuilder;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.Data.IDbCommand,System.String,System.Data.CommandBehavior);Argument[this];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType);Argument[0];ReturnValue.Element;value;dfc-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType);Argument[0];ReturnValue;value;dfc-generated | | System.Data.Common;DbDataAdapter;FillSchema;(System.Data.DataTable,System.Data.SchemaType,System.Data.IDbCommand,System.Data.CommandBehavior);Argument[0];ReturnValue.Element;value;dfc-generated | @@ -7241,7 +7785,6 @@ | System.Data.SqlTypes;SqlBinary;SqlBinary;(System.Byte[]);Argument[0].Element;Argument[this].SyntheticField[System.Data.SqlTypes.SqlBinary._value].Element;value;dfc-generated | | System.Data.SqlTypes;SqlBinary;WrapBytes;(System.Byte[]);Argument[0];ReturnValue.SyntheticField[System.Data.SqlTypes.SqlBinary._value];value;dfc-generated | | System.Data.SqlTypes;SqlBinary;get_Value;();Argument[this].SyntheticField[System.Data.SqlTypes.SqlBinary._value].Element;ReturnValue.Element;value;dfc-generated | -| System.Data.SqlTypes;SqlBytes;Read;(System.Int64,System.Byte[],System.Int32,System.Int32);Argument[this];Argument[1].Element;taint;df-generated | | System.Data.SqlTypes;SqlBytes;SqlBytes;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._rgbBuf];value;dfc-generated | | System.Data.SqlTypes;SqlBytes;SqlBytes;(System.IO.Stream);Argument[0];Argument[this].SyntheticField[System.Data.SqlTypes.SqlBytes._stream];value;dfc-generated | | System.Data.SqlTypes;SqlBytes;Write;(System.Int64,System.Byte[],System.Int32,System.Int32);Argument[1].Element;Argument[this];taint;df-generated | @@ -7293,7 +7836,9 @@ | System.Data;DataColumn;DataColumn;(System.String,System.Type,System.String,System.Data.MappingType);Argument[0];Argument[this];taint;df-generated | | System.Data;DataColumn;DataColumn;(System.String,System.Type,System.String,System.Data.MappingType);Argument[2];Argument[this];taint;df-generated | | System.Data;DataColumn;get_Table;();Argument[this];ReturnValue;taint;df-generated | +| System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[0];Argument[this].Property[System.Data.DataColumnChangeEventArgs.Row];value;dfc-generated | | System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[1];Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column];value;dfc-generated | +| System.Data;DataColumnChangeEventArgs;DataColumnChangeEventArgs;(System.Data.DataRow,System.Data.DataColumn,System.Object);Argument[2];Argument[this].Property[System.Data.DataColumnChangeEventArgs.ProposedValue];value;dfc-generated | | System.Data;DataColumnChangeEventArgs;get_Column;();Argument[this].SyntheticField[System.Data.DataColumnChangeEventArgs._column];ReturnValue;value;dfc-generated | | System.Data;DataColumnChangeEventHandler;BeginInvoke;(System.Object,System.Data.DataColumnChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataColumnCollection;Add;();Argument[this];ReturnValue;taint;df-generated | @@ -7368,6 +7913,7 @@ | System.Data;DataRow;get_Item;(System.String,System.Data.DataRowVersion);Argument[this];ReturnValue;taint;df-generated | | System.Data;DataRow;get_Table;();Argument[this];ReturnValue;taint;df-generated | | System.Data;DataRow;set_Item;(System.Data.DataColumn,System.Object);Argument[0];Argument[this];taint;df-generated | +| System.Data;DataRowChangeEventArgs;DataRowChangeEventArgs;(System.Data.DataRow,System.Data.DataRowAction);Argument[0];Argument[this].Property[System.Data.DataRowChangeEventArgs.Row];value;dfc-generated | | System.Data;DataRowChangeEventHandler;BeginInvoke;(System.Object,System.Data.DataRowChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataRowCollection;Add;(System.Data.DataRow);Argument[0];Argument[this].Element;value;manual | | System.Data;DataRowCollection;Add;(System.Object[]);Argument[0];Argument[this].Element;value;manual | @@ -7457,6 +8003,7 @@ | System.Data;DataTable;remove_TableCleared;(System.Data.DataTableClearEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataTable;remove_TableClearing;(System.Data.DataTableClearEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Data;DataTable;remove_TableNewRow;(System.Data.DataTableNewRowEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Data;DataTableClearEventArgs;DataTableClearEventArgs;(System.Data.DataTable);Argument[0];Argument[this].Property[System.Data.DataTableClearEventArgs.Table];value;dfc-generated | | System.Data;DataTableClearEventArgs;get_TableName;();Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.TableName];ReturnValue;value;dfc-generated | | System.Data;DataTableClearEventArgs;get_TableNamespace;();Argument[this].Property[System.Data.DataTableClearEventArgs.Table].Property[System.Data.DataTable.Namespace];ReturnValue;value;dfc-generated | | System.Data;DataTableClearEventHandler;BeginInvoke;(System.Object,System.Data.DataTableClearEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -7488,6 +8035,7 @@ | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[0].Element.Property[System.Data.DataRow.ItemArray];Argument[1].SyntheticField[System.Data.DataTable._rowCollection].Element;value;hq-generated | | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Data;DataTableExtensions;CopyToDataTable;(System.Collections.Generic.IEnumerable,System.Data.DataTable,System.Data.LoadOption,System.Data.FillErrorEventHandler);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Data;DataTableNewRowEventArgs;DataTableNewRowEventArgs;(System.Data.DataRow);Argument[0];Argument[this].Property[System.Data.DataTableNewRowEventArgs.Row];value;dfc-generated | | System.Data;DataTableNewRowEventHandler;BeginInvoke;(System.Object,System.Data.DataTableNewRowEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;DataTableReader;DataTableReader;(System.Data.DataTable);Argument[0];Argument[this];taint;df-generated | | System.Data;DataTableReader;DataTableReader;(System.Data.DataTable[]);Argument[0].Element;Argument[this];taint;df-generated | @@ -7503,8 +8051,10 @@ | System.Data;DataView;OnListChanged;(System.ComponentModel.ListChangedEventArgs);Argument[0];Argument[this];taint;df-generated | | System.Data;DataView;ToTable;();Argument[this];ReturnValue;taint;df-generated | | System.Data;DataView;ToTable;(System.Boolean,System.String[]);Argument[this];ReturnValue;taint;df-generated | -| System.Data;DataView;ToTable;(System.String);Argument[0];ReturnValue.Property[System.Data.DataTable.TableName];value;dfc-generated | -| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[0];ReturnValue.Property[System.Data.DataTable.TableName];value;dfc-generated | +| System.Data;DataView;ToTable;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[0];ReturnValue;taint;df-generated | +| System.Data;DataView;ToTable;(System.String,System.Boolean,System.String[]);Argument[this];ReturnValue;taint;df-generated | | System.Data;DataView;get_DataViewManager;();Argument[this].SyntheticField[System.Data.DataView._dataViewManager];ReturnValue;value;dfc-generated | | System.Data;DataView;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Data;DataViewManager;CreateDataView;(System.Data.DataTable);Argument[this];ReturnValue.SyntheticField[System.Data.DataView._dataViewManager];value;dfc-generated | @@ -7571,6 +8121,8 @@ | System.Data;IColumnMappingCollection;GetByDataSetColumn;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Data;IColumnMappingCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Data;IColumnMappingCollection;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element;value;manual | +| System.Data;IDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[0];ReturnValue;taint;df-generated | +| System.Data;IDataAdapter;FillSchema;(System.Data.DataSet,System.Data.SchemaType);Argument[this];ReturnValue;taint;df-generated | | System.Data;IDataAdapter;GetFillParameters;();Argument[this];ReturnValue;taint;df-generated | | System.Data;IDataParameterCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Data;IDataParameterCollection;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element;value;manual | @@ -7587,6 +8139,8 @@ | System.Data;ITableMappingCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Data;ITableMappingCollection;set_Item;(System.String,System.Object);Argument[1];Argument[this].Element;value;manual | | System.Data;InternalDataCollectionBase;get_List;();Argument[this];ReturnValue;taint;df-generated | +| System.Data;MergeFailedEventArgs;MergeFailedEventArgs;(System.Data.DataTable,System.String);Argument[0];Argument[this].Property[System.Data.MergeFailedEventArgs.Table];value;dfc-generated | +| System.Data;MergeFailedEventArgs;MergeFailedEventArgs;(System.Data.DataTable,System.String);Argument[1];Argument[this].Property[System.Data.MergeFailedEventArgs.Conflict];value;dfc-generated | | System.Data;MergeFailedEventHandler;BeginInvoke;(System.Object,System.Data.MergeFailedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Data;PropertyCollection;Clone;();Argument[this].Element;ReturnValue.Element;value;manual | | System.Data;StateChangeEventHandler;BeginInvoke;(System.Object,System.Data.StateChangeEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | @@ -7619,6 +8173,11 @@ | System.Data;UniqueConstraint;UniqueConstraint;(System.String,System.String[],System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Data;UniqueConstraint;UniqueConstraint;(System.String,System.String[],System.Boolean);Argument[1].Element;Argument[this];taint;df-generated | | System.Data;UniqueConstraint;get_Columns;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members].Element;value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullAttribute;MemberNotNullAttribute;(System.String[]);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members];value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String);Argument[1];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members].Element;value;dfc-generated | +| System.Diagnostics.CodeAnalysis;MemberNotNullWhenAttribute;MemberNotNullWhenAttribute;(System.Boolean,System.String[]);Argument[1];Argument[this].Property[System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members];value;dfc-generated | +| System.Diagnostics.CodeAnalysis;NotNullIfNotNullAttribute;NotNullIfNotNullAttribute;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName];value;dfc-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Int32,System.Int32,System.Predicate);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Collections.Generic.IEnumerable,System.Predicate);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | | System.Diagnostics.Contracts;Contract;Exists;(System.Collections.Generic.IEnumerable,System.Predicate);Argument[0].Element;Argument[1].Parameter[0];value;hq-generated | @@ -7650,8 +8209,17 @@ | System.Diagnostics.Eventing.Reader;EventLogException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Diagnostics.Eventing.Reader;EventLogWatcher;add_EventRecordWritten;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Eventing.Reader;EventLogWatcher;remove_EventRecordWritten;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.KeyValuePair[]);Argument[1].Element;Argument[this];taint;df-generated | -| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.ReadOnlySpan>);Argument[1];Argument[this];taint;df-generated | +| System.Diagnostics.Metrics;IMeterFactory;Create;(System.Diagnostics.Metrics.MeterOptions);Argument[this];Argument[0];taint;df-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Meter];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Name];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[2];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Unit];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[3];Argument[this].Property[System.Diagnostics.Metrics.Instrument.Description];value;dfc-generated | +| System.Diagnostics.Metrics;Instrument;Instrument;(System.Diagnostics.Metrics.Meter,System.String,System.String,System.String,System.Collections.Generic.IEnumerable>,System.Diagnostics.Metrics.InstrumentAdvice);Argument[5];Argument[this].Property[System.Diagnostics.Metrics.Instrument`1.Advice];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Collections.Generic.KeyValuePair[]);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.Diagnostics.TagList);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | +| System.Diagnostics.Metrics;Measurement;Measurement;(T,System.ReadOnlySpan>);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Measurement`1.Value];value;dfc-generated | | System.Diagnostics.Metrics;MeasurementCallback;BeginInvoke;(System.Diagnostics.Metrics.Instrument,T,System.ReadOnlySpan>,System.Object,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableCounter;(System.String,System.Func>>,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -7671,6 +8239,10 @@ | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func>,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func,System.String,System.String);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Metrics;Meter;CreateObservableUpDownCounter;(System.String,System.Func,System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.Diagnostics.Metrics.MeterOptions);Argument[0];Argument[this];taint;df-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[0];Argument[this].Property[System.Diagnostics.Metrics.Meter.Name];value;dfc-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[1];Argument[this].Property[System.Diagnostics.Metrics.Meter.Version];value;dfc-generated | +| System.Diagnostics.Metrics;Meter;Meter;(System.String,System.String,System.Collections.Generic.IEnumerable>,System.Object);Argument[3];Argument[this].Property[System.Diagnostics.Metrics.Meter.Scope];value;dfc-generated | | System.Diagnostics.Metrics;MeterListener;DisableMeasurementEvents;(System.Diagnostics.Metrics.Instrument);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics.Metrics;MeterListener;EnableMeasurementEvents;(System.Diagnostics.Metrics.Instrument,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics.Metrics;MeterListener;EnableMeasurementEvents;(System.Diagnostics.Metrics.Instrument,System.Object);Argument[1];Argument[this];taint;df-generated | @@ -7681,11 +8253,14 @@ | System.Diagnostics.Metrics;ObservableCounter;Observe;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Metrics;ObservableGauge;Observe;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Metrics;ObservableUpDownCounter;Observe;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetCheckSum;(System.Guid,System.Byte[]);Argument[0];Argument[this];taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetCheckSum;(System.Guid,System.Byte[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.Diagnostics.SymbolStore;ISymbolDocumentWriter;SetSource;(System.Byte[]);Argument[0].Element;Argument[this];taint;df-generated | | System.Diagnostics.Tracing;EventCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;EventListener;DisableEvents;(System.Diagnostics.Tracing.EventSource);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords);Argument[this];Argument[0];taint;df-generated | -| System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary);Argument[this];Argument[0];taint;df-generated | +| System.Diagnostics.Tracing;EventListener;EnableEvents;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords,System.Collections.Generic.IDictionary);Argument[3];Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments];value;dfc-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;EventListener;add_EventSourceCreated;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;dfc-generated | @@ -7697,6 +8272,7 @@ | System.Diagnostics.Tracing;EventSource;GenerateManifest;(System.Type,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;GenerateManifest;(System.Type,System.String,System.Diagnostics.Tracing.EventManifestOptions);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;GetTrait;(System.String);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_traits].Element;ReturnValue;value;dfc-generated | +| System.Diagnostics.Tracing;EventSource;SendCommand;(System.Diagnostics.Tracing.EventSource,System.Diagnostics.Tracing.EventCommand,System.Collections.Generic.IDictionary);Argument[2];Argument[0].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands].Property[System.Diagnostics.Tracing.EventCommandEventArgs.Arguments];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T);Argument[1];ReturnValue;value;dfc-generated | | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,System.Guid,System.Guid,T);Argument[2];ReturnValue;value;dfc-generated | @@ -7706,6 +8282,8 @@ | System.Diagnostics.Tracing;EventSource;Write;(System.String,System.Diagnostics.Tracing.EventSourceOptions,T);Argument[2];ReturnValue;value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands];Argument[0].Parameter[1];value;dfc-generated | +| System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this].SyntheticField[System.Diagnostics.Tracing.EventSource.m_deferredCommands];Argument[0].Parameter[1];value;hq-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;dfc-generated | | System.Diagnostics.Tracing;EventSource;add_EventCommandExecuted;(System.EventHandler);Argument[this];Argument[0].Parameter[0];value;hq-generated | | System.Diagnostics.Tracing;EventSource;get_ConstructionException;();Argument[this];ReturnValue;taint;df-generated | @@ -7713,14 +8291,18 @@ | System.Diagnostics.Tracing;EventSource;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;EventSource;remove_EventCommandExecuted;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;EventWrittenEventArgs;get_ActivityId;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics.Tracing;EventWrittenEventArgs;get_RelatedActivityId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics.Tracing;IncrementingEventCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;IncrementingPollingCounter;IncrementingPollingCounter;(System.String,System.Diagnostics.Tracing.EventSource,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;IncrementingPollingCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics.Tracing;PollingCounter;PollingCounter;(System.String,System.Diagnostics.Tracing.EventSource,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Diagnostics.Tracing;PollingCounter;ToString;();Argument[this].Property[System.Diagnostics.Tracing.DiagnosticCounter.Name];ReturnValue;taint;dfc-generated | | System.Diagnostics;Activity+Enumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;Activity;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.Activity.OperationName];value;dfc-generated | | System.Diagnostics;Activity;AddBaggage;(System.String,System.String);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddEvent;(System.Diagnostics.ActivityEvent);Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;AddException;(System.Exception,System.Diagnostics.TagList,System.DateTimeOffset);Argument[this];ReturnValue;value;dfc-generated | +| System.Diagnostics;Activity;AddLink;(System.Diagnostics.ActivityLink);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddTag;(System.String,System.Object);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;AddTag;(System.String,System.String);Argument[this];ReturnValue;value;dfc-generated | | System.Diagnostics;Activity;EnumerateEvents;();Argument[this];ReturnValue;taint;df-generated | @@ -7753,10 +8335,14 @@ | System.Diagnostics;Activity;get_TraceId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;Activity;remove_CurrentChanged;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Activity;set_TraceIdGenerator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[0];Argument[this].Property[System.Diagnostics.ActivityContext.TraceId];value;dfc-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[1];Argument[this].Property[System.Diagnostics.ActivityContext.SpanId];value;dfc-generated | +| System.Diagnostics;ActivityContext;ActivityContext;(System.Diagnostics.ActivityTraceId,System.Diagnostics.ActivitySpanId,System.Diagnostics.ActivityTraceFlags,System.String,System.Boolean);Argument[3];Argument[this].Property[System.Diagnostics.ActivityContext.TraceState];value;dfc-generated | | System.Diagnostics;ActivityCreationOptions;get_SamplingTags;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityCreationOptions;get_TraceId;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityEvent;EnumerateTagObjects;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityEvent;get_Tags;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivityLink;ActivityLink;(System.Diagnostics.ActivityContext,System.Diagnostics.ActivityTagsCollection);Argument[0];Argument[this].Property[System.Diagnostics.ActivityLink.Context];value;dfc-generated | | System.Diagnostics;ActivityLink;EnumerateTagObjects;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityLink;get_Tags;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityListener;set_ActivityStarted;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -7765,11 +8351,17 @@ | System.Diagnostics;ActivityListener;set_Sample;(System.Diagnostics.SampleActivity);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;ActivityListener;set_SampleUsingParentId;(System.Diagnostics.SampleActivity);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;ActivityListener;set_ShouldListenTo;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[2];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivitySource;ActivitySource;(System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[0];Argument[this].Property[System.Diagnostics.ActivitySource.Name];value;dfc-generated | +| System.Diagnostics;ActivitySource;ActivitySource;(System.String,System.String,System.Collections.Generic.IEnumerable>);Argument[1];Argument[this].Property[System.Diagnostics.ActivitySource.Version];value;dfc-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[2];ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId];value;dfc-generated | -| System.Diagnostics;ActivitySource;StartActivity;(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String);Argument[1];ReturnValue;taint;df-generated | -| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[2];ReturnValue;taint;df-generated | +| System.Diagnostics;ActivitySource;CreateActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.Diagnostics.ActivityIdFormat);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset,System.String);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.Diagnostics.ActivityContext,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[2];ReturnValue.SyntheticField[System.Diagnostics.Activity._parentId];value;dfc-generated | +| System.Diagnostics;ActivitySource;StartActivity;(System.String,System.Diagnostics.ActivityKind,System.String,System.Collections.Generic.IEnumerable>,System.Collections.Generic.IEnumerable,System.DateTimeOffset);Argument[this];ReturnValue.Property[System.Diagnostics.Activity.Source];value;dfc-generated | | System.Diagnostics;ActivitySpanId;ToHexString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivitySpanId;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;ActivityTagsCollection+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -7791,6 +8383,7 @@ | System.Diagnostics;Debug;WriteIf;(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler,System.String);Argument[1];ReturnValue;value;dfc-generated | | System.Diagnostics;Debug;WriteLineIf;(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler);Argument[1];ReturnValue;value;dfc-generated | | System.Diagnostics;Debug;WriteLineIf;(System.Boolean,System.Diagnostics.Debug+WriteIfInterpolatedStringHandler,System.String);Argument[1];ReturnValue;value;dfc-generated | +| System.Diagnostics;DiagnosticListener;DiagnosticListener;(System.String);Argument[0];Argument[this].Property[System.Diagnostics.DiagnosticListener.Name];value;dfc-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>);Argument[0];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>);Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -7799,6 +8392,9 @@ | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Func,System.Action,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;DiagnosticListener;Subscribe;(System.IObserver>,System.Predicate);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;DiagnosticListener;ToString;();Argument[this].Property[System.Diagnostics.DiagnosticListener.Name];ReturnValue;value;dfc-generated | +| System.Diagnostics;DiagnosticMethodInfo;Create;(System.Delegate);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;Create;(System.Diagnostics.StackFrame);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;DiagnosticMethodInfo;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;DiagnosticSource;StartActivity;(System.Diagnostics.Activity,System.Object);Argument[0];ReturnValue;value;dfc-generated | | System.Diagnostics;DiagnosticSource;StartActivity;(System.Diagnostics.Activity,T);Argument[0];ReturnValue;value;dfc-generated | | System.Diagnostics;DistributedContextPropagator+PropagatorGetterCallback;BeginInvoke;(System.Object,System.String,System.String,System.Collections.Generic.IEnumerable,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | @@ -7835,12 +8431,17 @@ | System.Diagnostics;FileVersionInfo;get_ProductName;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;FileVersionInfo;get_ProductVersion;();Argument[this];ReturnValue;taint;df-generated | | System.Diagnostics;FileVersionInfo;get_SpecialBuild;();Argument[this];ReturnValue;taint;df-generated | +| System.Diagnostics;InitializingSwitchEventArgs;InitializingSwitchEventArgs;(System.Diagnostics.Switch);Argument[0];Argument[this].Property[System.Diagnostics.InitializingSwitchEventArgs.Switch];value;dfc-generated | +| System.Diagnostics;InitializingTraceSourceEventArgs;InitializingTraceSourceEventArgs;(System.Diagnostics.TraceSource);Argument[0];Argument[this].Property[System.Diagnostics.InitializingTraceSourceEventArgs.TraceSource];value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];ReturnValue;value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description];Argument[this].Property[System.ComponentModel.DescriptionAttribute.DescriptionValue];value;dfc-generated | | System.Diagnostics;MonitoringDescriptionAttribute;get_Description;();Argument[this].Property[System.ComponentModel.DescriptionAttribute.Description];ReturnValue;value;dfc-generated | | System.Diagnostics;Process;GetProcessById;(System.Int32,System.String);Argument[1];ReturnValue.SyntheticField[System.Diagnostics.Process._machineName];value;dfc-generated | | System.Diagnostics;Process;GetProcesses;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Diagnostics;Process;Start;(System.Diagnostics.ProcessStartInfo);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Diagnostics;Process;Start;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Diagnostics;Process;add_ErrorDataReceived;(System.Diagnostics.DataReceivedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Process;add_Exited;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;Process;add_OutputDataReceived;(System.Diagnostics.DataReceivedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -7893,7 +8494,7 @@ | System.Diagnostics;Switch;remove_Initializing;(System.EventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Diagnostics;SwitchAttribute;SwitchAttribute;(System.String,System.Type);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics;TagList+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | -| System.Diagnostics;TagList;TagList;(System.ReadOnlySpan>);Argument[0];Argument[this];taint;df-generated | +| System.Diagnostics;TagList;CopyTo;(System.Span>);Argument[this];Argument[0];taint;df-generated | | System.Diagnostics;TextWriterTraceListener;TextWriterTraceListener;(System.IO.TextWriter,System.String);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics;TextWriterTraceListener;TextWriterTraceListener;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Diagnostics;TextWriterTraceListener;TextWriterTraceListener;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | @@ -8080,18 +8681,32 @@ | System.Dynamic;BindingRestrictions;Merge;(System.Dynamic.BindingRestrictions);Argument[this];ReturnValue;value;dfc-generated | | System.Dynamic;BindingRestrictions;ToExpression;();Argument[this];ReturnValue;taint;df-generated | | System.Dynamic;ConvertBinder;FallbackConvert;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | +| System.Dynamic;CreateInstanceBinder;CreateInstanceBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.CreateInstanceBinder.CallInfo];value;dfc-generated | +| System.Dynamic;DeleteIndexBinder;DeleteIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.DeleteIndexBinder.CallInfo];value;dfc-generated | +| System.Dynamic;DeleteMemberBinder;DeleteMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.DeleteMemberBinder.Name];value;dfc-generated | | System.Dynamic;DynamicMetaObject;Create;(System.Object,System.Linq.Expressions.Expression);Argument[0];ReturnValue.SyntheticField[System.Dynamic.DynamicMetaObject._value];value;dfc-generated | +| System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions);Argument[0];Argument[this].Property[System.Dynamic.DynamicMetaObject.Expression];value;dfc-generated | +| System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions);Argument[1];Argument[this].Property[System.Dynamic.DynamicMetaObject.Restrictions];value;dfc-generated | | System.Dynamic;DynamicMetaObject;DynamicMetaObject;(System.Linq.Expressions.Expression,System.Dynamic.BindingRestrictions,System.Object);Argument[2];Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value];value;dfc-generated | | System.Dynamic;DynamicMetaObject;get_Value;();Argument[this].SyntheticField[System.Dynamic.DynamicMetaObject._value];ReturnValue;value;dfc-generated | +| System.Dynamic;DynamicMetaObjectBinder;Bind;(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue].Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Dynamic;DynamicMetaObjectBinder;Bind;(System.Object[],System.Collections.ObjectModel.ReadOnlyCollection,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Dynamic;ExpandoObject;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;manual | | System.Dynamic;ExpandoObject;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Dynamic;ExpandoObject;TryGetValue;(System.String,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Dynamic;GetIndexBinder;FallbackGetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;GetIndexBinder;GetIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.GetIndexBinder.CallInfo];value;dfc-generated | | System.Dynamic;GetMemberBinder;FallbackGetMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | +| System.Dynamic;GetMemberBinder;GetMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.GetMemberBinder.Name];value;dfc-generated | | System.Dynamic;InvokeBinder;FallbackInvoke;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;InvokeBinder;InvokeBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.InvokeBinder.CallInfo];value;dfc-generated | | System.Dynamic;InvokeMemberBinder;FallbackInvokeMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;InvokeMemberBinder;InvokeMemberBinder;(System.String,System.Boolean,System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.InvokeMemberBinder.Name];value;dfc-generated | +| System.Dynamic;InvokeMemberBinder;InvokeMemberBinder;(System.String,System.Boolean,System.Dynamic.CallInfo);Argument[2];Argument[this].Property[System.Dynamic.InvokeMemberBinder.CallInfo];value;dfc-generated | | System.Dynamic;SetIndexBinder;FallbackSetIndex;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject[],System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[3];ReturnValue;value;dfc-generated | +| System.Dynamic;SetIndexBinder;SetIndexBinder;(System.Dynamic.CallInfo);Argument[0];Argument[this].Property[System.Dynamic.SetIndexBinder.CallInfo];value;dfc-generated | | System.Dynamic;SetMemberBinder;FallbackSetMember;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[2];ReturnValue;value;dfc-generated | +| System.Dynamic;SetMemberBinder;SetMemberBinder;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Dynamic.SetMemberBinder.Name];value;dfc-generated | | System.Dynamic;UnaryOperationBinder;FallbackUnaryOperation;(System.Dynamic.DynamicMetaObject,System.Dynamic.DynamicMetaObject);Argument[1];ReturnValue;value;dfc-generated | | System.Formats.Asn1;AsnDecoder;ReadBitString;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Int32,System.Nullable);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | System.Formats.Asn1;AsnDecoder;ReadEnumeratedBytes;(System.ReadOnlySpan,System.Formats.Asn1.AsnEncodingRules,System.Int32,System.Nullable);Argument[0].Element;ReturnValue.Element;value;dfc-generated | @@ -8228,9 +8843,11 @@ | System.IO.Compression;DeflateStream;get_BaseStream;();Argument[this];ReturnValue;taint;df-generated | | System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | +| System.IO.Compression;GZipStream;GZipStream;(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;GZipStream;get_BaseStream;();Argument[this].SyntheticField[System.IO.Compression.GZipStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];ReturnValue;value;dfc-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionLevel,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.CompressionMode,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | +| System.IO.Compression;ZLibStream;ZLibStream;(System.IO.Stream,System.IO.Compression.ZLibCompressionOptions,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];value;dfc-generated | | System.IO.Compression;ZLibStream;get_BaseStream;();Argument[this].SyntheticField[System.IO.Compression.ZLibStream._deflateStream].SyntheticField[System.IO.Compression.DeflateStream._stream];ReturnValue;value;dfc-generated | | System.IO.Compression;ZipArchive;CreateEntry;(System.String);Argument[0];ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._storedEntryName];value;dfc-generated | | System.IO.Compression;ZipArchive;CreateEntry;(System.String);Argument[this];ReturnValue.SyntheticField[System.IO.Compression.ZipArchiveEntry._archive];value;dfc-generated | @@ -8274,6 +8891,9 @@ | System.IO.Pipelines;Pipe;Pipe;(System.IO.Pipelines.PipeOptions);Argument[0];Argument[this];taint;df-generated | | System.IO.Pipelines;Pipe;get_Reader;();Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;Pipe;get_Writer;();Argument[this];ReturnValue;taint;df-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.PipeOptions.Pool];value;dfc-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[1];Argument[this].Property[System.IO.Pipelines.PipeOptions.ReaderScheduler];value;dfc-generated | +| System.IO.Pipelines;PipeOptions;PipeOptions;(System.Buffers.MemoryPool,System.IO.Pipelines.PipeScheduler,System.IO.Pipelines.PipeScheduler,System.Int64,System.Int64,System.Int32,System.Boolean);Argument[2];Argument[this].Property[System.IO.Pipelines.PipeOptions.WriterScheduler];value;dfc-generated | | System.IO.Pipelines;PipeReader;AsStream;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeReader;CopyToAsync;(System.IO.Stream,System.Threading.CancellationToken);Argument[this];Argument[0];taint;df-generated | | System.IO.Pipelines;PipeReader;Create;(System.Buffers.ReadOnlySequence);Argument[0];ReturnValue;taint;df-generated | @@ -8290,8 +8910,11 @@ | System.IO.Pipelines;PipeWriter;GetMemory;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeWriter;GetSpan;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.IO.Pipelines;PipeWriter;OnReaderCompleted;(System.Action,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.IO.Pipelines;PipeWriter;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO.Pipelines;ReadResult;ReadResult;(System.Buffers.ReadOnlySequence,System.Boolean,System.Boolean);Argument[0];Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer];value;dfc-generated | | System.IO.Pipelines;ReadResult;get_Buffer;();Argument[this].SyntheticField[System.IO.Pipelines.ReadResult._resultBuffer];ReturnValue;value;dfc-generated | +| System.IO.Pipelines;StreamPipeReaderOptions;StreamPipeReaderOptions;(System.Buffers.MemoryPool,System.Int32,System.Int32,System.Boolean,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.StreamPipeReaderOptions.Pool];value;dfc-generated | +| System.IO.Pipelines;StreamPipeWriterOptions;StreamPipeWriterOptions;(System.Buffers.MemoryPool,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.IO.Pipelines.StreamPipeWriterOptions.Pool];value;dfc-generated | | System.IO.Pipes;AnonymousPipeClientStream;AnonymousPipeClientStream;(System.IO.Pipes.PipeDirection,Microsoft.Win32.SafeHandles.SafePipeHandle);Argument[1];Argument[this];taint;df-generated | | System.IO.Pipes;AnonymousPipeServerStream;AnonymousPipeServerStream;(System.IO.Pipes.PipeDirection,Microsoft.Win32.SafeHandles.SafePipeHandle,Microsoft.Win32.SafeHandles.SafePipeHandle);Argument[2];Argument[this].SyntheticField[System.IO.Pipes.AnonymousPipeServerStream._clientHandle];value;dfc-generated | | System.IO.Pipes;AnonymousPipeServerStream;get_ClientSafePipeHandle;();Argument[this].SyntheticField[System.IO.Pipes.AnonymousPipeServerStream._clientHandle];ReturnValue;value;dfc-generated | @@ -8311,6 +8934,7 @@ | System.IO;BinaryWriter;BinaryWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean);Argument[0];Argument[this].Field[System.IO.BinaryWriter.OutStream];value;dfc-generated | | System.IO;BinaryWriter;Write;(System.Byte[]);Argument[0].Element;Argument[this];taint;df-generated | | System.IO;BinaryWriter;Write;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;df-generated | +| System.IO;BinaryWriter;Write;(System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | | System.IO;BinaryWriter;get_BaseStream;();Argument[this].Field[System.IO.BinaryWriter.OutStream];ReturnValue;value;dfc-generated | | System.IO;BufferedStream;BufferedStream;(System.IO.Stream);Argument[0];Argument[this];taint;manual | | System.IO;BufferedStream;BufferedStream;(System.IO.Stream,System.Int32);Argument[0];Argument[this];taint;manual | @@ -8321,6 +8945,7 @@ | System.IO;Directory;CreateDirectory;(System.String,System.IO.UnixFileMode);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | | System.IO;Directory;CreateSymbolicLink;(System.String,System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;Directory;CreateSymbolicLink;(System.String,System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | +| System.IO;Directory;GetDirectoryRoot;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.IO;Directory;GetParent;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;Directory;GetParent;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | | System.IO;DirectoryInfo;CreateSubdirectory;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | @@ -8348,6 +8973,8 @@ | System.IO;DirectoryInfo;MoveTo;(System.String);Argument[0];Argument[this].Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | | System.IO;DirectoryInfo;get_Parent;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | | System.IO;DirectoryInfo;get_Parent;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];value;dfc-generated | +| System.IO;DirectoryInfo;get_Root;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];taint;dfc-generated | +| System.IO;DirectoryInfo;get_Root;();Argument[this].Field[System.IO.FileSystemInfo.FullPath];ReturnValue.Field[System.IO.FileSystemInfo.OriginalPath];taint;dfc-generated | | System.IO;DriveInfo;DriveInfo;(System.String);Argument[0];Argument[this].SyntheticField[System.IO.DriveInfo._name];value;dfc-generated | | System.IO;DriveInfo;ToString;();Argument[this].Property[System.IO.DriveInfo.Name];ReturnValue;value;dfc-generated | | System.IO;DriveInfo;ToString;();Argument[this].SyntheticField[System.IO.DriveInfo._name];ReturnValue;value;dfc-generated | @@ -8356,8 +8983,11 @@ | System.IO;ErrorEventArgs;GetException;();Argument[this].SyntheticField[System.IO.ErrorEventArgs._exception];ReturnValue;value;dfc-generated | | System.IO;ErrorEventHandler;BeginInvoke;(System.Object,System.IO.ErrorEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.IO;File;AppendAllBytesAsync;(System.String,System.Byte[],System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllBytesAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;AppendAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;AppendAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllTextAsync;(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | +| System.IO;File;AppendAllTextAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;AppendAllTextAsync;(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;AppendAllTextAsync;(System.String,System.String,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;Create;(System.String);Argument[0];ReturnValue;taint;dfc-generated | @@ -8378,8 +9008,11 @@ | System.IO;File;ReadLines;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;df-generated | | System.IO;File;ReadLines;(System.String,System.Text.Encoding);Argument[1];ReturnValue;taint;df-generated | | System.IO;File;WriteAllBytesAsync;(System.String,System.Byte[],System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllBytesAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;WriteAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;WriteAllLinesAsync;(System.String,System.Collections.Generic.IEnumerable,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllTextAsync;(System.String,System.ReadOnlyMemory,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | +| System.IO;File;WriteAllTextAsync;(System.String,System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;File;WriteAllTextAsync;(System.String,System.String,System.Text.Encoding,System.Threading.CancellationToken);Argument[3];ReturnValue;taint;df-generated | | System.IO;File;WriteAllTextAsync;(System.String,System.String,System.Threading.CancellationToken);Argument[2];ReturnValue;taint;df-generated | | System.IO;FileInfo;CopyTo;(System.String);Argument[0];ReturnValue.Field[System.IO.FileSystemInfo.FullPath];value;dfc-generated | @@ -8451,6 +9084,8 @@ | System.IO;MemoryStream;MemoryStream;(System.Byte[],System.Int32,System.Int32,System.Boolean,System.Boolean);Argument[0].Element;Argument[this];taint;manual | | System.IO;MemoryStream;ToArray;();Argument[this];ReturnValue;taint;manual | | System.IO;MemoryStream;TryGetBuffer;(System.ArraySegment);Argument[this];ReturnValue;taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0].Property[System.ReadOnlyMemory`1.Span].Element;Argument[this];taint;df-generated | +| System.IO;MemoryStream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0].Property[System.ReadOnlyMemory`1.Span].Element;Argument[this];taint;dfc-generated | | System.IO;MemoryStream;WriteTo;(System.IO.Stream);Argument[this];Argument[0];taint;df-generated | | System.IO;Path;ChangeExtension;(System.String,System.String);Argument[0];ReturnValue;value;dfc-generated | | System.IO;Path;Combine;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;manual | @@ -8544,6 +9179,7 @@ | System.IO;Stream;Write;(System.ReadOnlySpan);Argument[0].Element;Argument[this];taint;manual | | System.IO;Stream;WriteAsync;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;Argument[this];taint;manual | | System.IO;Stream;WriteAsync;(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken);Argument[0].Element;Argument[this];taint;manual | +| System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.IO;Stream;WriteAsync;(System.ReadOnlyMemory,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | @@ -8603,6 +9239,8 @@ | System.IO;TextWriter;Write;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;TextWriter;Write;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;TextWriter;Write;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;TextWriter;Write;(System.Text.StringBuilder);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | | System.IO;TextWriter;WriteAsync;(System.Char[]);Argument[0].Element;Argument[this];taint;df-generated | @@ -8630,6 +9268,8 @@ | System.IO;TextWriter;WriteLine;(System.String,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.String,System.Object[]);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.String,System.Object[]);Argument[1].Element;Argument[this];taint;df-generated | +| System.IO;TextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | +| System.IO;TextWriter;WriteLine;(System.String,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLine;(System.Text.StringBuilder);Argument[0];Argument[this];taint;df-generated | | System.IO;TextWriter;WriteLineAsync;();Argument[this];ReturnValue;taint;df-generated | | System.IO;TextWriter;WriteLineAsync;(System.Char);Argument[this];ReturnValue;taint;df-generated | @@ -8673,7 +9313,12 @@ | System.Linq.Expressions;BlockExpression;get_Result;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;BlockExpression;get_Variables;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;CatchBlock;ToString;();Argument[this].Property[System.Linq.Expressions.CatchBlock.Variable].Property[System.Linq.Expressions.ParameterExpression.Name];ReturnValue;taint;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | +| System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | | System.Linq.Expressions;CatchBlock;Update;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;Update;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ConditionalExpression;get_IfFalse;();Argument[this].SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];ReturnValue;value;dfc-generated | @@ -8704,6 +9349,8 @@ | System.Linq.Expressions;ElementInit;GetArgument;(System.Int32);Argument[this].Property[System.Linq.Expressions.ElementInit.Arguments].Element;ReturnValue;value;df-generated | | System.Linq.Expressions;ElementInit;GetArgument;(System.Int32);Argument[this].Property[System.Linq.Expressions.ElementInit.Arguments].Element;ReturnValue;value;dfc-generated | | System.Linq.Expressions;ElementInit;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments];value;dfc-generated | +| System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.ElementInit.AddMethod];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | | System.Linq.Expressions;ElementInit;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;Add;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -8719,8 +9366,11 @@ | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;AndAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;ArrayAccess;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;Expression;ArrayIndex;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;ArrayLength;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Bind;(System.Reflection.MemberInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;Expression;Bind;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;Expression;Block;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue;taint;df-generated | @@ -8741,17 +9391,26 @@ | System.Linq.Expressions;Expression;Block;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Block;(System.Type,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Break;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg0];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.InstanceMethodCallExpression2._arg1];value;dfc-generated | -| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression1._arg0];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg0];value;dfc-generated | +| System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodCallExpression2._arg1];value;dfc-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | @@ -8765,9 +9424,34 @@ | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Call;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Catch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | | System.Linq.Expressions;Expression;Coalesce;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;Condition;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Constant;(System.Object);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Constant;(System.Object,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConstantExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Continue;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Convert;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[2];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;ConvertChecked;(System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[2];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Decrement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Divide;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;DivideAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;DivideAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -8783,16 +9467,46 @@ | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Dynamic;(System.Runtime.CompilerServices.CallSiteBinder,System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ElementInit.Arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;ElementInit;(System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ElementInit.AddMethod];value;dfc-generated | | System.Linq.Expressions;Expression;Equal;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOr;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ExclusiveOrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;Field;(System.Linq.Expressions.Expression,System.Reflection.FieldInfo);Argument[1];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Goto;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;GreaterThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;GreaterThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThen;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThen;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.Test];value;dfc-generated | +| System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.ConditionalExpression.IfTrue];value;dfc-generated | | System.Linq.Expressions;Expression;IfThenElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.FullConditionalExpression._false];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Increment;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Invoke;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsFalse;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;IsTrue;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.String);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name];value;dfc-generated | +| System.Linq.Expressions;Expression;Label;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelTarget.Name];value;dfc-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Boolean,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Lambda;(System.Linq.Expressions.Expression,System.String,System.Boolean,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue;taint;df-generated | @@ -8805,10 +9519,28 @@ | System.Linq.Expressions;Expression;LeftShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;LessThan;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;LessThanOrEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.ElementInit[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;ListInit;(System.Linq.Expressions.NewExpression,System.Reflection.MethodInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;Expression;Loop;(System.Linq.Expressions.Expression,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget);Argument[2];ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[4];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[4];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[5];ReturnValue.SyntheticField[System.Linq.Expressions.CoalesceConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;MakeBinary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[5];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Variable];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeCatchBlock;(System.Type,System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.Property[System.Linq.Expressions.CatchBlock.Filter];value;dfc-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Collections.Generic.IEnumerable);Argument[2].Element;ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue;taint;df-generated | @@ -8820,9 +9552,26 @@ | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[4];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;MakeDynamic;(System.Type,System.Runtime.CompilerServices.CallSiteBinder,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[5];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeGoto;(System.Linq.Expressions.GotoExpressionKind,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[2];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;Expression;MakeIndex;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | | System.Linq.Expressions;Expression;MakeMemberAccess;(System.Linq.Expressions.Expression,System.Reflection.MemberInfo);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.FieldExpression._field];value;dfc-generated | | System.Linq.Expressions;Expression;MakeMemberAccess;(System.Linq.Expressions.Expression,System.Reflection.MemberInfo);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.PropertyExpression._property];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeTry;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[4];ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;MakeUnary;(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Type,System.Reflection.MethodInfo);Argument[3];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MemberInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberBind;(System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings];value;dfc-generated | +| System.Linq.Expressions;Expression;MemberInit;(System.Linq.Expressions.NewExpression,System.Linq.Expressions.MemberBinding[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | | System.Linq.Expressions;Expression;Modulo;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ModuloAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;ModuloAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -8835,28 +9584,74 @@ | System.Linq.Expressions;Expression;MultiplyAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;MultiplyAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;MultiplyChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Negate;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;NegateChecked;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | | System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Collections.Generic.IEnumerable,System.Reflection.MemberInfo[]);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;New;(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Not;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;NotEqual;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean,System.Reflection.MethodInfo);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;OnesComplement;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Or;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;OrAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;OrElse;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Parameter;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PostIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Power;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;PowerAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreDecrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;PreIncrementAssign;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo);Argument[1];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo,System.Linq.Expressions.Expression[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | +| System.Linq.Expressions;Expression;Property;(System.Linq.Expressions.Expression,System.String,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | +| System.Linq.Expressions;Expression;Quote;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | | System.Linq.Expressions;Expression;Reduce;();Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;ReduceAndCheck;();Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;Expression;ReduceExtensions;();Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression,System.Type);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | +| System.Linq.Expressions;Expression;Return;(System.Linq.Expressions.LabelTarget,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | | System.Linq.Expressions;Expression;RightShift;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;RightShiftAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | +| System.Linq.Expressions;Expression;RuntimeVariables;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;Expression;Subtract;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssign;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | @@ -8865,12 +9660,50 @@ | System.Linq.Expressions;Expression;SubtractAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractAssignChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.LambdaExpression);Argument[3];ReturnValue.SyntheticField[System.Linq.Expressions.OpAssignMethodConversionBinaryExpression._conversion];value;dfc-generated | | System.Linq.Expressions;Expression;SubtractChecked;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[2];ReturnValue.SyntheticField[System.Linq.Expressions.MethodBinaryExpression._method];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Linq.Expressions.Expression,System.Linq.Expressions.SwitchCase[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Collections.Generic.IEnumerable);Argument[4];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;Expression;Switch;(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Reflection.MethodInfo,System.Linq.Expressions.SwitchCase[]);Argument[3];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | +| System.Linq.Expressions;Expression;SwitchCase;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;SymbolDocument;(System.String);Argument[0];ReturnValue.Property[System.Linq.Expressions.SymbolDocumentInfo.FileName];value;dfc-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[2];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;SymbolDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[3];ReturnValue;taint;df-generated | +| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Throw;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatch;(System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatchFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryCatchFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.CatchBlock[]);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFault;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFault;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;Expression;TryFinally;(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeAs;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeEqual;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | +| System.Linq.Expressions;Expression;TypeIs;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;UnaryPlus;(System.Linq.Expressions.Expression,System.Reflection.MethodInfo);Argument[1];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | +| System.Linq.Expressions;Expression;Unbox;(System.Linq.Expressions.Expression,System.Type);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;Expression;Variable;(System.Type,System.String);Argument[1];ReturnValue.Property[System.Linq.Expressions.ParameterExpression.Name];value;dfc-generated | | System.Linq.Expressions;Expression;VisitChildren;(System.Linq.Expressions.ExpressionVisitor);Argument[this];Argument[0];taint;df-generated | | System.Linq.Expressions;Expression;VisitChildren;(System.Linq.Expressions.ExpressionVisitor);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;Expression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1].Element;ReturnValue;taint;df-generated | @@ -8918,57 +9751,100 @@ | System.Linq.Expressions;ExpressionVisitor;VisitMemberBinding;(System.Linq.Expressions.MemberBinding);Argument[0];Argument[this];taint;df-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberBinding;(System.Linq.Expressions.MemberBinding);Argument[0];ReturnValue;taint;df-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberInit;(System.Linq.Expressions.MemberInitExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitMemberListBinding;(System.Linq.Expressions.MemberListBinding);Argument[0].Property[System.Linq.Expressions.MemberListBinding.Initializers];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberListBinding;(System.Linq.Expressions.MemberListBinding);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitMemberMemberBinding;(System.Linq.Expressions.MemberMemberBinding);Argument[0].Property[System.Linq.Expressions.MemberMemberBinding.Bindings];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMemberMemberBinding;(System.Linq.Expressions.MemberMemberBinding);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitMethodCall;(System.Linq.Expressions.MethodCallExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitNew;(System.Linq.Expressions.NewExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitNewArray;(System.Linq.Expressions.NewArrayExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitParameter;(System.Linq.Expressions.ParameterExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitRuntimeVariables;(System.Linq.Expressions.RuntimeVariablesExpression);Argument[0].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitRuntimeVariables;(System.Linq.Expressions.RuntimeVariablesExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitSwitch;(System.Linq.Expressions.SwitchExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;ExpressionVisitor;VisitSwitchCase;(System.Linq.Expressions.SwitchCase);Argument[0].Property[System.Linq.Expressions.SwitchCase.TestValues];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitSwitchCase;(System.Linq.Expressions.SwitchCase);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitTry;(System.Linq.Expressions.TryExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitTypeBinary;(System.Linq.Expressions.TypeBinaryExpression);Argument[0];ReturnValue;value;dfc-generated | | System.Linq.Expressions;ExpressionVisitor;VisitUnary;(System.Linq.Expressions.UnaryExpression);Argument[0];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Target];value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.GotoExpression.Value];value;dfc-generated | | System.Linq.Expressions;GotoExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;IArgumentProvider;GetArgument;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;IndexExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments].Element;ReturnValue;value;df-generated | | System.Linq.Expressions;IndexExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments].Element;ReturnValue;value;dfc-generated | +| System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Object];value;dfc-generated | | System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.SyntheticField[System.Linq.Expressions.IndexExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.IndexExpression.Indexer];ReturnValue.Property[System.Linq.Expressions.IndexExpression.Indexer];value;dfc-generated | | System.Linq.Expressions;IndexExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;IndexExpression;get_Arguments;();Argument[this].SyntheticField[System.Linq.Expressions.IndexExpression._arguments];ReturnValue;value;dfc-generated | | System.Linq.Expressions;InvocationExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LabelExpression.Target];value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue].Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LabelExpression.DefaultValue];value;dfc-generated | | System.Linq.Expressions;LabelExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LabelTarget;ToString;();Argument[this].Property[System.Linq.Expressions.LabelTarget.Name];ReturnValue;value;dfc-generated | | System.Linq.Expressions;LambdaExpression;get_Body;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;LambdaExpression;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;LambdaExpression;get_Parameters;();Argument[this];ReturnValue;taint;df-generated | +| System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.ListInitExpression.Initializers];value;dfc-generated | | System.Linq.Expressions;ListInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.LoopExpression.BreakLabel];value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.LoopExpression.ContinueLabel];value;dfc-generated | +| System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.LoopExpression.Body];value;dfc-generated | | System.Linq.Expressions;LoopExpression;Update;(System.Linq.Expressions.LabelTarget,System.Linq.Expressions.LabelTarget,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberAssignment;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.SyntheticField[System.Linq.Expressions.MemberAssignment._expression];value;dfc-generated | | System.Linq.Expressions;MemberAssignment;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberAssignment;get_Expression;();Argument[this].SyntheticField[System.Linq.Expressions.MemberAssignment._expression];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberBinding;MemberBinding;(System.Linq.Expressions.MemberBindingType,System.Reflection.MemberInfo);Argument[1];Argument[this].Property[System.Linq.Expressions.MemberBinding.Member];value;dfc-generated | | System.Linq.Expressions;MemberBinding;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;MemberExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;df-generated | | System.Linq.Expressions;MemberExpression;get_Member;();Argument[this].SyntheticField[System.Linq.Expressions.FieldExpression._field];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MemberExpression;get_Member;();Argument[this].SyntheticField[System.Linq.Expressions.PropertyExpression._property];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.NewExpression];value;dfc-generated | +| System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[1];ReturnValue.Property[System.Linq.Expressions.MemberInitExpression.Bindings];value;dfc-generated | | System.Linq.Expressions;MemberInitExpression;Update;(System.Linq.Expressions.NewExpression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberListBinding;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberListBinding.Initializers];value;dfc-generated | | System.Linq.Expressions;MemberListBinding;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;MemberMemberBinding;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.MemberMemberBinding.Bindings];value;dfc-generated | | System.Linq.Expressions;MemberMemberBinding;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MethodCallExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;MethodCallExpression;get_Arguments;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;MethodCallExpression;get_Object;();Argument[this];ReturnValue;taint;df-generated | | System.Linq.Expressions;NewArrayExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;NewExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments].Element;ReturnValue;value;df-generated | | System.Linq.Expressions;NewExpression;GetArgument;(System.Int32);Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments].Element;ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.SyntheticField[System.Linq.Expressions.NewExpression._arguments];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.NewExpression.Constructor];ReturnValue.Property[System.Linq.Expressions.NewExpression.Constructor];value;dfc-generated | +| System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this].Property[System.Linq.Expressions.NewExpression.Members];ReturnValue.Property[System.Linq.Expressions.NewExpression.Members];value;dfc-generated | | System.Linq.Expressions;NewExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | | System.Linq.Expressions;NewExpression;get_Arguments;();Argument[this].SyntheticField[System.Linq.Expressions.NewExpression._arguments];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;RuntimeVariablesExpression;Accept;(System.Linq.Expressions.ExpressionVisitor);Argument[this].Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | +| System.Linq.Expressions;RuntimeVariablesExpression;Update;(System.Collections.Generic.IEnumerable);Argument[0];ReturnValue.Property[System.Linq.Expressions.RuntimeVariablesExpression.Variables];value;dfc-generated | | System.Linq.Expressions;RuntimeVariablesExpression;Update;(System.Collections.Generic.IEnumerable);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchCase.TestValues];value;dfc-generated | +| System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchCase.Body];value;dfc-generated | | System.Linq.Expressions;SwitchCase;Update;(System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.SwitchValue];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Cases];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.DefaultBody];value;dfc-generated | +| System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this].Property[System.Linq.Expressions.SwitchExpression.Comparison];ReturnValue.Property[System.Linq.Expressions.SwitchExpression.Comparison];value;dfc-generated | | System.Linq.Expressions;SwitchExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TryExpression.Body];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[1];ReturnValue.Property[System.Linq.Expressions.TryExpression.Handlers];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[2];ReturnValue.Property[System.Linq.Expressions.TryExpression.Finally];value;dfc-generated | +| System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[3];ReturnValue.Property[System.Linq.Expressions.TryExpression.Fault];value;dfc-generated | | System.Linq.Expressions;TryExpression;Update;(System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;TypeBinaryExpression;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.TypeBinaryExpression.Expression];value;dfc-generated | | System.Linq.Expressions;TypeBinaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | +| System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[0];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Operand];value;dfc-generated | +| System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this].Property[System.Linq.Expressions.UnaryExpression.Method];ReturnValue.Property[System.Linq.Expressions.UnaryExpression.Method];value;dfc-generated | | System.Linq.Expressions;UnaryExpression;Update;(System.Linq.Expressions.Expression);Argument[this];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;Aggregate;(System.Collections.Generic.IEnumerable,TAccumulate,System.Func,System.Func);Argument[0].Element;Argument[2].Parameter[1];value;manual | | System.Linq;Enumerable;Aggregate;(System.Collections.Generic.IEnumerable,TAccumulate,System.Func,System.Func);Argument[1];Argument[2].Parameter[0];value;manual | @@ -9096,7 +9972,6 @@ | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;hq-generated | -| System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[0].Element;ReturnValue;value;dfc-generated | | System.Linq;Enumerable;FirstOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[1];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;GroupBy;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,TResult>);Argument[0].Element;Argument[1].Parameter[0];value;manual | | System.Linq;Enumerable;GroupBy;(System.Collections.Generic.IEnumerable,System.Func,System.Func,System.Func,TResult>);Argument[0].Element;Argument[2].Parameter[0];value;manual | @@ -9200,7 +10075,6 @@ | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,System.Func,TSource);Argument[2];ReturnValue;value;hq-generated | -| System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[0].Element;ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LastOrDefault;(System.Collections.Generic.IEnumerable,TSource);Argument[1];ReturnValue;value;dfc-generated | | System.Linq;Enumerable;LongCount;(System.Collections.Generic.IEnumerable,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;manual | | System.Linq;Enumerable;LongCount;(System.Collections.Generic.IEnumerable,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;manual | @@ -9511,6 +10385,7 @@ | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray+Builder);Argument[0].Element;ReturnValue;value;manual | | System.Linq;ImmutableArrayExtensions;Last;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray+Builder);Argument[0].Element;ReturnValue;value;manual | | System.Linq;ImmutableArrayExtensions;LastOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;Select;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -9529,6 +10404,7 @@ | System.Linq;ImmutableArrayExtensions;SequenceEqual;(System.Collections.Immutable.ImmutableArray,System.Collections.Immutable.ImmutableArray,System.Func);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;Single;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;Single;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;SingleOrDefault;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Linq;ImmutableArrayExtensions;ToArray;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Linq;ImmutableArrayExtensions;ToDictionary;(System.Collections.Immutable.ImmutableArray,System.Func);Argument[0].Element;Argument[1].Parameter[0];value;dfc-generated | @@ -10293,16 +11169,16 @@ | System.Net.Http.Headers;ContentDispositionHeaderValue;ContentDispositionHeaderValue;(System.Net.Http.Headers.ContentDispositionHeaderValue);Argument[0].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];value;dfc-generated | | System.Net.Http.Headers;ContentDispositionHeaderValue;ContentDispositionHeaderValue;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];value;dfc-generated | | System.Net.Http.Headers;ContentDispositionHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.ContentDispositionHeaderValue._dispositionType];ReturnValue;taint;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;Clone;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue.SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;EntityTagHeaderValue;(System.String,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue;value;dfc-generated | -| System.Net.Http.Headers;EntityTagHeaderValue;get_Tag;();Argument[this].SyntheticField[System.Net.Http.Headers.EntityTagHeaderValue._tag];ReturnValue;value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;Clone;();Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue.Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;EntityTagHeaderValue;(System.String,System.Boolean);Argument[0];Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];value;dfc-generated | +| System.Net.Http.Headers;EntityTagHeaderValue;ToString;();Argument[this].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this].Property[System.Net.Http.Headers.HeaderStringValues+Enumerator.Current];ReturnValue;value;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this].Property[System.Net.Http.Headers.HeaderStringValues+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Headers;HeaderStringValues+Enumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Net.Http.Headers;HeaderStringValues;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Headers;HeaderStringValues;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Http.Headers;HttpHeaderValueCollection;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Headers;HttpHeaders;Clear;();Argument[this].WithoutElement;Argument[this];value;manual | | System.Net.Http.Headers;HttpHeaders;get_NonValidated;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Headers;HttpHeadersNonValidated+Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | @@ -10357,7 +11233,7 @@ | System.Net.Http.Headers;RangeConditionHeaderValue;Clone;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];ReturnValue.SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;RangeConditionHeaderValue;(System.DateTimeOffset);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date];value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;RangeConditionHeaderValue;(System.Net.Http.Headers.EntityTagHeaderValue);Argument[0];Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];value;dfc-generated | -| System.Net.Http.Headers;RangeConditionHeaderValue;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Http.Headers;RangeConditionHeaderValue;ToString;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag].Property[System.Net.Http.Headers.EntityTagHeaderValue.Tag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;get_Date;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._date];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RangeConditionHeaderValue;get_EntityTag;();Argument[this].SyntheticField[System.Net.Http.Headers.RangeConditionHeaderValue._entityTag];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;RetryConditionHeaderValue;Clone;();Argument[this].SyntheticField[System.Net.Http.Headers.RetryConditionHeaderValue._date];ReturnValue.SyntheticField[System.Net.Http.Headers.RetryConditionHeaderValue._date];value;dfc-generated | @@ -10396,8 +11272,10 @@ | System.Net.Http.Headers;WarningHeaderValue;get_Agent;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._agent];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;WarningHeaderValue;get_Date;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._date];ReturnValue;value;dfc-generated | | System.Net.Http.Headers;WarningHeaderValue;get_Text;();Argument[this].SyntheticField[System.Net.Http.Headers.WarningHeaderValue._text];ReturnValue;value;dfc-generated | -| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[1];ReturnValue;taint;df-generated | -| System.Net.Http.Json;JsonContent;Create;(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[1];ReturnValue;taint;df-generated | +| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(System.Object,System.Type,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(T,System.Net.Http.Headers.MediaTypeHeaderValue,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | +| System.Net.Http.Json;JsonContent;Create;(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Net.Http.Headers.MediaTypeHeaderValue);Argument[0];ReturnValue.Property[System.Net.Http.Json.JsonContent.Value];value;dfc-generated | | System.Net.Http.Metrics;HttpMetricsEnrichmentContext;AddCallback;(System.Net.Http.HttpRequestMessage,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net.Http.Metrics;HttpMetricsEnrichmentContext;get_Exception;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http.Metrics;HttpMetricsEnrichmentContext;get_Request;();Argument[this];ReturnValue;taint;df-generated | @@ -10428,8 +11306,6 @@ | System.Net.Http;HttpContent;CreateContentReadStream;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;CreateContentReadStreamAsync;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;CreateContentReadStreamAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;HttpContent;ReadAsByteArrayAsync;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;HttpContent;ReadAsByteArrayAsync;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStream;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStream;(System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpContent;ReadAsStreamAsync;();Argument[this];ReturnValue;taint;df-generated | @@ -10450,10 +11326,11 @@ | System.Net.Http;HttpMethod;HttpMethod;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];value;dfc-generated | | System.Net.Http;HttpMethod;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];ReturnValue;value;dfc-generated | | System.Net.Http;HttpMethod;get_Method;();Argument[this].SyntheticField[System.Net.Http.HttpMethod._method];ReturnValue;value;dfc-generated | +| System.Net.Http;HttpRequestException;HttpRequestException;(System.String,System.Exception,System.Nullable);Argument[2];Argument[this].Property[System.Net.Http.HttpRequestException.StatusCode];value;dfc-generated | | System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.String);Argument[0];Argument[this];taint;manual | | System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.String);Argument[1];Argument[this];taint;manual | -| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[0];Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method];value;dfc-generated | -| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[1];Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._requestUri];value;dfc-generated | +| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[0];Argument[this];taint;manual | +| System.Net.Http;HttpRequestMessage;HttpRequestMessage;(System.Net.Http.HttpMethod,System.Uri);Argument[1];Argument[this];taint;manual | | System.Net.Http;HttpRequestMessage;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._method];ReturnValue;taint;dfc-generated | | System.Net.Http;HttpRequestMessage;ToString;();Argument[this].SyntheticField[System.Net.Http.HttpRequestMessage._requestUri];ReturnValue;taint;dfc-generated | | System.Net.Http;HttpRequestMessage;get_Properties;();Argument[this].Property[System.Net.Http.HttpRequestMessage.Options];ReturnValue;value;dfc-generated | @@ -10461,6 +11338,7 @@ | System.Net.Http;HttpRequestOptions;Add;(System.Collections.Generic.KeyValuePair);Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;manual | | System.Net.Http;HttpRequestOptions;get_Keys;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;HttpRequestOptions;get_Values;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Http;HttpRequestOptionsKey;HttpRequestOptionsKey;(System.String);Argument[0];Argument[this].Property[System.Net.Http.HttpRequestOptionsKey`1.Key];value;dfc-generated | | System.Net.Http;HttpResponseMessage;EnsureSuccessStatusCode;();Argument[this];ReturnValue;value;dfc-generated | | System.Net.Http;HttpResponseMessage;ToString;();Argument[this].Property[System.Net.Http.HttpResponseMessage.ReasonPhrase];ReturnValue;taint;dfc-generated | | System.Net.Http;MultipartContent;Add;(System.Net.Http.HttpContent);Argument[0];Argument[this].Element;value;manual | @@ -10479,8 +11357,10 @@ | System.Net.Http;SocketsHttpPlaintextStreamFilterContext;get_InitialRequestMessage;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;SocketsHttpPlaintextStreamFilterContext;get_NegotiatedHttpVersion;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Http;SocketsHttpPlaintextStreamFilterContext;get_PlaintextStream;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream);Argument[0];Argument[this];taint;df-generated | -| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this].SyntheticField[System.Net.Http.StreamContent._content];Argument[0];taint;df-generated | +| System.Net.Http;StreamContent;SerializeToStream;(System.IO.Stream,System.Net.TransportContext,System.Threading.CancellationToken);Argument[this].SyntheticField[System.Net.Http.StreamContent._content];Argument[0];taint;dfc-generated | +| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream);Argument[0];Argument[this].SyntheticField[System.Net.Http.StreamContent._content];value;dfc-generated | +| System.Net.Http;StreamContent;StreamContent;(System.IO.Stream,System.Int32);Argument[0];Argument[this].SyntheticField[System.Net.Http.StreamContent._content];value;dfc-generated | | System.Net.Mail;AlternateView;CreateAlternateViewFromString;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Net.Mail;AlternateView;CreateAlternateViewFromString;(System.String,System.Net.Mime.ContentType);Argument[0];ReturnValue;taint;df-generated | | System.Net.Mail;AlternateView;CreateAlternateViewFromString;(System.String,System.Net.Mime.ContentType);Argument[1];ReturnValue;taint;df-generated | @@ -10602,10 +11482,16 @@ | System.Net.NetworkInformation;NetworkInterface;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Net.NetworkInformation;PhysicalAddress;GetAddressBytes;();Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address].Element;ReturnValue.Element;value;dfc-generated | | System.Net.NetworkInformation;PhysicalAddress;PhysicalAddress;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Net.NetworkInformation.PhysicalAddress._address];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.Net.IPAddress,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.String,System.Int32,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | +| System.Net.NetworkInformation;Ping;Send;(System.String,System.TimeSpan,System.Byte[],System.Net.NetworkInformation.PingOptions);Argument[3];ReturnValue.Property[System.Net.NetworkInformation.PingReply.Options];value;dfc-generated | | System.Net.NetworkInformation;Ping;add_PingCompleted;(System.Net.NetworkInformation.PingCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.NetworkInformation;Ping;remove_PingCompleted;(System.Net.NetworkInformation.PingCompletedEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.NetworkInformation;PingCompletedEventHandler;BeginInvoke;(System.Object,System.Net.NetworkInformation.PingCompletedEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Net.NetworkInformation;UnicastIPAddressInformationCollection;get_Item;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Net.Quic;QuicConnection;ConnectAsync;(System.Net.Quic.QuicClientConnectionOptions,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | +| System.Net.Quic;QuicConnection;OpenOutboundStreamAsync;(System.Net.Quic.QuicStreamType,System.Threading.CancellationToken);Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_LocalEndPoint;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_NegotiatedApplicationProtocol;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Quic;QuicConnection;get_RemoteCertificate;();Argument[this];ReturnValue;taint;df-generated | @@ -10645,22 +11531,35 @@ | System.Net.Security;SslCertificateTrust;CreateForX509Store;(System.Security.Cryptography.X509Certificates.X509Store,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Net.Security;SslClientAuthenticationOptions;set_LocalCertificateSelectionCallback;(System.Net.Security.LocalCertificateSelectionCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslClientAuthenticationOptions;set_RemoteCertificateValidationCallback;(System.Net.Security.RemoteCertificateValidationCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslClientHelloInfo;SslClientHelloInfo;(System.String,System.Security.Authentication.SslProtocols);Argument[0];Argument[this].Property[System.Net.Security.SslClientHelloInfo.ServerName];value;dfc-generated | | System.Net.Security;SslServerAuthenticationOptions;set_RemoteCertificateValidationCallback;(System.Net.Security.RemoteCertificateValidationCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslServerAuthenticationOptions;set_ServerCertificateSelectionCallback;(System.Net.Security.ServerCertificateSelectionCallback);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;AuthenticateAsClient;(System.Net.Security.SslClientAuthenticationOptions);Argument[0];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | | System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | -| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.Net.Security.SslClientAuthenticationOptions,System.Threading.CancellationToken);Argument[1];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;AuthenticateAsClientAsync;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | | System.Net.Security;SslStream;AuthenticateAsServer;(System.Net.Security.SslServerAuthenticationOptions);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.ServerOptionsSelectionCallback,System.Object,System.Threading.CancellationToken);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | -| System.Net.Security;SslStream;AuthenticateAsServerAsync;(System.Net.Security.SslServerAuthenticationOptions,System.Threading.CancellationToken);Argument[1];Argument[this];taint;df-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;dfc-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[0];Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];value;hq-generated | +| System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;dfc-generated | | System.Net.Security;SslStream;BeginAuthenticateAsClient;(System.String,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Boolean,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;BeginAuthenticateAsServer;(System.Security.Cryptography.X509Certificates.X509Certificate,System.Boolean,System.Security.Authentication.SslProtocols,System.Boolean,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | -| System.Net.Security;SslStream;NegotiateClientCertificateAsync;(System.Threading.CancellationToken);Argument[0];Argument[this];taint;df-generated | | System.Net.Security;SslStream;SslStream;(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;SslStream;(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback,System.Net.Security.LocalCertificateSelectionCallback);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Net.Security;SslStream;SslStream;(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback,System.Net.Security.LocalCertificateSelectionCallback);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | @@ -10670,9 +11569,10 @@ | System.Net.Security;SslStream;get_LocalCertificate;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;get_NegotiatedApplicationProtocol;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Security;SslStream;get_RemoteCertificate;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Security;SslStream;get_TargetHostName;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.Security;SslStream;get_TargetHostName;();Argument[this].SyntheticField[System.Net.Security.SslStream._sslAuthenticationOptions].SyntheticField[System.Net.Security.SslAuthenticationOptions.TargetHost];ReturnValue;value;dfc-generated | | System.Net.Security;SslStream;get_TransportContext;();Argument[this];ReturnValue;taint;df-generated | -| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust);Argument[3];ReturnValue;taint;df-generated | +| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean);Argument[0];ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate];value;dfc-generated | +| System.Net.Security;SslStreamCertificateContext;Create;(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Boolean,System.Net.Security.SslCertificateTrust);Argument[0];ReturnValue.Property[System.Net.Security.SslStreamCertificateContext.TargetCertificate];value;dfc-generated | | System.Net.Sockets;IPPacketInformation;get_Address;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;IPv6MulticastOption;IPv6MulticastOption;(System.Net.IPAddress);Argument[0];Argument[this];taint;df-generated | | System.Net.Sockets;IPv6MulticastOption;IPv6MulticastOption;(System.Net.IPAddress,System.Int64);Argument[0];Argument[this];taint;df-generated | @@ -10682,6 +11582,10 @@ | System.Net.Sockets;MulticastOption;MulticastOption;(System.Net.IPAddress,System.Net.IPAddress);Argument[1];Argument[this];taint;df-generated | | System.Net.Sockets;NetworkStream;NetworkStream;(System.Net.Sockets.Socket,System.IO.FileAccess,System.Boolean);Argument[0];Argument[this].SyntheticField[System.Net.Sockets.NetworkStream._streamSocket];value;dfc-generated | | System.Net.Sockets;NetworkStream;get_Socket;();Argument[this].SyntheticField[System.Net.Sockets.NetworkStream._streamSocket];ReturnValue;value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.Byte[],System.Int32,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.Buffer];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.IO.FileStream,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.FileStream];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.ReadOnlyMemory,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.MemoryBuffer];value;dfc-generated | +| System.Net.Sockets;SendPacketsElement;SendPacketsElement;(System.String,System.Int64,System.Int32,System.Boolean);Argument[0];Argument[this].Property[System.Net.Sockets.SendPacketsElement.FilePath];value;dfc-generated | | System.Net.Sockets;Socket;Accept;();Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;Socket;AcceptAsync;(System.Net.Sockets.SocketAsyncEventArgs);Argument[this];Argument[0];taint;df-generated | | System.Net.Sockets;Socket;BeginAccept;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -10779,8 +11683,6 @@ | System.Net.Sockets;UdpClient;BeginSend;(System.Byte[],System.Int32,System.Net.IPEndPoint,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Net.Sockets;UdpClient;BeginSend;(System.Byte[],System.Int32,System.String,System.Int32,System.AsyncCallback,System.Object);Argument[4];Argument[4].Parameter[delegate-self];value;hq-generated | | System.Net.Sockets;UdpClient;Connect;(System.Net.IPEndPoint);Argument[0];Argument[this];taint;df-generated | -| System.Net.Sockets;UdpClient;EndReceive;(System.IAsyncResult,System.Net.IPEndPoint);Argument[this];ReturnValue;taint;df-generated | -| System.Net.Sockets;UdpClient;Receive;(System.Net.IPEndPoint);Argument[this];ReturnValue;taint;df-generated | | System.Net.Sockets;UdpClient;Send;(System.Byte[],System.Int32,System.Net.IPEndPoint);Argument[2];Argument[this];taint;df-generated | | System.Net.Sockets;UdpClient;Send;(System.ReadOnlySpan,System.Net.IPEndPoint);Argument[1];Argument[this];taint;df-generated | | System.Net.Sockets;UdpClient;SendAsync;(System.Byte[],System.Int32,System.Net.IPEndPoint);Argument[2];Argument[this];taint;df-generated | @@ -10807,6 +11709,8 @@ | System.Net.WebSockets;WebSocketContext;get_SecWebSocketVersion;();Argument[this];ReturnValue;taint;df-generated | | System.Net.WebSockets;WebSocketContext;get_User;();Argument[this];ReturnValue;taint;df-generated | | System.Net.WebSockets;WebSocketContext;get_WebSocket;();Argument[this];ReturnValue;taint;df-generated | +| System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String);Argument[3];Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatus];value;dfc-generated | +| System.Net.WebSockets;WebSocketReceiveResult;WebSocketReceiveResult;(System.Int32,System.Net.WebSockets.WebSocketMessageType,System.Boolean,System.Nullable,System.String);Argument[4];Argument[this].Property[System.Net.WebSockets.WebSocketReceiveResult.CloseStatusDescription];value;dfc-generated | | System.Net;AuthenticationSchemeSelector;BeginInvoke;(System.Net.HttpListenerRequest,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;BindIPEndPoint;BeginInvoke;(System.Net.ServicePoint,System.Net.IPEndPoint,System.Int32,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Net;Cookie;Cookie;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | @@ -10823,6 +11727,10 @@ | System.Net;Dns;BeginGetHostEntry;(System.Net.IPAddress,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;Dns;BeginGetHostEntry;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Net;Dns;BeginResolve;(System.String,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Net;Dns;GetHostByName;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;GetHostEntry;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;GetHostEntry;(System.String,System.Net.Sockets.AddressFamily);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | +| System.Net;Dns;Resolve;(System.String);Argument[0];ReturnValue.Property[System.Net.IPHostEntry.HostName];value;dfc-generated | | System.Net;DnsEndPoint;DnsEndPoint;(System.String,System.Int32,System.Net.Sockets.AddressFamily);Argument[0];Argument[this].SyntheticField[System.Net.DnsEndPoint._host];value;dfc-generated | | System.Net;DnsEndPoint;ToString;();Argument[this].SyntheticField[System.Net.DnsEndPoint._host];ReturnValue;taint;dfc-generated | | System.Net;DnsEndPoint;get_Host;();Argument[this].SyntheticField[System.Net.DnsEndPoint._host];ReturnValue;value;dfc-generated | @@ -10843,6 +11751,8 @@ | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[1];ReturnValue.SyntheticField[System.Net.ListenerAsyncResult._state];value;dfc-generated | | System.Net;HttpListener;BeginGetContext;(System.AsyncCallback,System.Object);Argument[1];ReturnValue.SyntheticField[System.Net.ListenerAsyncResult._state];value;hq-generated | +| System.Net;HttpListener;EndGetContext;(System.IAsyncResult);Argument[0];ReturnValue;taint;df-generated | +| System.Net;HttpListener;GetContext;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_DefaultServiceNames;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_Prefixes;();Argument[this];ReturnValue;taint;df-generated | | System.Net;HttpListener;get_TimeoutManager;();Argument[this];ReturnValue;taint;df-generated | @@ -10993,6 +11903,8 @@ | System.Net;WebHeaderCollection;get_Item;(System.Net.HttpRequestHeader);Argument[this];ReturnValue;taint;df-generated | | System.Net;WebHeaderCollection;get_Item;(System.Net.HttpResponseHeader);Argument[this];ReturnValue;taint;df-generated | | System.Net;WebProxy;GetProxy;(System.Uri);Argument[this].Property[System.Net.WebProxy.Address];ReturnValue;value;dfc-generated | +| System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[],System.Net.ICredentials);Argument[0];Argument[this].Property[System.Net.WebProxy.Address];value;dfc-generated | +| System.Net;WebProxy;WebProxy;(System.Uri,System.Boolean,System.String[],System.Net.ICredentials);Argument[3];Argument[this].Property[System.Net.WebProxy.Credentials];value;dfc-generated | | System.Net;WebRequest;BeginGetRequestStream;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;WebRequest;BeginGetResponse;(System.AsyncCallback,System.Object);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Net;WebRequest;Create;(System.String);Argument[0];ReturnValue;taint;df-generated | @@ -11040,6 +11952,8 @@ | System.Numerics;Complex;MinMagnitudeNumber;(System.Numerics.Complex,System.Numerics.Complex);Argument[1];ReturnValue;value;dfc-generated | | System.Numerics;IAdditionOperators;op_CheckedAddition;(TSelf,TOther);Argument[0];ReturnValue;taint;dfc-generated | | System.Numerics;IAdditionOperators;op_CheckedAddition;(TSelf,TOther);Argument[1];ReturnValue;taint;dfc-generated | +| System.Numerics;IFloatingPoint;ConvertToInteger;(TSelf);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;IFloatingPoint;ConvertToIntegerNative;(TSelf);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[1];ReturnValue;value;dfc-generated | | System.Numerics;INumber;Clamp;(TSelf,TSelf,TSelf);Argument[2];ReturnValue;value;dfc-generated | @@ -11055,17 +11969,21 @@ | System.Numerics;INumberBase;CreateChecked;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumberBase;CreateSaturating;(TOther);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;INumberBase;CreateTruncating;(TOther);Argument[0];ReturnValue;value;dfc-generated | -| System.Numerics;Plane;Normalize;(System.Numerics.Plane);Argument[0];ReturnValue;value;dfc-generated | -| System.Numerics;Plane;Plane;(System.Numerics.Vector3,System.Single);Argument[0];Argument[this].Field[System.Numerics.Plane.Normal];value;dfc-generated | +| System.Numerics;INumberBase;MultiplyAddEstimate;(TSelf,TSelf,TSelf);Argument[2];ReturnValue;taint;dfc-generated | | System.Numerics;Plane;ToString;();Argument[this].Field[System.Numerics.Plane.Normal];ReturnValue;taint;dfc-generated | | System.Numerics;Vector;Abs;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;CopySign;(System.Numerics.Vector,System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Round;(System.Numerics.Vector,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;StoreUnsafe;(System.Numerics.Vector,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Truncate;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | +| System.Numerics;Vector;Truncate;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;WithElement;(System.Numerics.Vector,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Numerics;Vector;op_UnaryPlus;(System.Numerics.Vector);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicAssembly;(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicAssembly;(System.Reflection.AssemblyName,System.Reflection.Emit.AssemblyBuilderAccess,System.Collections.Generic.IEnumerable);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];Argument[this];taint;df-generated | -| System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;AssemblyBuilder;GetDynamicModuleCore;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ConstructorBuilder;DefineParameterCore;(System.Int32,System.Reflection.ParameterAttributes,System.String);Argument[2];ReturnValue;taint;df-generated | @@ -11118,6 +12036,7 @@ | System.Reflection.Emit;GenericTypeParameterBuilder;SetInterfaceConstraintsCore;(System.Type[]);Argument[0].Element;Argument[this];taint;df-generated | | System.Reflection.Emit;ILGenerator;DeclareLocal;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ILGenerator;DeclareLocal;(System.Type,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;LocalBuilder;SetLocalSymInfoCore;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;LocalBuilder;get_LocalType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;DefineGenericParametersCore;(System.String[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;MethodBuilder;DefineGenericParametersCore;(System.String[]);Argument[this];ReturnValue;taint;df-generated | @@ -11129,6 +12048,12 @@ | System.Reflection.Emit;MethodBuilder;SetSignatureCore;(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[2].Element;Argument[this];taint;df-generated | | System.Reflection.Emit;MethodBuilder;SetSignatureCore;(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[4].Element;Argument[this];taint;df-generated | | System.Reflection.Emit;MethodBuilder;SetSignatureCore;(System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[5].Element;Argument[this];taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocument;(System.String,System.Guid,System.Guid,System.Guid);Argument[1];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocumentCore;(System.String,System.Guid);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;DefineDocumentCore;(System.String,System.Guid);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnum;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnum;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;DefineEnumCore;(System.String,System.Reflection.TypeAttributes,System.Type);Argument[0];ReturnValue;taint;df-generated | @@ -11153,14 +12078,20 @@ | System.Reflection.Emit;ModuleBuilder;DefineTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[4].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;GetArrayMethod;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[4].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;ModuleBuilder;GetArrayMethodCore;(System.Type,System.String,System.Reflection.CallingConventions,System.Type,System.Type[]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;OpCode;ToString;();Argument[this].Property[System.Reflection.Emit.OpCode.Name];ReturnValue;value;dfc-generated | | System.Reflection.Emit;ParameterBuilder;SetConstant;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;SetCustomAttribute;(System.Reflection.ConstructorInfo,System.Byte[]);Argument[1].Element;Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;SetCustomAttribute;(System.Reflection.Emit.CustomAttributeBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;SetCustomAttributeCore;(System.Reflection.ConstructorInfo,System.ReadOnlySpan);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Emit;ParameterBuilder;get_Name;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;DefineDynamicModuleCore;(System.String);Argument[0];ReturnValue.SyntheticField[System.Reflection.Emit.ModuleBuilderImpl._name];value;dfc-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;GenerateMetadata;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;GenerateMetadata;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.MetadataBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;PersistedAssemblyBuilder;PersistedAssemblyBuilder;(System.Reflection.AssemblyName,System.Reflection.Assembly,System.Collections.Generic.IEnumerable);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Emit;PropertyBuilder;AddOtherMethodCore;(System.Reflection.Emit.MethodBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;PropertyBuilder;SetConstantCore;(System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Emit;PropertyBuilder;SetGetMethodCore;(System.Reflection.Emit.MethodBuilder);Argument[0];Argument[this];taint;df-generated | @@ -11191,8 +12122,14 @@ | System.Reflection.Emit;TypeBuilder;DefineMethodCore;(System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefineNestedTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefineNestedTypeCore;(System.String,System.Reflection.TypeAttributes,System.Type,System.Type[],System.Reflection.Emit.PackingSize,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[2];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[6].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[7].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[9].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[10].Element;ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefinePInvokeMethodCore;(System.String,System.String,System.String,System.Reflection.MethodAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][],System.Runtime.InteropServices.CallingConvention,System.Runtime.InteropServices.CharSet);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[4].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[5].Element;ReturnValue;taint;df-generated | @@ -11200,22 +12137,39 @@ | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[7].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[8].Element;ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;DefinePropertyCore;(System.String,System.Reflection.PropertyAttributes,System.Reflection.CallingConventions,System.Type,System.Type[],System.Type[],System.Type[],System.Type[][],System.Type[][]);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Emit;TypeBuilder;DefineTypeInitializerCore;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetConstructor;(System.Type,System.Reflection.ConstructorInfo);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetField;(System.Type,System.Reflection.FieldInfo);Argument[1];ReturnValue;taint;df-generated | | System.Reflection.Emit;TypeBuilder;GetMethod;(System.Type,System.Reflection.MethodInfo);Argument[1];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;ArrayShapeEncoder;ArrayShapeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ArrayShapeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;BlobEncoder;BlobEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.BlobEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;BlobEncoder;CustomAttributeSignature;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeArrayTypeEncoder;CustomAttributeArrayTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeArrayTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeElementTypeEncoder;CustomAttributeElementTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeElementTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomAttributeNamedArgumentsEncoder;CustomAttributeNamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomAttributeNamedArgumentsEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;AddModifier;(System.Reflection.Metadata.EntityHandle,System.Boolean);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;CustomModifiersEncoder;CustomModifiersEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.CustomModifiersEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;EditAndContinueLogEntry;EditAndContinueLogEntry;(System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.Ecma335.EditAndContinueOperation);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.EditAndContinueLogEntry.Handle];value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;Add;(System.Reflection.Metadata.ExceptionRegionKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddCatch;(System.Int32,System.Int32,System.Int32,System.Int32,System.Reflection.Metadata.EntityHandle);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFault;(System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFilter;(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;ExceptionRegionEncoder;AddFinally;(System.Int32,System.Int32,System.Int32,System.Int32);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;FieldTypeEncoder;FieldTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.FieldTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;FixedArgumentsEncoder;FixedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.FixedArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;GenericTypeArgumentsEncoder;GenericTypeArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.GenericTypeArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;InstructionEncoder;InstructionEncoder;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.CodeBuilder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;InstructionEncoder;InstructionEncoder;(System.Reflection.Metadata.BlobBuilder,System.Reflection.Metadata.Ecma335.ControlFlowBuilder);Argument[1];Argument[this].Property[System.Reflection.Metadata.Ecma335.InstructionEncoder.ControlFlowBuilder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;InstructionEncoder;Switch;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;LiteralEncoder;LiteralEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedScalar;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedVector;(System.Action,System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;LiteralEncoder;TaggedVector;(System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;LiteralsEncoder;LiteralsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LiteralsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;LocalVariableTypeEncoder;LocalVariableTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariableTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;LocalVariablesEncoder;LocalVariablesEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.LocalVariablesEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[1];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddAssembly;(System.Reflection.Metadata.StringHandle,System.Version,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.BlobHandle,System.Reflection.AssemblyFlags,System.Reflection.AssemblyHashAlgorithm);Argument[2];Argument[this];taint;df-generated | @@ -11224,18 +12178,35 @@ | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[2];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[3];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;MetadataBuilder;AddModule;(System.Int32,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle,System.Reflection.Metadata.GuidHandle);Argument[4];Argument[this];taint;df-generated | -| System.Reflection.Metadata.Ecma335;MetadataRootBuilder;MetadataRootBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveGuid;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataBuilder;ReserveUserString;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MetadataRootBuilder;MetadataRootBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.String,System.Boolean);Argument[1];Argument[this].Property[System.Reflection.Metadata.Ecma335.MetadataRootBuilder.MetadataVersion];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MetadataRootBuilder;get_Sizes;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes);Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;AddMethodBody;(System.Int32,System.Int32,System.Int32,System.Boolean,System.Reflection.Metadata.StandaloneSignatureHandle,System.Reflection.Metadata.Ecma335.MethodBodyAttributes,System.Boolean);Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];ReturnValue.Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder+MethodBody.ExceptionRegions].Property[System.Reflection.Metadata.Ecma335.ExceptionRegionEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodBodyStreamEncoder;MethodBodyStreamEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodBodyStreamEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;MethodSignatureEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.MethodSignatureEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;MethodSignatureEncoder;Parameters;(System.Int32,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;NameEncoder;NameEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NameEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;NamedArgumentTypeEncoder;NamedArgumentTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentTypeEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;AddArgument;(System.Boolean,System.Action,System.Action,System.Action);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;NamedArgumentsEncoder;NamedArgumentsEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.NamedArgumentsEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ParameterTypeEncoder;ParameterTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ParameterTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ParametersEncoder;ParametersEncoder;(System.Reflection.Metadata.BlobBuilder,System.Boolean);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ParametersEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;PermissionSetEncoder;AddPermission;(System.String,System.Collections.Immutable.ImmutableArray);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;PermissionSetEncoder;AddPermission;(System.String,System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PermissionSetEncoder;PermissionSetEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.PermissionSetEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[3].Parameter[delegate-self];value;dfc-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[this].Property[System.Reflection.Metadata.Ecma335.PortablePdbBuilder.IdProvider];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;PortablePdbBuilder;PortablePdbBuilder;(System.Reflection.Metadata.Ecma335.MetadataBuilder,System.Collections.Immutable.ImmutableArray,System.Reflection.Metadata.MethodDefinitionHandle,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[3];Argument[this].Property[System.Reflection.Metadata.Ecma335.PortablePdbBuilder.IdProvider];value;hq-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.Metadata.Ecma335;PortablePdbBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata.Ecma335;ReturnTypeEncoder;ReturnTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ReturnTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;ScalarEncoder;ScalarEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.ScalarEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeFieldSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeLocalSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureDecoder;DecodeMethodSignature;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;value;dfc-generated | @@ -11253,11 +12224,18 @@ | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Array;(System.Reflection.Metadata.Ecma335.SignatureTypeEncoder,System.Reflection.Metadata.Ecma335.ArrayShapeEncoder);Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;Pointer;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SZArray;();Argument[this];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata.Ecma335;SignatureTypeEncoder;SignatureTypeEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.SignatureTypeEncoder.Builder];value;dfc-generated | +| System.Reflection.Metadata.Ecma335;VectorEncoder;VectorEncoder;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this].Property[System.Reflection.Metadata.Ecma335.VectorEncoder.Builder];value;dfc-generated | | System.Reflection.Metadata;AssemblyDefinition;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyDefinition;GetDeclarativeSecurityAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyFile;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyFileHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyFileHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;AssemblyFileHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyFileHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[0];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Name];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[1];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.Version];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[2];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.CultureName];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;AssemblyNameInfo;(System.String,System.Version,System.String,System.Reflection.AssemblyNameFlags,System.Collections.Immutable.ImmutableArray);Argument[4];Argument[this].Property[System.Reflection.Metadata.AssemblyNameInfo.PublicKeyOrToken];value;dfc-generated | +| System.Reflection.Metadata;AssemblyNameInfo;get_FullName;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyReference;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;AssemblyReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyReferenceHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;AssemblyReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.AssemblyReferenceHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | @@ -11287,6 +12265,13 @@ | System.Reflection.Metadata;CustomAttributeHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomAttributeHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;CustomAttributeHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomAttributeHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;CustomAttributeHandleCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Name];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[2];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Type];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeNamedArgument;CustomAttributeNamedArgument;(System.String,System.Reflection.Metadata.CustomAttributeNamedArgumentKind,TType,System.Object);Argument[3];Argument[this].Property[System.Reflection.Metadata.CustomAttributeNamedArgument`1.Value];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(TType,System.Object);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Type];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(TType,System.Object);Argument[1];Argument[this].Property[System.Reflection.Metadata.CustomAttributeTypedArgument`1.Value];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeValue;CustomAttributeValue;(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>);Argument[0];Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.FixedArguments];value;dfc-generated | +| System.Reflection.Metadata;CustomAttributeValue;CustomAttributeValue;(System.Collections.Immutable.ImmutableArray>,System.Collections.Immutable.ImmutableArray>);Argument[1];Argument[this].Property[System.Reflection.Metadata.CustomAttributeValue`1.NamedArguments];value;dfc-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomDebugInformationHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.CustomDebugInformationHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;CustomDebugInformationHandleCollection;GetEnumerator;();Argument[this];ReturnValue;taint;df-generated | @@ -11405,8 +12390,9 @@ | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbImage;(System.Byte*,System.Int32);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbImage;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Reflection.Metadata;MetadataReaderProvider;FromPortablePdbStream;(System.IO.Stream,System.Reflection.Metadata.MetadataStreamOptions,System.Int32);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Metadata;MetadataReaderProvider;GetMetadataReader;(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;MetadataReaderProvider;GetMetadataReader;(System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[1];ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder];value;dfc-generated | | System.Reflection.Metadata;MetadataStringDecoder;GetString;(System.Byte*,System.Int32);Argument[0].Element;ReturnValue;taint;dfc-generated | +| System.Reflection.Metadata;MetadataStringDecoder;MetadataStringDecoder;(System.Text.Encoding);Argument[0];Argument[this].Property[System.Reflection.Metadata.MetadataStringDecoder.Encoding];value;dfc-generated | | System.Reflection.Metadata;MethodBodyBlock;Create;(System.Reflection.Metadata.BlobReader);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodBodyBlock;GetILReader;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodBodyBlock;get_ExceptionRegions;();Argument[this];ReturnValue;taint;df-generated | @@ -11426,6 +12412,9 @@ | System.Reflection.Metadata;MethodImplementationHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.MethodImplementationHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;MethodImport;get_Module;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;MethodImport;get_Name;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[0];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.Header];value;dfc-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[1];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ReturnType];value;dfc-generated | +| System.Reflection.Metadata;MethodSignature;MethodSignature;(System.Reflection.Metadata.SignatureHeader,TType,System.Int32,System.Int32,System.Collections.Immutable.ImmutableArray);Argument[4];Argument[this].Property[System.Reflection.Metadata.MethodSignature`1.ParameterTypes];value;dfc-generated | | System.Reflection.Metadata;MethodSpecification;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ModuleDefinition;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ModuleReference;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | @@ -11436,7 +12425,7 @@ | System.Reflection.Metadata;NamespaceDefinition;get_TypeDefinitions;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader);Argument[0];ReturnValue;taint;df-generated | | System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions);Argument[0];ReturnValue;taint;df-generated | -| System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;PEReaderExtensions;GetMetadataReader;(System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReaderOptions,System.Reflection.Metadata.MetadataStringDecoder);Argument[2];ReturnValue.Property[System.Reflection.Metadata.MetadataReader.UTF8Decoder];value;dfc-generated | | System.Reflection.Metadata;Parameter;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;ParameterHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.ParameterHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;ParameterHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.ParameterHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | @@ -11458,6 +12447,26 @@ | System.Reflection.Metadata;TypeDefinition;GetProperties;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;TypeDefinitionHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeDefinitionHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;TypeDefinitionHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeDefinitionHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;GetElementType;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;GetGenericArguments;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._genericArguments];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;GetGenericTypeDefinition;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeArrayTypeName;(System.Int32);Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeArrayTypeName;(System.Int32);Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeByRefTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeByRefTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[0];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._genericArguments];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeGenericTypeName;(System.Collections.Immutable.ImmutableArray);Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakePointerTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakePointerTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeSZArrayTypeName;();Argument[this].Property[System.Reflection.Metadata.TypeName.AssemblyName];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;MakeSZArrayTypeName;();Argument[this];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._elementOrGenericType];value;dfc-generated | +| System.Reflection.Metadata;TypeName;WithAssemblyName;(System.Reflection.Metadata.AssemblyNameInfo);Argument[0];ReturnValue.Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;WithAssemblyName;(System.Reflection.Metadata.AssemblyNameInfo);Argument[0];ReturnValue.SyntheticField[System.Reflection.Metadata.TypeName._declaringType].Property[System.Reflection.Metadata.TypeName.AssemblyName];value;dfc-generated | +| System.Reflection.Metadata;TypeName;get_DeclaringType;();Argument[this].SyntheticField[System.Reflection.Metadata.TypeName._declaringType];ReturnValue;value;dfc-generated | +| System.Reflection.Metadata;TypeName;get_FullName;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.Metadata;TypeName;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.Metadata;TypeReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeReferenceHandleCollection+Enumerator.Current];ReturnValue;value;df-generated | | System.Reflection.Metadata;TypeReferenceHandleCollection+Enumerator;get_Current;();Argument[this].Property[System.Reflection.Metadata.TypeReferenceHandleCollection+Enumerator.Current];ReturnValue;value;dfc-generated | | System.Reflection.Metadata;TypeSpecification;GetCustomAttributes;();Argument[this];ReturnValue;taint;df-generated | @@ -11470,7 +12479,12 @@ | System.Reflection.PortableExecutable;PEBuilder+Section;Section;(System.String,System.Reflection.PortableExecutable.SectionCharacteristics);Argument[0];Argument[this].Field[System.Reflection.PortableExecutable.PEBuilder+Section.Name];value;dfc-generated | | System.Reflection.PortableExecutable;PEBuilder;GetDirectories;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;GetSections;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[0];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.Header];value;dfc-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[0];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.Header];value;hq-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.IdProvider];value;dfc-generated | +| System.Reflection.PortableExecutable;PEBuilder;PEBuilder;(System.Reflection.PortableExecutable.PEHeaderBuilder,System.Func,System.Reflection.Metadata.BlobContentId>);Argument[1];Argument[this].Property[System.Reflection.PortableExecutable.PEBuilder.IdProvider];value;hq-generated | | System.Reflection.PortableExecutable;PEBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[0];Argument[this];taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;Serialize;(System.Reflection.Metadata.BlobBuilder);Argument[this];ReturnValue;taint;df-generated | | System.Reflection.PortableExecutable;PEBuilder;SerializeSection;(System.String,System.Reflection.PortableExecutable.SectionLocation);Argument[this];ReturnValue;taint;df-generated | @@ -11534,17 +12548,23 @@ | System.Reflection;Binder;ReorderArgumentArray;(System.Object[],System.Object);Argument[0];ReturnValue;value;dfc-generated | | System.Reflection;Binder;SelectMethod;(System.Reflection.BindingFlags,System.Reflection.MethodBase[],System.Type[],System.Reflection.ParameterModifier[]);Argument[1].Element;ReturnValue;value;dfc-generated | | System.Reflection;Binder;SelectProperty;(System.Reflection.BindingFlags,System.Reflection.PropertyInfo[],System.Type,System.Type[],System.Reflection.ParameterModifier[]);Argument[1].Element;ReturnValue;value;dfc-generated | +| System.Reflection;ConstructorInvoker;Invoke;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object);Argument[0];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[2];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[0];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[1];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[2];Argument[this];taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[3];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Object,System.Object,System.Object,System.Object);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ConstructorInvoker;Invoke;(System.Span);Argument[0];Argument[this];taint;df-generated | +| System.Reflection;ConstructorInvoker;Invoke;(System.Span);Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_Constructor;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_ConstructorArguments;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeData;get_NamedArguments;();Argument[this];ReturnValue;taint;df-generated | @@ -11557,8 +12577,7 @@ | System.Reflection;CustomAttributeNamedArgument;get_TypedValue;();Argument[this].SyntheticField[System.Reflection.CustomAttributeNamedArgument._value];ReturnValue;value;dfc-generated | | System.Reflection;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(System.Object);Argument[0];Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];value;dfc-generated | | System.Reflection;CustomAttributeTypedArgument;CustomAttributeTypedArgument;(System.Type,System.Object);Argument[1];Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];value;dfc-generated | -| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this].Property[System.Reflection.CustomAttributeTypedArgument.Value];ReturnValue;taint;dfc-generated | -| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];ReturnValue;taint;dfc-generated | +| System.Reflection;CustomAttributeTypedArgument;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;CustomAttributeTypedArgument;get_Value;();Argument[this].SyntheticField[System.Reflection.CustomAttributeTypedArgument._value];ReturnValue;value;dfc-generated | | System.Reflection;EventInfo;GetAddMethod;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;EventInfo;GetAddMethod;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | @@ -11575,6 +12594,8 @@ | System.Reflection;EventInfoExtensions;GetRemoveMethod;(System.Reflection.EventInfo,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;ExceptionHandlingClause;get_CatchType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;GetModifiedFieldType;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection;FieldInfo;GetOptionalCustomModifiers;();Argument[this];ReturnValue;taint;df-generated | +| System.Reflection;FieldInfo;GetRequiredCustomModifiers;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;get_FieldHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;FieldInfo;get_FieldType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;IReflect;GetField;(System.String,System.Reflection.BindingFlags);Argument[this];ReturnValue;taint;df-generated | @@ -11659,7 +12680,7 @@ | System.Reflection;Module;get_ModuleVersionId;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;Module;get_Name;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;Module;get_ScopeName;();Argument[this];ReturnValue;taint;df-generated | -| System.Reflection;ModuleExtensions;GetModuleVersionId;(System.Reflection.Module);Argument[0].Property[System.Reflection.Module.ModuleVersionId];ReturnValue;value;dfc-generated | +| System.Reflection;ModuleExtensions;GetModuleVersionId;(System.Reflection.Module);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;ModuleResolveEventHandler;BeginInvoke;(System.Object,System.ResolveEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Reflection;ParameterInfo;GetModifiedParameterType;();Argument[this];ReturnValue;taint;df-generated | | System.Reflection;ParameterInfo;ToString;();Argument[this];ReturnValue;taint;df-generated | @@ -11696,6 +12717,7 @@ | System.Reflection;ReflectionTypeLoadException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Reflection;RuntimeReflectionExtensions;GetMethodInfo;(System.Delegate);Argument[0].Property[System.Delegate.Method];ReturnValue;value;dfc-generated | | System.Reflection;RuntimeReflectionExtensions;GetRuntimeBaseDefinition;(System.Reflection.MethodInfo);Argument[0];ReturnValue;taint;df-generated | +| System.Reflection;RuntimeReflectionExtensions;GetRuntimeInterfaceMap;(System.Reflection.TypeInfo,System.Type);Argument[0];ReturnValue;taint;df-generated | | System.Reflection;TypeFilter;BeginInvoke;(System.Type,System.Object,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | | System.Reflection;TypeInfo;AsType;();Argument[this];ReturnValue;value;dfc-generated | | System.Reflection;TypeInfo;GetDeclaredEvent;(System.String);Argument[this];ReturnValue;taint;df-generated | @@ -11904,6 +12926,9 @@ | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;FromManaged;(System.ReadOnlySpan,System.Span);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray];value;dfc-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;GetManagedValuesSource;();Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2+ManagedToUnmanagedIn._managedArray];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedIn;GetUnmanagedValuesDestination;();Argument[this];ReturnValue;taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;FromUnmanaged;(TUnmanagedElement*);Argument[0];Argument[this];taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;GetManagedValuesDestination;(System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+ManagedToUnmanagedOut;ToManaged;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;ReadOnlySpanMarshaller+UnmanagedToManagedOut;GetManagedValuesSource;(System.ReadOnlySpan);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;SafeHandleMarshaller+ManagedToUnmanagedIn;FromManaged;(T);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle];value;dfc-generated | | System.Runtime.InteropServices.Marshalling;SafeHandleMarshaller+ManagedToUnmanagedIn;ToUnmanaged;();Argument[this].SyntheticField[System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1+ManagedToUnmanagedIn._handle].Field[System.Runtime.InteropServices.SafeHandle.handle];ReturnValue;value;dfc-generated | @@ -11924,6 +12949,8 @@ | System.Runtime.InteropServices.Marshalling;Utf8StringMarshaller+ManagedToUnmanagedIn;ToUnmanaged;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;Deconstruct;(System.Void*,System.Void**);Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;Deconstruct;(System.Void*,System.Void**);Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;VirtualMethodTableInfo;(System.Void*,System.Void**);Argument[0];Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.ThisPointer];value;dfc-generated | +| System.Runtime.InteropServices.Marshalling;VirtualMethodTableInfo;VirtualMethodTableInfo;(System.Void*,System.Void**);Argument[1];Argument[this].Property[System.Runtime.InteropServices.Marshalling.VirtualMethodTableInfo.VirtualMethodTable];value;dfc-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal+UnhandledExceptionPropagationHandler;BeginInvoke;(System.Exception,System.RuntimeMethodHandle,System.IntPtr,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices.ObjectiveC;ObjectiveCMarshal;Initialize;(System.Runtime.InteropServices.ObjectiveC.ObjectiveCMarshal+UnhandledExceptionPropagationHandler);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices;ArrayWithOffset;ArrayWithOffset;(System.Object,System.Int32);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.ArrayWithOffset.m_array];value;dfc-generated | @@ -11932,12 +12959,14 @@ | System.Runtime.InteropServices;CLong;get_Value;();Argument[this].SyntheticField[System.Runtime.InteropServices.CLong._value];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;CULong;CULong;(System.UIntPtr);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value];value;dfc-generated | | System.Runtime.InteropServices;CULong;get_Value;();Argument[this].SyntheticField[System.Runtime.InteropServices.CULong._value];ReturnValue;value;dfc-generated | -| System.Runtime.InteropServices;CollectionsMarshal;AsSpan;(System.Collections.Generic.List);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Runtime.InteropServices;ComAliasNameAttribute;ComAliasNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.InteropServices.ComAliasNameAttribute.Value];value;dfc-generated | +| System.Runtime.InteropServices;ComWrappers;CreateObject;(System.IntPtr,System.Runtime.InteropServices.CreateObjectFlags);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.InteropServices;CriticalHandle;CriticalHandle;(System.IntPtr);Argument[0];Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;CriticalHandle;SetHandle;(System.IntPtr);Argument[0];Argument[this].Field[System.Runtime.InteropServices.CriticalHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;DllImportResolver;BeginInvoke;(System.String,System.Reflection.Assembly,System.Nullable,System.AsyncCallback,System.Object);Argument[3];Argument[3].Parameter[delegate-self];value;hq-generated | | System.Runtime.InteropServices;GCHandle;FromIntPtr;(System.IntPtr);Argument[0];ReturnValue.SyntheticField[System.Runtime.InteropServices.GCHandle._handle];value;dfc-generated | | System.Runtime.InteropServices;GCHandle;ToIntPtr;(System.Runtime.InteropServices.GCHandle);Argument[0].SyntheticField[System.Runtime.InteropServices.GCHandle._handle];ReturnValue;value;dfc-generated | +| System.Runtime.InteropServices;HandleCollector;HandleCollector;(System.String,System.Int32,System.Int32);Argument[0];Argument[this].Property[System.Runtime.InteropServices.HandleCollector.Name];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;HandleRef;(System.Object,System.IntPtr);Argument[0];Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;HandleRef;(System.Object,System.IntPtr);Argument[1];Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._handle];value;dfc-generated | | System.Runtime.InteropServices;HandleRef;ToIntPtr;(System.Runtime.InteropServices.HandleRef);Argument[0].SyntheticField[System.Runtime.InteropServices.HandleRef._handle];ReturnValue;value;dfc-generated | @@ -11945,6 +12974,8 @@ | System.Runtime.InteropServices;HandleRef;get_Wrapper;();Argument[this].SyntheticField[System.Runtime.InteropServices.HandleRef._wrapper];ReturnValue;value;dfc-generated | | System.Runtime.InteropServices;ImmutableCollectionsMarshal;AsArray;(System.Collections.Immutable.ImmutableArray);Argument[0].Element;ReturnValue;taint;df-generated | | System.Runtime.InteropServices;ImmutableCollectionsMarshal;AsImmutableArray;(T[]);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Runtime.InteropServices;ImportedFromTypeLibAttribute;ImportedFromTypeLibAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.InteropServices.ImportedFromTypeLibAttribute.Value];value;dfc-generated | +| System.Runtime.InteropServices;ManagedToNativeComInteropStubAttribute;ManagedToNativeComInteropStubAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.MethodName];value;dfc-generated | | System.Runtime.InteropServices;Marshal;InitHandle;(System.Runtime.InteropServices.SafeHandle,System.IntPtr);Argument[1];Argument[0].Field[System.Runtime.InteropServices.SafeHandle.handle];value;dfc-generated | | System.Runtime.InteropServices;MemoryMarshal;CreateFromPinnedArray;(T[],System.Int32,System.Int32);Argument[0].Element;ReturnValue;taint;df-generated | | System.Runtime.InteropServices;MemoryMarshal;CreateSpan;(T,System.Int32);Argument[0];ReturnValue;value;dfc-generated | @@ -11967,35 +12998,80 @@ | System.Runtime.Intrinsics;Vector64;Abs;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Ceiling;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Ceiling;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;CopySign;(System.Runtime.Intrinsics.Vector64,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Floor;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;Floor;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Round;(System.Runtime.Intrinsics.Vector64,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;StoreUnsafe;(System.Runtime.Intrinsics.Vector64,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Truncate;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector64;Truncate;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;WithElement;(System.Runtime.Intrinsics.Vector64,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector64;op_UnaryPlus;(System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Abs;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Ceiling;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;CopySign;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Floor;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;GetLower;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector128;GetUpper;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Round;(System.Runtime.Intrinsics.Vector128,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;StoreUnsafe;(System.Runtime.Intrinsics.Vector128,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Truncate;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector128;Truncate;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithElement;(System.Runtime.Intrinsics.Vector128,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithLower;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;WithUpper;(System.Runtime.Intrinsics.Vector128,System.Runtime.Intrinsics.Vector64);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector128;op_UnaryPlus;(System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Abs;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Ceiling;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;CopySign;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Floor;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;GetLower;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector256;GetUpper;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Round;(System.Runtime.Intrinsics.Vector256,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;StoreUnsafe;(System.Runtime.Intrinsics.Vector256,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Truncate;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector256;Truncate;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithElement;(System.Runtime.Intrinsics.Vector256,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithLower;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;WithUpper;(System.Runtime.Intrinsics.Vector256,System.Runtime.Intrinsics.Vector128);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector256;op_UnaryPlus;(System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Abs;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Ceiling;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;CopySign;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Floor;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;GetLower;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Intrinsics;Vector512;GetUpper;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;taint;df-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Round;(System.Runtime.Intrinsics.Vector512,System.MidpointRounding);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;StoreUnsafe;(System.Runtime.Intrinsics.Vector512,T);Argument[1];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Truncate;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Intrinsics;Vector512;Truncate;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithElement;(System.Runtime.Intrinsics.Vector512,System.Int32,T);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithLower;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;WithUpper;(System.Runtime.Intrinsics.Vector512,System.Runtime.Intrinsics.Vector256);Argument[0];ReturnValue;value;dfc-generated | | System.Runtime.Intrinsics;Vector512;op_UnaryPlus;(System.Runtime.Intrinsics.Vector512);Argument[0];ReturnValue;value;dfc-generated | +| System.Runtime.Loader;AssemblyDependencyResolver;AssemblyDependencyResolver;(System.String);Argument[0];Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element;value;dfc-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveAssemblyToPath;(System.Reflection.AssemblyName);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveAssemblyToPath;(System.Reflection.AssemblyName);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyDependencyResolver;ResolveUnmanagedDllToPath;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| System.Runtime.Loader;AssemblyDependencyResolver;ResolveUnmanagedDllToPath;(System.String);Argument[this].SyntheticField[System.Runtime.Loader.AssemblyDependencyResolver._assemblyDirectorySearchPaths].Element;ReturnValue;value;dfc-generated | | System.Runtime.Loader;AssemblyLoadContext;EnterContextualReflection;();Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Loader;AssemblyLoadContext;ToString;();Argument[this].Property[System.Runtime.Loader.AssemblyLoadContext.Name];ReturnValue;taint;dfc-generated | | System.Runtime.Loader;AssemblyLoadContext;add_Resolving;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -12036,10 +13112,10 @@ | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[0];ReturnValue;taint;df-generated | | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Runtime.Serialization.Json;JsonReaderWriterFactory;CreateJsonWriter;(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean,System.String);Argument[4];ReturnValue;taint;df-generated | +| System.Runtime.Serialization;ContractNamespaceAttribute;ContractNamespaceAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.Serialization.ContractNamespaceAttribute.ContractNamespace];value;dfc-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Runtime.Serialization.DataContractSerializerSettings);Argument[1].Property[System.Runtime.Serialization.DataContractSerializerSettings.DataContractResolver];Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver];value;dfc-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable);Argument[1];Argument[this];taint;df-generated | | System.Runtime.Serialization;DataContractSerializer;DataContractSerializer;(System.Type,System.Xml.XmlDictionaryString,System.Xml.XmlDictionaryString,System.Collections.Generic.IEnumerable);Argument[2];Argument[this];taint;df-generated | -| System.Runtime.Serialization;DataContractSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean,System.Runtime.Serialization.DataContractResolver);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;DataContractSerializer;get_DataContractResolver;();Argument[this].SyntheticField[System.Runtime.Serialization.DataContractSerializer._dataContractResolver];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;DataContractSerializerExtensions;GetSerializationSurrogateProvider;(System.Runtime.Serialization.DataContractSerializer);Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;DataContractSerializerExtensions;SetSerializationSurrogateProvider;(System.Runtime.Serialization.DataContractSerializer,System.Runtime.Serialization.ISerializationSurrogateProvider);Argument[1];Argument[0].SyntheticField[System.Runtime.Serialization.DataContractSerializer._serializationSurrogateProvider];value;dfc-generated | @@ -12055,6 +13131,7 @@ | System.Runtime.Serialization;IObjectReference;GetRealObject;(System.Runtime.Serialization.StreamingContext);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;ISerializable;GetObjectData;(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext);Argument[this];Argument[0];taint;df-generated | | System.Runtime.Serialization;ISurrogateSelector;GetSurrogate;(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector);Argument[this];ReturnValue;value;dfc-generated | +| System.Runtime.Serialization;KnownTypeAttribute;KnownTypeAttribute;(System.String);Argument[0];Argument[this].Property[System.Runtime.Serialization.KnownTypeAttribute.MethodName];value;dfc-generated | | System.Runtime.Serialization;ObjectIDGenerator;GetId;(System.Object,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Runtime.Serialization;ObjectManager;GetObject;(System.Int64);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;ObjectManager;ObjectManager;(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext);Argument[0];Argument[this];taint;df-generated | @@ -12099,11 +13176,6 @@ | System.Runtime.Serialization;SurrogateSelector;GetNextSelector;();Argument[this].SyntheticField[System.Runtime.Serialization.SurrogateSelector._nextSelector];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;SurrogateSelector;GetSurrogate;(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector);Argument[this].SyntheticField[System.Runtime.Serialization.SurrogateSelector._nextSelector];ReturnValue;value;dfc-generated | | System.Runtime.Serialization;XPathQueryGenerator;CreateFromDataContractSerializer;(System.Type,System.Reflection.MemberInfo[],System.Text.StringBuilder,System.Xml.XmlNamespaceManager);Argument[2];ReturnValue;taint;dfc-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.IO.Stream);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlDictionaryReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | -| System.Runtime.Serialization;XmlObjectSerializer;ReadObject;(System.Xml.XmlReader,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Runtime.Serialization;XmlSerializableServices;WriteNodes;(System.Xml.XmlWriter,System.Xml.XmlNode[]);Argument[1].Element;Argument[0];taint;df-generated | | System.Runtime.Serialization;XsdDataContractExporter;XsdDataContractExporter;(System.Xml.Schema.XmlSchemaSet);Argument[0];Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas];value;dfc-generated | | System.Runtime.Serialization;XsdDataContractExporter;get_Schemas;();Argument[this].SyntheticField[System.Runtime.Serialization.XsdDataContractExporter._schemas];ReturnValue;value;dfc-generated | @@ -12139,13 +13211,13 @@ | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;Merge;(System.String);Argument[0];ReturnValue.Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;ServiceNameCollection;(System.Collections.ICollection);Argument[0].Element;Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | | System.Security.Authentication.ExtendedProtection;ServiceNameCollection;ServiceNameCollection;(System.Collections.ICollection);Argument[0].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;Argument[this].Property[System.Collections.ReadOnlyCollectionBase.InnerList].Element;value;dfc-generated | -| System.Security.Claims;Claim;Claim;(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this];taint;df-generated | -| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[0];Argument[this];taint;df-generated | -| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this];taint;df-generated | +| System.Security.Claims;Claim;Claim;(System.IO.BinaryReader,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this].SyntheticField[System.Security.Claims.Claim._subject];value;dfc-generated | +| System.Security.Claims;Claim;Claim;(System.Security.Claims.Claim,System.Security.Claims.ClaimsIdentity);Argument[1];Argument[this].SyntheticField[System.Security.Claims.Claim._subject];value;dfc-generated | | System.Security.Claims;Claim;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_CustomSerializationData;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_Issuer;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_OriginalIssuer;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Claims;Claim;get_Subject;();Argument[this].SyntheticField[System.Security.Claims.Claim._subject];ReturnValue;value;dfc-generated | | System.Security.Claims;Claim;get_Type;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_Value;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Claims;Claim;get_ValueType;();Argument[this];ReturnValue;taint;df-generated | @@ -12187,16 +13259,21 @@ | System.Security.Claims;ClaimsPrincipal;get_Identity;();Argument[this].SyntheticField[System.Security.Claims.ClaimsPrincipal._identities].Element;ReturnValue;value;dfc-generated | | System.Security.Claims;ClaimsPrincipal;set_ClaimsPrincipalSelector;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Security.Claims;ClaimsPrincipal;set_PrimaryIdentitySelector;(System.Func,System.Security.Claims.ClaimsIdentity>);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[3];Argument[this];taint;df-generated | -| System.Security.Cryptography.X509Certificates;PublicKey;PublicKey;(System.Security.Cryptography.Oid,System.Security.Cryptography.AsnEncodedData,System.Security.Cryptography.AsnEncodedData);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.SubjectName];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[1];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.PublicKey];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.Security.Cryptography.X509Certificates.X500DistinguishedName,System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.ECDsa,System.Security.Cryptography.HashAlgorithmName);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;CertificateRequest;CertificateRequest;(System.String,System.Security.Cryptography.RSA,System.Security.Cryptography.HashAlgorithmName,System.Security.Cryptography.RSASignaturePadding);Argument[2];Argument[this].Property[System.Security.Cryptography.X509Certificates.CertificateRequest.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography.X509Certificates;Pkcs12LoaderLimits;Pkcs12LoaderLimits;(System.Security.Cryptography.X509Certificates.Pkcs12LoaderLimits);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;PublicKey;get_Key;();Argument[this];ReturnValue;taint;df-generated | -| System.Security.Cryptography.X509Certificates;PublicKey;get_Oid;();Argument[this].SyntheticField[System.Security.Cryptography.X509Certificates.PublicKey._oid];ReturnValue;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;PublicKey;get_Oid;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;Format;(System.Boolean);Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;X500DistinguishedName;(System.Security.Cryptography.X509Certificates.X500DistinguishedName);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X500DistinguishedName;X500DistinguishedName;(System.String,System.Security.Cryptography.X509Certificates.X500DistinguishedNameFlags);Argument[0];Argument[this];taint;df-generated | @@ -12217,6 +13294,7 @@ | System.Security.Cryptography.X509Certificates;X509Certificate2;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject];ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_Extensions;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2;get_PublicKey;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2;get_RawDataMemory;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;Add;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;AddRange;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;AddRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;manual | @@ -12226,6 +13304,8 @@ | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;RemoveRange;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Element;value;dfc-generated | +| System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2Collection);Argument[0].Element;Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate2Collection;X509Certificate2Collection;(System.Security.Cryptography.X509Certificates.X509Certificate2[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | @@ -12234,8 +13314,6 @@ | System.Security.Cryptography.X509Certificates;X509Certificate2Enumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetIssuerName;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;GetName;();Argument[this];ReturnValue;taint;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertData;();Argument[this];ReturnValue;taint;df-generated | -| System.Security.Cryptography.X509Certificates;X509Certificate;GetRawCertDataString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Issuer];ReturnValue;taint;dfc-generated | | System.Security.Cryptography.X509Certificates;X509Certificate;ToString;(System.Boolean);Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Certificate.Subject];ReturnValue;taint;dfc-generated | @@ -12252,6 +13330,7 @@ | System.Security.Cryptography.X509Certificates;X509CertificateCollection;X509CertificateCollection;(System.Security.Cryptography.X509Certificates.X509Certificate[]);Argument[0].Element;Argument[this].Property[System.Collections.CollectionBase.List].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Security.Cryptography.X509Certificates;X509CertificateCollection;set_Item;(System.Int32,System.Security.Cryptography.X509Certificates.X509Certificate);Argument[1];Argument[this].Element;value;manual | +| System.Security.Cryptography.X509Certificates;X509Chain;Build;(System.Security.Cryptography.X509Certificates.X509Certificate2);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.X509Certificates;X509Chain;get_SafeHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;CopyTo;(System.Security.Cryptography.X509Certificates.X509ChainElement[],System.Int32);Argument[this].Element;Argument[0].Element;value;manual | | System.Security.Cryptography.X509Certificates;X509ChainElementCollection;GetEnumerator;();Argument[this].Element;ReturnValue.Property[System.Security.Cryptography.X509Certificates.X509ChainElementEnumerator.Current];value;manual | @@ -12280,6 +13359,7 @@ | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForECDsa;(System.Security.Cryptography.ECDsa);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForRSA;(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography.X509Certificates;X509SignatureGenerator;CreateForRSA;(System.Security.Cryptography.RSA,System.Security.Cryptography.RSASignaturePadding);Argument[1];ReturnValue;taint;df-generated | +| System.Security.Cryptography.X509Certificates;X509Store;X509Store;(System.String,System.Security.Cryptography.X509Certificates.StoreLocation);Argument[0];Argument[this].Property[System.Security.Cryptography.X509Certificates.X509Store.Name];value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectAlternativeNameExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData];Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData];value;dfc-generated | | System.Security.Cryptography.X509Certificates;X509SubjectKeyIdentifierExtension;CopyFrom;(System.Security.Cryptography.AsnEncodedData);Argument[0].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;Argument[this].SyntheticField[System.Security.Cryptography.AsnEncodedData._rawData].Element;value;dfc-generated | @@ -12350,6 +13430,7 @@ | System.Security.Cryptography.Xml;Reference;Reference;(System.IO.Stream);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.Xml;Reference;Reference;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography.Xml;ReferenceList;Item;(System.Int32);Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element;ReturnValue;value;dfc-generated | +| System.Security.Cryptography.Xml;ReferenceList;get_ItemOf;(System.Int32);Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element;ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;get_SyncRoot;();Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Property[System.Collections.ArrayList.SyncRoot];ReturnValue;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;set_ItemOf;(System.Int32,System.Security.Cryptography.Xml.EncryptedReference);Argument[1];Argument[this].Element;value;dfc-generated | | System.Security.Cryptography.Xml;ReferenceList;set_ItemOf;(System.Int32,System.Security.Cryptography.Xml.EncryptedReference);Argument[1];Argument[this].SyntheticField[System.Security.Cryptography.Xml.ReferenceList._references].Element;value;dfc-generated | @@ -12431,6 +13512,7 @@ | System.Security.Cryptography;CngKeyBlobFormat;CngKeyBlobFormat;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];value;dfc-generated | | System.Security.Cryptography;CngKeyBlobFormat;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];ReturnValue;value;dfc-generated | | System.Security.Cryptography;CngKeyBlobFormat;get_Format;();Argument[this].SyntheticField[System.Security.Cryptography.CngKeyBlobFormat._format];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[0];Argument[this].Property[System.Security.Cryptography.CngProperty.Name];value;dfc-generated | | System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[1].Element;Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element;value;dfc-generated | | System.Security.Cryptography;CngProperty;CngProperty;(System.String,System.Byte[],System.Security.Cryptography.CngPropertyOptions);Argument[1];Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value];value;dfc-generated | | System.Security.Cryptography;CngProperty;GetValue;();Argument[this].SyntheticField[System.Security.Cryptography.CngProperty._value].Element;ReturnValue.Element;value;dfc-generated | @@ -12438,13 +13520,19 @@ | System.Security.Cryptography;CngProvider;CngProvider;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];value;dfc-generated | | System.Security.Cryptography;CngProvider;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];ReturnValue;value;dfc-generated | | System.Security.Cryptography;CngProvider;get_Provider;();Argument[this].SyntheticField[System.Security.Cryptography.CngProvider._provider];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[1];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.FriendlyName];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[2];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.Description];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[3];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.UseContext];value;dfc-generated | +| System.Security.Cryptography;CngUIPolicy;CngUIPolicy;(System.Security.Cryptography.CngUIProtectionLevels,System.String,System.String,System.String,System.String);Argument[4];Argument[this].Property[System.Security.Cryptography.CngUIPolicy.CreationTitle];value;dfc-generated | | System.Security.Cryptography;CryptoStream;CryptoStream;(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;CryptoStream;CryptoStream;(System.IO.Stream,System.Security.Cryptography.ICryptoTransform,System.Security.Cryptography.CryptoStreamMode,System.Boolean);Argument[1];Argument[this];taint;df-generated | | System.Security.Cryptography;DSASignatureDeformatter;DSASignatureDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;DSASignatureFormatter;DSASignatureFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;ECDiffieHellman;get_PublicKey;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;ECDiffieHellmanOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;ECDiffieHellmanPublicKey;ECDiffieHellmanPublicKey;(System.Byte[]);Argument[0].Element;Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element;value;dfc-generated | | System.Security.Cryptography;ECDiffieHellmanPublicKey;ToByteArray;();Argument[this].SyntheticField[System.Security.Cryptography.ECDiffieHellmanPublicKey._keyBlob].Element;ReturnValue.Element;value;dfc-generated | +| System.Security.Cryptography;ECDsaOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0].Element;Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue].Element;value;dfc-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0];Argument[this].Field[System.Security.Cryptography.KeyedHashAlgorithm.KeyValue];value;dfc-generated | | System.Security.Cryptography;HMACMD5;HMACMD5;(System.Byte[]);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.HMACMD5._hMacCommon].SyntheticField[System.Security.Cryptography.HMACCommon.ActualKey];value;dfc-generated | @@ -12485,6 +13573,7 @@ | System.Security.Cryptography;HashAlgorithmName;HashAlgorithmName;(System.String);Argument[0];Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];value;dfc-generated | | System.Security.Cryptography;HashAlgorithmName;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];ReturnValue;value;dfc-generated | | System.Security.Cryptography;HashAlgorithmName;get_Name;();Argument[this].SyntheticField[System.Security.Cryptography.HashAlgorithmName._name];ReturnValue;value;dfc-generated | +| System.Security.Cryptography;IncrementalHash;Clone;();Argument[this].SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];value;dfc-generated | | System.Security.Cryptography;IncrementalHash;CreateHMAC;(System.Security.Cryptography.HashAlgorithmName,System.Byte[]);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;IncrementalHash;CreateHMAC;(System.Security.Cryptography.HashAlgorithmName,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;IncrementalHash;CreateHash;(System.Security.Cryptography.HashAlgorithmName);Argument[0];ReturnValue.SyntheticField[System.Security.Cryptography.IncrementalHash._algorithmName];value;dfc-generated | @@ -12508,17 +13597,21 @@ | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[1].Element;Argument[this];taint;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[2];Argument[this];taint;df-generated | | System.Security.Cryptography;PasswordDeriveBytes;PasswordDeriveBytes;(System.Byte[],System.Byte[],System.String,System.Int32,System.Security.Cryptography.CspParameters);Argument[4];Argument[this];taint;df-generated | +| System.Security.Cryptography;PbeParameters;PbeParameters;(System.Security.Cryptography.PbeEncryptionAlgorithm,System.Security.Cryptography.HashAlgorithmName,System.Int32);Argument[1];Argument[this].Property[System.Security.Cryptography.PbeParameters.HashAlgorithm];value;dfc-generated | | System.Security.Cryptography;RSAEncryptionPadding;CreateOaep;(System.Security.Cryptography.HashAlgorithmName);Argument[0];ReturnValue.SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm];value;dfc-generated | | System.Security.Cryptography;RSAEncryptionPadding;ToString;();Argument[this].SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm].Property[System.Security.Cryptography.HashAlgorithmName.Name];ReturnValue;taint;dfc-generated | | System.Security.Cryptography;RSAEncryptionPadding;get_OaepHashAlgorithm;();Argument[this].SyntheticField[System.Security.Cryptography.RSAEncryptionPadding._oaepHashAlgorithm];ReturnValue;value;dfc-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeDeformatter;RSAOAEPKeyExchangeDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAOAEPKeyExchangeFormatter;RSAOAEPKeyExchangeFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | +| System.Security.Cryptography;RSAOpenSsl;DuplicateKeyHandle;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;RSAPKCS1KeyExchangeDeformatter;RSAPKCS1KeyExchangeDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1KeyExchangeFormatter;RSAPKCS1KeyExchangeFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1SignatureDeformatter;RSAPKCS1SignatureDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | | System.Security.Cryptography;RSAPKCS1SignatureFormatter;RSAPKCS1SignatureFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];Argument[this];taint;df-generated | -| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.Byte[],System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | -| System.Security.Cryptography;SP800108HmacCounterKdf;SP800108HmacCounterKdf;(System.ReadOnlySpan,System.Security.Cryptography.HashAlgorithmName);Argument[1];Argument[this];taint;df-generated | +| System.Security.Cryptography;Rfc2898DeriveBytes;Rfc2898DeriveBytes;(System.String,System.Int32,System.Int32,System.Security.Cryptography.HashAlgorithmName);Argument[3];Argument[this].Property[System.Security.Cryptography.Rfc2898DeriveBytes.HashAlgorithm];value;dfc-generated | +| System.Security.Cryptography;SafeEvpPKeyHandle;DuplicateHandle;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;Shake128;Clone;();Argument[this];ReturnValue;taint;df-generated | +| System.Security.Cryptography;Shake256;Clone;();Argument[this];ReturnValue;taint;df-generated | | System.Security.Cryptography;SignatureDescription;CreateDeformatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;SignatureDescription;CreateFormatter;(System.Security.Cryptography.AsymmetricAlgorithm);Argument[0];ReturnValue;taint;df-generated | | System.Security.Cryptography;SymmetricAlgorithm;EncryptCbc;(System.ReadOnlySpan,System.ReadOnlySpan,System.Span,System.Security.Cryptography.PaddingMode);Argument[0].Element;Argument[2].Element;value;dfc-generated | @@ -12592,8 +13685,6 @@ | System.Text.Json.Nodes;JsonArray;Add;(T);Argument[this];Argument[0];taint;df-generated | | System.Text.Json.Nodes;JsonArray;Create;(System.Text.Json.JsonElement,System.Nullable);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json.Nodes;JsonArray;GetValues;();Argument[this];ReturnValue;taint;df-generated | -| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNodeOptions,System.Text.Json.Nodes.JsonNode[]);Argument[this];Argument[1].Element;taint;df-generated | -| System.Text.Json.Nodes;JsonArray;JsonArray;(System.Text.Json.Nodes.JsonNode[]);Argument[this];Argument[0].Element;taint;df-generated | | System.Text.Json.Nodes;JsonNode;AsArray;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json.Nodes;JsonNode;AsObject;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json.Nodes;JsonNode;AsValue;();Argument[this];ReturnValue;value;dfc-generated | @@ -12605,10 +13696,9 @@ | System.Text.Json.Nodes;JsonNode;get_Options;();Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Nodes;JsonNode;get_Root;();Argument[this];ReturnValue;value;df-generated | | System.Text.Json.Nodes;JsonObject;Create;(System.Text.Json.JsonElement,System.Nullable);Argument[0];ReturnValue;taint;df-generated | -| System.Text.Json.Nodes;JsonObject;JsonObject;(System.Collections.Generic.IEnumerable>,System.Nullable);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key];value;dfc-generated | -| System.Text.Json.Nodes;JsonObject;JsonObject;(System.Collections.Generic.IEnumerable>,System.Nullable);Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value];value;dfc-generated | -| System.Text.Json.Nodes;JsonObject;TryGetPropertyValue;(System.String,System.Text.Json.Nodes.JsonNode);Argument[this];ReturnValue;taint;df-generated | -| System.Text.Json.Nodes;JsonObject;TryGetValue;(System.String,System.Text.Json.Nodes.JsonNode);Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json.Nodes;JsonObject;Insert;(System.Int32,System.String,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[2];taint;df-generated | +| System.Text.Json.Nodes;JsonObject;SetAt;(System.Int32,System.String,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[2];taint;df-generated | +| System.Text.Json.Nodes;JsonObject;SetAt;(System.Int32,System.Text.Json.Nodes.JsonNode);Argument[this];Argument[1];taint;df-generated | | System.Text.Json.Nodes;JsonValue;Create;(T,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Nullable);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Nodes;JsonValue;TryGetValue;(T);Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Schema;JsonSchemaExporterOptions;set_TransformSchemaNode;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -12616,6 +13706,7 @@ | System.Text.Json.Serialization.Metadata;IJsonTypeInfoResolver;GetTypeInfo;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonCollectionInfoValues;set_ObjectCreator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonCollectionInfoValues;set_SerializeHandler;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonDerivedType;JsonDerivedType;(System.Type,System.String);Argument[1];Argument[this].Property[System.Text.Json.Serialization.Metadata.JsonDerivedType.TypeDiscriminator];value;dfc-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateArrayInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateConcurrentQueueInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonMetadataServices;CreateConcurrentStackInfo;(System.Text.Json.JsonSerializerOptions,System.Text.Json.Serialization.Metadata.JsonCollectionInfoValues);Argument[1];ReturnValue;taint;df-generated | @@ -12649,6 +13740,7 @@ | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_ObjectWithParameterizedConstructorCreator;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_PropertyMetadataInitializer;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonObjectInfoValues;set_SerializeHandler;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonParameterInfo;get_AttributeProvider;();Argument[this];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_Get;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_Set;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonPropertyInfo;set_ShouldSerialize;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -12665,14 +13757,19 @@ | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_OnSerialized;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_OnSerializing;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfo;set_CreateObject;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;Combine;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;Combine;(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver[]);Argument[0].Element;ReturnValue;taint;df-generated | | System.Text.Json.Serialization.Metadata;JsonTypeInfoResolver;WithAddedModifier;(System.Text.Json.Serialization.Metadata.IJsonTypeInfoResolver,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Text.Json.Serialization;JsonConverter;ReadAsPropertyName;(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions);Argument[0].Property[System.Text.Json.Utf8JsonReader.ValueSpan].Element;ReturnValue;taint;dfc-generated | | System.Text.Json.Serialization;JsonConverter;ReadAsPropertyName;(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions);Argument[0];ReturnValue;value;dfc-generated | | System.Text.Json.Serialization;JsonConverterFactory;CreateConverter;(System.Type,System.Text.Json.JsonSerializerOptions);Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json.Serialization;JsonDerivedTypeAttribute;JsonDerivedTypeAttribute;(System.Type,System.String);Argument[1];Argument[this].Property[System.Text.Json.Serialization.JsonDerivedTypeAttribute.TypeDiscriminator];value;dfc-generated | +| System.Text.Json.Serialization;JsonPropertyNameAttribute;JsonPropertyNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Text.Json.Serialization.JsonPropertyNameAttribute.Name];value;dfc-generated | | System.Text.Json.Serialization;JsonSerializerContext;JsonSerializerContext;(System.Text.Json.JsonSerializerOptions);Argument[0];Argument[this].SyntheticField[System.Text.Json.Serialization.JsonSerializerContext._options];value;dfc-generated | | System.Text.Json.Serialization;JsonSerializerContext;get_Options;();Argument[this].SyntheticField[System.Text.Json.Serialization.JsonSerializerContext._options];ReturnValue;value;dfc-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;JsonStringEnumConverter;(System.Text.Json.JsonNamingPolicy,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Text.Json.Serialization;JsonStringEnumConverter;JsonStringEnumConverter;(System.Text.Json.JsonNamingPolicy,System.Boolean);Argument[0];Argument[this];taint;df-generated | +| System.Text.Json.Serialization;JsonStringEnumMemberNameAttribute;JsonStringEnumMemberNameAttribute;(System.String);Argument[0];Argument[this].Property[System.Text.Json.Serialization.JsonStringEnumMemberNameAttribute.Name];value;dfc-generated | | System.Text.Json;JsonDocument;Parse;(System.Buffers.ReadOnlySequence,System.Text.Json.JsonDocumentOptions);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json;JsonDocument;Parse;(System.ReadOnlyMemory,System.Text.Json.JsonDocumentOptions);Argument[0];ReturnValue;taint;df-generated | | System.Text.Json;JsonDocument;ParseValue;(System.Text.Json.Utf8JsonReader);Argument[0];ReturnValue;value;dfc-generated | @@ -12686,6 +13783,8 @@ | System.Text.Json;JsonElement+ObjectEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json;JsonElement+ObjectEnumerator;get_Current;();Argument[this].Property[System.Text.Json.JsonElement+ObjectEnumerator.Current];ReturnValue;value;df-generated | | System.Text.Json;JsonElement+ObjectEnumerator;get_Current;();Argument[this].Property[System.Text.Json.JsonElement+ObjectEnumerator.Current];ReturnValue;value;dfc-generated | +| System.Text.Json;JsonElement+ObjectEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Text.Json;JsonElement+ObjectEnumerator;get_Current;();Argument[this];ReturnValue;taint;dfc-generated | | System.Text.Json;JsonElement;Clone;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.Json;JsonElement;EnumerateArray;();Argument[this];ReturnValue;taint;df-generated | | System.Text.Json;JsonElement;EnumerateObject;();Argument[this];ReturnValue;taint;df-generated | @@ -12704,7 +13803,13 @@ | System.Text.Json;JsonException;JsonException;(System.String);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.Exception);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[1];Argument[this].Property[System.Text.Json.JsonException.Path];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[2];Argument[this].Property[System.Text.Json.JsonException.LineNumber];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable);Argument[3];Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine];value;dfc-generated | | System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[0];Argument[this].SyntheticField[System.Text.Json.JsonException._message];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[1];Argument[this].Property[System.Text.Json.JsonException.Path];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[2];Argument[this].Property[System.Text.Json.JsonException.LineNumber];value;dfc-generated | +| System.Text.Json;JsonException;JsonException;(System.String,System.String,System.Nullable,System.Nullable,System.Exception);Argument[3];Argument[this].Property[System.Text.Json.JsonException.BytePositionInLine];value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].Property[System.Exception.Message];ReturnValue;value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].SyntheticField[System.Exception._message];ReturnValue;value;dfc-generated | | System.Text.Json;JsonException;get_Message;();Argument[this].SyntheticField[System.Text.Json.JsonException._message];ReturnValue;value;dfc-generated | @@ -12725,7 +13830,9 @@ | System.Text.Json;JsonSerializer;Serialize;(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;Serialize;(System.Text.Json.Utf8JsonWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;Serialize;(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | +| System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Pipelines.PipeWriter,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeAsync;(System.IO.Stream,TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo,System.Threading.CancellationToken);Argument[1];Argument[2];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(System.Object,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | | System.Text.Json;JsonSerializer;SerializeToDocument;(TValue,System.Text.Json.Serialization.Metadata.JsonTypeInfo);Argument[0];Argument[1];taint;df-generated | @@ -12761,12 +13868,14 @@ | System.Text.RegularExpressions;GroupCollection;get_Item;(System.String);Argument[this].Element;ReturnValue;value;manual | | System.Text.RegularExpressions;GroupCollection;get_Keys;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;GroupCollection;get_Values;();Argument[this];ReturnValue;taint;df-generated | -| System.Text.RegularExpressions;Match;NextMatch;();Argument[this];ReturnValue;value;dfc-generated | +| System.Text.RegularExpressions;Match;NextMatch;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Match;Synchronized;(System.Text.RegularExpressions.Match);Argument[0];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;MatchCollection;get_Item;(System.Int32);Argument[this].Element;ReturnValue;value;manual | | System.Text.RegularExpressions;MatchEvaluator;BeginInvoke;(System.Text.RegularExpressions.Match,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Text.RegularExpressions;Regex+ValueMatchEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex+ValueMatchEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex+ValueSplitEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System.Text.RegularExpressions;Regex+ValueSplitEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Count;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan);Argument[this];ReturnValue;taint;df-generated | @@ -12779,13 +13888,39 @@ | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;EnumerateMatches;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.Int32,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;EnumerateSplits;(System.ReadOnlySpan,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Escape;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex;GroupNameFromNumber;(System.Int32);Argument[this].Field[System.Text.RegularExpressions.Regex.capslist].Element;ReturnValue;value;dfc-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;IsMatch;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[0];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.Int32,System.Int32);Argument[this];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[0];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[1];ReturnValue;taint;df-generated | +| System.Text.RegularExpressions;Regex;Match;(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan);Argument[3];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String);Argument[0];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Text.RegularExpressions;Regex;Matches;(System.String,System.Int32);Argument[0];ReturnValue;taint;df-generated | @@ -12840,6 +13975,9 @@ | System.Text.RegularExpressions;RegexCompilationInfo;RegexCompilationInfo;(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan);Argument[2];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexCompilationInfo;RegexCompilationInfo;(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan);Argument[3];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexCompilationInfo;RegexCompilationInfo;(System.String,System.Text.RegularExpressions.RegexOptions,System.String,System.String,System.Boolean,System.TimeSpan);Argument[5];Argument[this];taint;df-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[0];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Input];value;dfc-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[1];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.Pattern];value;dfc-generated | +| System.Text.RegularExpressions;RegexMatchTimeoutException;RegexMatchTimeoutException;(System.String,System.String,System.TimeSpan);Argument[2];Argument[this].Property[System.Text.RegularExpressions.RegexMatchTimeoutException.MatchTimeout];value;dfc-generated | | System.Text.RegularExpressions;RegexRunner;Scan;(System.ReadOnlySpan);Argument[0];Argument[this];taint;df-generated | | System.Text.RegularExpressions;RegexRunner;Scan;(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean);Argument[1];Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runtext];value;dfc-generated | | System.Text.RegularExpressions;RegexRunner;Scan;(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean);Argument[this].Field[System.Text.RegularExpressions.RegexRunner.runmatch];ReturnValue;value;dfc-generated | @@ -13068,6 +14206,9 @@ | System.Text;StringRuneEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System.Text;StringRuneEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Channels;Channel;CreateBounded;(System.Threading.Channels.BoundedChannelOptions,System.Action);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;FixedWindowRateLimiter;(System.Threading.RateLimiting.FixedWindowRateLimiterOptions);Argument[0].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];value;dfc-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];ReturnValue;value;df-generated | +| System.Threading.RateLimiting;FixedWindowRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.FixedWindowRateLimiter._options].Property[System.Threading.RateLimiting.FixedWindowRateLimiterOptions.Window];ReturnValue;value;dfc-generated | | System.Threading.RateLimiting;MetadataName;MetadataName;(System.String);Argument[0];Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];value;dfc-generated | | System.Threading.RateLimiting;MetadataName;ToString;();Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];ReturnValue;value;dfc-generated | | System.Threading.RateLimiting;MetadataName;get_Name;();Argument[this].SyntheticField[System.Threading.RateLimiting.MetadataName`1._name];ReturnValue;value;dfc-generated | @@ -13083,10 +14224,19 @@ | System.Threading.RateLimiting;RateLimitPartition;GetFixedWindowLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Threading.RateLimiting;RateLimitPartition;GetSlidingWindowLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System.Threading.RateLimiting;RateLimitPartition;GetTokenBucketLimiter;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[0];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey];value;dfc-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[0];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.PartitionKey];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.Factory];value;dfc-generated | +| System.Threading.RateLimiting;RateLimitPartition;RateLimitPartition;(TKey,System.Func);Argument[1];Argument[this].Property[System.Threading.RateLimiting.RateLimitPartition`1.Factory];value;hq-generated | | System.Threading.RateLimiting;RateLimiter;AttemptAcquire;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;RateLimiter;AttemptAcquireCore;(System.Int32);Argument[this];ReturnValue;taint;df-generated | | System.Threading.RateLimiting;ReplenishingRateLimiter;get_ReplenishmentPeriod;();Argument[this];ReturnValue;taint;df-generated | +| System.Threading.RateLimiting;SlidingWindowRateLimiter;SlidingWindowRateLimiter;(System.Threading.RateLimiting.SlidingWindowRateLimiterOptions);Argument[0];Argument[this];taint;df-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;TokenBucketRateLimiter;(System.Threading.RateLimiting.TokenBucketRateLimiterOptions);Argument[0].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];value;dfc-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];ReturnValue;value;df-generated | +| System.Threading.RateLimiting;TokenBucketRateLimiter;get_ReplenishmentPeriod;();Argument[this].SyntheticField[System.Threading.RateLimiting.TokenBucketRateLimiter._options].Property[System.Threading.RateLimiting.TokenBucketRateLimiterOptions.ReplenishmentPeriod];ReturnValue;value;dfc-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Action);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Action,System.Threading.Tasks.Dataflow.ExecutionDataflowBlockOptions);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;ActionBlock;ActionBlock;(System.Func);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -13150,7 +14300,6 @@ | System.Threading.Tasks.Dataflow;DataflowBlock;SendAsync;(System.Threading.Tasks.Dataflow.ITargetBlock,TInput);Argument[1];Argument[0];taint;df-generated | | System.Threading.Tasks.Dataflow;DataflowBlock;SendAsync;(System.Threading.Tasks.Dataflow.ITargetBlock,TInput,System.Threading.CancellationToken);Argument[1];Argument[0];taint;df-generated | | System.Threading.Tasks.Dataflow;DataflowBlock;TryReceive;(System.Threading.Tasks.Dataflow.IReceivableSourceBlock,TOutput);Argument[0];ReturnValue;taint;df-generated | -| System.Threading.Tasks.Dataflow;IDataflowBlock;Fault;(System.Exception);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks.Dataflow;IDataflowBlock;get_Completion;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks.Dataflow;IReceivableSourceBlock;TryReceive;(System.Predicate,TOutput);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Threading.Tasks.Dataflow;JoinBlock;JoinBlock;(System.Threading.Tasks.Dataflow.GroupingDataflowBlockOptions);Argument[0];Argument[this];taint;df-generated | @@ -13355,6 +14504,7 @@ | System.Threading.Tasks;Task;WhenAll;(System.ReadOnlySpan>);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAll;(System.Threading.Tasks.Task[]);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Collections.Generic.IEnumerable);Argument[0].Element;ReturnValue;taint;df-generated | +| System.Threading.Tasks;Task;WhenAny;(System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[0];ReturnValue.Property[System.Threading.Tasks.Task`1.Result];value;dfc-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[1];ReturnValue.Property[System.Threading.Tasks.Task`1.Result];value;dfc-generated | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task[]);Argument[0].Element;ReturnValue;taint;df-generated | @@ -13363,6 +14513,8 @@ | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task,System.Threading.Tasks.Task);Argument[1].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | | System.Threading.Tasks;Task;WhenAny;(System.Threading.Tasks.Task[]);Argument[0].Element.Property[System.Threading.Tasks.Task`1.Result];ReturnValue.Property[System.Threading.Tasks.Task`1.Result].Element;value;manual | +| System.Threading.Tasks;Task;WhenEach;(System.ReadOnlySpan);Argument[0].Element;ReturnValue.Element;value;dfc-generated | +| System.Threading.Tasks;Task;WhenEach;(System.Threading.Tasks.Task[]);Argument[0].Element;ReturnValue.Element;value;dfc-generated | | System.Threading.Tasks;Task;get_AsyncState;();Argument[this].SyntheticField[System.Threading.Tasks.Task.m_stateObject];ReturnValue;value;df-generated | | System.Threading.Tasks;Task;get_AsyncState;();Argument[this].SyntheticField[System.Threading.Tasks.Task.m_stateObject];ReturnValue;value;dfc-generated | | System.Threading.Tasks;Task;ConfigureAwait;(System.Boolean);Argument[this];ReturnValue.SyntheticField[m_configuredTaskAwaiter].SyntheticField[m_task_configured_task_awaitable];value;manual | @@ -13456,13 +14608,16 @@ | System.Threading.Tasks;Task;get_Result;();Argument[this];ReturnValue;taint;manual | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;ConfigureAwait;(System.IAsyncDisposable,System.Boolean);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;ConfigureAwait;(System.Collections.Generic.IAsyncEnumerable,System.Boolean);Argument[0];ReturnValue;taint;df-generated | +| System.Threading.Tasks;TaskAsyncEnumerableExtensions;ToBlockingEnumerable;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[0].Property[System.Collections.Generic.IAsyncEnumerator`1.Current];ReturnValue.Element;value;dfc-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;WithCancellation;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[0];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskAsyncEnumerableExtensions;WithCancellation;(System.Collections.Generic.IAsyncEnumerable,System.Threading.CancellationToken);Argument[1];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskCanceledException;TaskCanceledException;(System.Threading.Tasks.Task);Argument[0];Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask];value;dfc-generated | | System.Threading.Tasks;TaskCanceledException;get_Task;();Argument[this].SyntheticField[System.Threading.Tasks.TaskCanceledException._canceledTask];ReturnValue;value;dfc-generated | | System.Threading.Tasks;TaskCompletionSource;TaskCompletionSource;(System.Object,System.Threading.Tasks.TaskCreationOptions);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;get_Task;();Argument[this];ReturnValue;taint;df-generated | +| System.Threading.Tasks;TaskCompletionSource;SetFromTask;(System.Threading.Tasks.Task);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;SetResult;(TResult);Argument[0];Argument[this];taint;df-generated | +| System.Threading.Tasks;TaskCompletionSource;TrySetFromTask;(System.Threading.Tasks.Task);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;TrySetResult;(TResult);Argument[0];Argument[this];taint;df-generated | | System.Threading.Tasks;TaskCompletionSource;get_Task;();Argument[this];ReturnValue;taint;df-generated | | System.Threading.Tasks;TaskExtensions;Unwrap;(System.Threading.Tasks.Task);Argument[0];ReturnValue;taint;df-generated | @@ -14149,10 +15304,6 @@ | System.Web;HttpUtility;UrlEncode;(System.Byte[],System.Int32,System.Int32);Argument[0];ReturnValue;taint;manual | | System.Web;HttpUtility;UrlEncode;(System.String);Argument[0];ReturnValue;taint;manual | | System.Web;HttpUtility;UrlEncode;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;manual | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[]);Argument[0].Element;ReturnValue.Element;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[]);Argument[0];ReturnValue;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[],System.Int32,System.Int32);Argument[0].Element;ReturnValue.Element;value;dfc-generated | -| System.Web;HttpUtility;UrlEncodeToBytes;(System.Byte[],System.Int32,System.Int32);Argument[0];ReturnValue;value;dfc-generated | | System.Web;HttpUtility;UrlEncodeToBytes;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Web;HttpUtility;UrlEncodeToBytes;(System.String,System.Text.Encoding);Argument[0];ReturnValue;taint;dfc-generated | | System.Web;HttpUtility;UrlPathEncode;(System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -14380,6 +15531,7 @@ | System.Xml.Schema;XmlSchemaDatatype;ChangeType;(System.Object,System.Type,System.Xml.IXmlNamespaceResolver);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[0];Argument[2];taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[2];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaDatatype;ParseValue;(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaElement;get_ElementSchemaType;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaElement;get_ElementType;();Argument[this];ReturnValue;taint;df-generated | @@ -14429,6 +15581,7 @@ | System.Xml.Schema;XmlSchemaSet;Reprocess;(System.Xml.Schema.XmlSchema);Argument[0];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaSet;Reprocess;(System.Xml.Schema.XmlSchema);Argument[0];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaSet;Schemas;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Schema;XmlSchemaSet;Schemas;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaSet;XmlSchemaSet;(System.Xml.XmlNameTable);Argument[0];Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable];value;dfc-generated | | System.Xml.Schema;XmlSchemaSet;add_ValidationEventHandler;(System.Xml.Schema.ValidationEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Xml.Schema;XmlSchemaSet;get_NameTable;();Argument[this].SyntheticField[System.Xml.Schema.XmlSchemaSet._nameTable];ReturnValue;value;dfc-generated | @@ -14455,7 +15608,11 @@ | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[2];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateAttribute;(System.String,System.String,System.Xml.Schema.XmlValueGetter,System.Xml.Schema.XmlSchemaInfo);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[1];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo);Argument[this];Argument[2];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateElement;(System.String,System.String,System.Xml.Schema.XmlSchemaInfo,System.String,System.String,System.String,System.String);Argument[this];Argument[2];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateEndElement;(System.Xml.Schema.XmlSchemaInfo);Argument[this];Argument[0];taint;df-generated | | System.Xml.Schema;XmlSchemaValidator;ValidateEndElement;(System.Xml.Schema.XmlSchemaInfo);Argument[this];ReturnValue;taint;df-generated | @@ -14582,6 +15739,7 @@ | System.Xml.Serialization;XmlSchemaExporter;ExportMembersMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportMembersMapping;(System.Xml.Serialization.XmlMembersMapping,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlMembersMapping);Argument[0];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;ExportTypeMapping;(System.Xml.Serialization.XmlTypeMapping);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaExporter;XmlSchemaExporter;(System.Xml.Serialization.XmlSchemas);Argument[0].Element;Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSchemaProviderAttribute;XmlSchemaProviderAttribute;(System.String);Argument[0];Argument[this].SyntheticField[System.Xml.Serialization.XmlSchemaProviderAttribute._methodName];value;dfc-generated | @@ -14626,24 +15784,37 @@ | System.Xml.Serialization;XmlSerializationReader;CollapseWhitespace;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;EnsureArrayIndex;(System.Array,System.Int32,System.Type);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;GetTarget;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;GetXsiType;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadElementQualifiedName;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadNullableQualifiedName;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadNullableString;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReference;(System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencedElement;(System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.Boolean,System.String);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[0];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadReferencingElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ReadSerializable;(System.Xml.Serialization.IXmlSerializable);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadSerializable;(System.Xml.Serialization.IXmlSerializable,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadString;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadString;(System.String,System.Boolean);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ReadTypedPrimitive;(System.Xml.XmlQualifiedName);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadXmlDocument;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System.Xml.Serialization;XmlSerializationReader;ReadXmlNode;(System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;ShrinkArray;(System.Array,System.Int32,System.Type,System.Boolean);Argument[0];ReturnValue;value;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToByteArrayBase64;(System.String);Argument[0];ReturnValue.Element;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNCName;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlName;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNmToken;(System.String);Argument[0];ReturnValue;taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;ToXmlNmTokens;(System.String);Argument[0];ReturnValue;taint;dfc-generated | +| System.Xml.Serialization;XmlSerializationReader;ToXmlQualifiedName;(System.String);Argument[0];ReturnValue.Property[System.Xml.XmlQualifiedName.Name];value;dfc-generated | +| System.Xml.Serialization;XmlSerializationReader;ToXmlQualifiedName;(System.String);Argument[0];ReturnValue.Property[System.Xml.XmlQualifiedName.Namespace];taint;dfc-generated | | System.Xml.Serialization;XmlSerializationReader;get_Document;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationReader;get_Reader;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.Serialization;XmlSerializationWriteCallback;BeginInvoke;(System.Object,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | @@ -14757,6 +15928,8 @@ | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object);Argument[2];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object,System.Boolean);Argument[0];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteReferencingElement;(System.String,System.String,System.Object,System.Boolean);Argument[2];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSerializationWriter;WriteRpcResult;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml.Serialization;XmlSerializationWriter;WriteRpcResult;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteSerializable;(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteSerializable;(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean);Argument[1];Argument[this];taint;df-generated | | System.Xml.Serialization;XmlSerializationWriter;WriteStartElement;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -14854,7 +16027,7 @@ | System.Xml.XPath;XPathNavigator;SelectDescendants;(System.String,System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;SelectDescendants;(System.Xml.XPath.XPathNodeType,System.Boolean);Argument[this];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;SelectSingleNode;(System.Xml.XPath.XPathExpression);Argument[0];ReturnValue;taint;df-generated | -| System.Xml.XPath;XPathNavigator;ToString;();Argument[this];ReturnValue;taint;df-generated | +| System.Xml.XPath;XPathNavigator;ToString;();Argument[this].Property[System.Xml.XPath.XPathItem.Value];ReturnValue;value;dfc-generated | | System.Xml.XPath;XPathNavigator;WriteSubtree;(System.Xml.XmlWriter);Argument[this];Argument[0];taint;df-generated | | System.Xml.XPath;XPathNavigator;get_BaseURI;();Argument[this];ReturnValue;taint;df-generated | | System.Xml.XPath;XPathNavigator;get_LocalName;();Argument[this];ReturnValue;taint;df-generated | @@ -14950,7 +16123,6 @@ | System.Xml;XmlDataDocument;CreateElement;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | | System.Xml;XmlDataDocument;CreateElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDataDocument;CreateEntityReference;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[0];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | | System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DataDocumentXPathNavigator._doc];value;dfc-generated | | System.Xml;XmlDataDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._document];value;dfc-generated | | System.Xml;XmlDataDocument;GetElementFromRow;(System.Data.DataRow);Argument[0];ReturnValue;taint;df-generated | @@ -15095,9 +16267,6 @@ | System.Xml;XmlDocument;CreateElement;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateElement;(System.String,System.String,System.String);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateEntityReference;(System.String);Argument[0];ReturnValue;taint;df-generated | -| System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;df-generated | -| System.Xml;XmlDocument;CreateNavigator;();Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | -| System.Xml;XmlDocument;CreateNavigator;(System.Xml.XmlNode);Argument[0];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._source];value;dfc-generated | | System.Xml;XmlDocument;CreateNavigator;(System.Xml.XmlNode);Argument[this];ReturnValue.SyntheticField[System.Xml.DocumentXPathNavigator._document];value;dfc-generated | | System.Xml;XmlDocument;CreateNode;(System.String,System.String,System.String);Argument[1];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;CreateNode;(System.String,System.String,System.String);Argument[2];ReturnValue;taint;df-generated | @@ -15125,6 +16294,8 @@ | System.Xml;XmlDocument;Load;(System.IO.TextReader);Argument[0];Argument[this];taint;manual | | System.Xml;XmlDocument;Load;(System.String);Argument[0];Argument[this];taint;manual | | System.Xml;XmlDocument;Load;(System.Xml.XmlReader);Argument[0];Argument[this];taint;manual | +| System.Xml;XmlDocument;ReadNode;(System.Xml.XmlReader);Argument[0];ReturnValue;taint;df-generated | +| System.Xml;XmlDocument;ReadNode;(System.Xml.XmlReader);Argument[this];ReturnValue;taint;df-generated | | System.Xml;XmlDocument;Save;(System.Xml.XmlWriter);Argument[this];Argument[0];taint;df-generated | | System.Xml;XmlDocument;Validate;(System.Xml.Schema.ValidationEventHandler);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | | System.Xml;XmlDocument;Validate;(System.Xml.Schema.ValidationEventHandler,System.Xml.XmlNode);Argument[0];Argument[0].Parameter[delegate-self];value;hq-generated | @@ -15292,6 +16463,8 @@ | System.Xml;XmlQualifiedName;ToString;();Argument[this].Property[System.Xml.XmlQualifiedName.Namespace];ReturnValue;taint;dfc-generated | | System.Xml;XmlQualifiedName;ToString;(System.String,System.String);Argument[0];ReturnValue;value;dfc-generated | | System.Xml;XmlQualifiedName;ToString;(System.String,System.String);Argument[1];ReturnValue;taint;dfc-generated | +| System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String,System.String);Argument[0];Argument[this].Property[System.Xml.XmlQualifiedName.Name];value;dfc-generated | +| System.Xml;XmlQualifiedName;XmlQualifiedName;(System.String,System.String);Argument[1];Argument[this].Property[System.Xml.XmlQualifiedName.Namespace];value;dfc-generated | | System.Xml;XmlReader;Create;(System.IO.Stream);Argument[0];ReturnValue;taint;manual | | System.Xml;XmlReader;Create;(System.IO.Stream,System.Xml.XmlReaderSettings);Argument[0];ReturnValue;taint;manual | | System.Xml;XmlReader;Create;(System.IO.Stream,System.Xml.XmlReaderSettings,System.String);Argument[0];ReturnValue;taint;manual | @@ -15470,9 +16643,11 @@ | System.Xml;XmlWriter;WriteElementString;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementString;(System.String,System.String,System.String,System.String);Argument[3];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteElementStringAsync;(System.String,System.String,System.String,System.String);Argument[3];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteEntityRef;(System.String);Argument[0];Argument[this];taint;df-generated | @@ -15498,8 +16673,10 @@ | System.Xml;XmlWriter;WriteStartAttributeAsync;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteStartElement;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[1];Argument[this];taint;df-generated | +| System.Xml;XmlWriter;WriteStartElement;(System.String,System.String,System.String);Argument[2];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteString;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteStringAsync;(System.String);Argument[0];Argument[this];taint;df-generated | | System.Xml;XmlWriter;WriteValue;(System.Object);Argument[0];Argument[this];taint;df-generated | @@ -15995,9 +17172,13 @@ | System;Converter;BeginInvoke;(TInput,System.AsyncCallback,System.Object);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System;DateTime;ToLocalTime;();Argument[this];ReturnValue;value;df-generated | | System;DateTimeOffset;Deconstruct;(System.DateOnly,System.TimeOnly,System.TimeSpan);Argument[this].Property[System.DateTimeOffset.Offset];ReturnValue;value;dfc-generated | +| System;Delegate+InvocationListEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | +| System;Delegate+InvocationListEnumerator;get_Current;();Argument[this];ReturnValue;taint;df-generated | | System;Delegate;Combine;(System.Delegate,System.Delegate);Argument[1];ReturnValue;value;dfc-generated | | System;Delegate;Combine;(System.Delegate[]);Argument[0].Element;ReturnValue;value;dfc-generated | +| System;Delegate;Combine;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;value;dfc-generated | | System;Delegate;CombineImpl;(System.Delegate);Argument[this];ReturnValue;value;dfc-generated | +| System;Delegate;CreateDelegate;(System.Type,System.Object,System.Reflection.MethodInfo,System.Boolean);Argument[2];ReturnValue;taint;df-generated | | System;Delegate;CreateDelegate;(System.Type,System.Reflection.MethodInfo,System.Boolean);Argument[1];ReturnValue;taint;df-generated | | System;Delegate;Delegate;(System.Object,System.String);Argument[0];Argument[this].SyntheticField[System.Delegate._target];value;dfc-generated | | System;Delegate;Delegate;(System.Type,System.String);Argument[1];Argument[this];taint;df-generated | @@ -16152,6 +17333,7 @@ | System;Memory;ToArray;();Argument[this].Property[System.Memory`1.Span].Element;ReturnValue.Element;value;dfc-generated | | System;Memory;ToString;();Argument[this].SyntheticField[System.Memory`1._object];ReturnValue;value;dfc-generated | | System;Memory;TryCopyTo;(System.Memory);Argument[this].Property[System.Memory`1.Span].Element;Argument[0].Property[System.Memory`1.Span].Element;value;dfc-generated | +| System;MemoryExtensions+SpanSplitEnumerator;GetEnumerator;();Argument[this];ReturnValue;value;dfc-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.Boolean);Argument[2];Argument[this];taint;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean);Argument[2];Argument[this];taint;df-generated | | System;MemoryExtensions+TryWriteInterpolatedStringHandler;TryWriteInterpolatedStringHandler;(System.Int32,System.Int32,System.Span,System.IFormatProvider,System.Boolean);Argument[3];Argument[this];taint;df-generated | @@ -16195,6 +17377,14 @@ | System;MemoryExtensions;Sort;(System.Span,System.Comparison);Argument[1];Argument[1].Parameter[delegate-self];value;dfc-generated | | System;MemoryExtensions;Sort;(System.Span,System.Comparison);Argument[1];Argument[1].Parameter[delegate-self];value;hq-generated | | System;MemoryExtensions;Sort;(System.Span,System.Span,System.Comparison);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,T);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;Split;(System.ReadOnlySpan,T);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.Buffers.SearchValues);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.Buffers.SearchValues);Argument[1];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[0];ReturnValue;taint;df-generated | +| System;MemoryExtensions;SplitAny;(System.ReadOnlySpan,System.ReadOnlySpan);Argument[1];ReturnValue;taint;df-generated | | System;MemoryExtensions;Trim;(System.Memory);Argument[0];ReturnValue;taint;df-generated | | System;MemoryExtensions;Trim;(System.ReadOnlyMemory);Argument[0].SyntheticField[System.ReadOnlyMemory`1._object];ReturnValue.SyntheticField[System.ReadOnlyMemory`1._object];value;dfc-generated | | System;MemoryExtensions;Trim;(System.ReadOnlySpan);Argument[0].Element;ReturnValue.Element;value;dfc-generated | @@ -16863,6 +18053,7 @@ | System;Type;GetGenericArguments;();Argument[this];ReturnValue;taint;df-generated | | System;Type;GetGenericTypeDefinition;();Argument[this];ReturnValue;value;dfc-generated | | System;Type;GetInterface;(System.String,System.Boolean);Argument[this];ReturnValue;taint;df-generated | +| System;Type;GetInterfaceMap;(System.Type);Argument[this];ReturnValue;taint;df-generated | | System;Type;GetInterfaces;();Argument[this];ReturnValue;taint;df-generated | | System;Type;GetMethodImpl;(System.String,System.Int32,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | | System;Type;GetMethodImpl;(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Reflection.CallingConventions,System.Type[],System.Reflection.ParameterModifier[]);Argument[this];ReturnValue;taint;df-generated | @@ -16921,6 +18112,7 @@ | System;UnhandledExceptionEventArgs;UnhandledExceptionEventArgs;(System.Object,System.Boolean);Argument[0];Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception];value;dfc-generated | | System;UnhandledExceptionEventArgs;get_ExceptionObject;();Argument[this].SyntheticField[System.UnhandledExceptionEventArgs._exception];ReturnValue;value;dfc-generated | | System;UnhandledExceptionEventHandler;BeginInvoke;(System.Object,System.UnhandledExceptionEventArgs,System.AsyncCallback,System.Object);Argument[2];Argument[2].Parameter[delegate-self];value;hq-generated | +| System;Uri;EscapeDataString;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;dfc-generated | | System;Uri;EscapeDataString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;EscapeString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;EscapeUriString;(System.String);Argument[0];ReturnValue;value;dfc-generated | @@ -16935,6 +18127,9 @@ | System;Uri;TryCreate;(System.Uri,System.String,System.Uri);Argument[1];ReturnValue.SyntheticField[System.Uri._string];value;dfc-generated | | System;Uri;TryCreate;(System.Uri,System.Uri,System.Uri);Argument[0];ReturnValue;taint;df-generated | | System;Uri;TryCreate;(System.Uri,System.Uri,System.Uri);Argument[1];ReturnValue;taint;df-generated | +| System;Uri;TryEscapeDataString;(System.ReadOnlySpan,System.Span,System.Int32);Argument[0].Element;Argument[1].Element;value;dfc-generated | +| System;Uri;TryUnescapeDataString;(System.ReadOnlySpan,System.Span,System.Int32);Argument[0].Element;Argument[1].Element;value;dfc-generated | +| System;Uri;UnescapeDataString;(System.ReadOnlySpan);Argument[0].Element;ReturnValue;taint;dfc-generated | | System;Uri;UnescapeDataString;(System.String);Argument[0];ReturnValue;value;dfc-generated | | System;Uri;Uri;(System.String);Argument[0];Argument[this];taint;manual | | System;Uri;Uri;(System.String,System.Boolean);Argument[0];Argument[this];taint;manual | @@ -16955,13 +18150,49 @@ | System;Uri;get_Query;();Argument[this];ReturnValue;taint;manual | | System;Uri;get_Scheme;();Argument[this];ReturnValue;taint;df-generated | | System;Uri;get_UserInfo;();Argument[this];ReturnValue;taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].SyntheticField[System.UriBuilder._uri];taint;dfc-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[0];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[1];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[3];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this];taint;df-generated | -| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].SyntheticField[System.UriBuilder._uri];value;dfc-generated | -| System;UriBuilder;get_Uri;();Argument[this].SyntheticField[System.UriBuilder._uri];ReturnValue;value;dfc-generated | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Fragment];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Host];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Password];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Path];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Port];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Query];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.Scheme];ReturnValue;taint;manual | +| System;UriBuilder;ToString;();Argument[this].Property[System.UriBuilder.UserName];ReturnValue;taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String);Argument[3];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[1];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[2];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[3];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.String,System.String,System.Int32,System.String,System.String);Argument[4];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Fragment];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Host];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Path];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Port];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Query];taint;manual | +| System;UriBuilder;UriBuilder;(System.Uri);Argument[0];Argument[this].Property[System.UriBuilder.Scheme];taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Fragment];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Host];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Password];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Path];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Port];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Query];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.Scheme];ReturnValue;taint;manual | +| System;UriBuilder;get_Uri;();Argument[this].Property[System.UriBuilder.UserName];ReturnValue;taint;manual | | System;UriParser;GetComponents;(System.Uri,System.UriComponents,System.UriFormat);Argument[0];ReturnValue;taint;df-generated | | System;UriParser;OnNewUri;();Argument[this];ReturnValue;value;dfc-generated | | System;UriParser;Register;(System.UriParser,System.String,System.Int32);Argument[1];Argument[0];taint;df-generated | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.expected b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.expected deleted file mode 100644 index dd0e7c8d977..00000000000 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.expected +++ /dev/null @@ -1,259 +0,0 @@ -| Capture.cs:10:16:10:16 | a | Capture.cs:10:16:27:9 | SSA def(a) | Capture.cs:46:12:46:12 | access to local variable a | -| Capture.cs:17:17:17:17 | y | Capture.cs:17:17:17:21 | SSA def(y) | Capture.cs:26:17:26:17 | access to local variable y | -| Capture.cs:17:17:17:17 | y | Capture.cs:19:24:23:13 | SSA capture def(y) | Capture.cs:22:21:22:21 | access to local variable y | -| Capture.cs:19:20:19:20 | b | Capture.cs:19:20:23:13 | SSA def(b) | Capture.cs:25:13:25:13 | access to local variable b | -| Capture.cs:30:16:30:16 | c | Capture.cs:30:16:30:35 | SSA def(c) | Capture.cs:32:9:32:9 | access to local variable c | -| Capture.cs:52:16:52:16 | b | Capture.cs:52:16:52:43 | SSA def(b) | Capture.cs:53:9:53:9 | access to local variable b | -| Capture.cs:57:57:57:63 | strings | Capture.cs:57:57:57:63 | SSA param(strings) | Capture.cs:61:9:61:15 | access to parameter strings | -| Capture.cs:60:27:60:27 | e | Capture.cs:60:27:60:38 | SSA def(e) | Capture.cs:61:24:61:24 | access to local variable e | -| Capture.cs:65:45:65:51 | strings | Capture.cs:65:45:65:51 | SSA param(strings) | Capture.cs:70:9:70:15 | access to parameter strings | -| Capture.cs:67:13:67:13 | c | Capture.cs:68:32:68:49 | SSA capture def(c) | Capture.cs:68:48:68:48 | access to local variable c | -| Capture.cs:67:13:67:13 | c | Capture.cs:69:9:69:62 | SSA capture def(c) | Capture.cs:69:48:69:48 | access to local variable c | -| Capture.cs:68:32:68:32 | s | Capture.cs:68:32:68:32 | SSA param(s) | Capture.cs:68:37:68:37 | access to parameter s | -| Capture.cs:69:25:69:25 | s | Capture.cs:69:25:69:25 | SSA param(s) | Capture.cs:69:59:69:59 | access to parameter s | -| Capture.cs:73:67:73:73 | strings | Capture.cs:73:67:73:73 | SSA param(strings) | Capture.cs:77:9:77:15 | access to parameter strings | -| Capture.cs:76:63:76:63 | e | Capture.cs:76:63:76:81 | SSA def(e) | Capture.cs:77:24:77:24 | access to local variable e | -| Capture.cs:81:28:81:28 | i | Capture.cs:81:28:81:28 | SSA param(i) | Capture.cs:81:34:81:34 | access to parameter i | -| Capture.cs:83:65:83:71 | strings | Capture.cs:83:65:83:71 | SSA param(strings) | Capture.cs:87:9:87:15 | access to parameter strings | -| Capture.cs:85:13:85:13 | b | Capture.cs:86:68:86:73 | SSA capture def(b) | Capture.cs:86:73:86:73 | access to local variable b | -| Capture.cs:86:64:86:64 | e | Capture.cs:86:64:86:73 | SSA def(e) | Capture.cs:87:23:87:23 | access to local variable e | -| Capture.cs:92:18:92:18 | d | Capture.cs:92:18:92:18 | SSA param(d) | Capture.cs:92:24:92:24 | access to parameter d | -| Capture.cs:94:13:94:13 | y | Capture.cs:96:12:100:9 | SSA capture def(y) | Capture.cs:98:21:98:21 | access to local variable y | -| Capture.cs:98:17:98:17 | x | Capture.cs:98:17:98:21 | SSA def(x) | Capture.cs:99:20:99:20 | access to local variable x | -| Capture.cs:114:13:114:13 | a | Capture.cs:115:9:119:9 | SSA capture def(a) | Capture.cs:117:21:117:21 | access to local variable a | -| Capture.cs:117:17:117:17 | x | Capture.cs:117:17:117:21 | SSA def(x) | Capture.cs:118:17:118:17 | access to local variable x | -| Capture.cs:162:13:162:13 | g | Capture.cs:163:9:166:9 | SSA capture def(g) | Capture.cs:165:17:165:17 | access to local variable g | -| Capture.cs:182:17:182:17 | i | Capture.cs:183:13:186:13 | SSA capture def(i) | Capture.cs:185:21:185:21 | access to local variable i | -| Capture.cs:197:17:197:17 | i | Capture.cs:198:33:198:44 | SSA capture def(i) | Capture.cs:198:43:198:43 | access to local variable i | -| Capture.cs:197:17:197:17 | i | Capture.cs:203:34:203:45 | SSA capture def(i) | Capture.cs:203:44:203:44 | access to local variable i | -| Capture.cs:198:28:198:29 | eh | Capture.cs:198:28:198:44 | SSA def(eh) | Capture.cs:199:27:199:28 | access to local variable eh | -| Capture.cs:203:28:203:30 | eh2 | Capture.cs:203:28:203:45 | SSA def(eh2) | Capture.cs:204:27:204:29 | access to local variable eh2 | -| Capture.cs:209:17:209:17 | i | Capture.cs:212:39:212:71 | SSA capture def(i) | Capture.cs:212:70:212:70 | access to local variable i | -| Capture.cs:210:24:210:24 | p | Capture.cs:210:24:210:59 | SSA def(p) | Capture.cs:213:17:213:17 | access to local variable p | -| Capture.cs:212:30:212:35 | exited | Capture.cs:212:30:212:71 | SSA def(exited) | Capture.cs:213:29:213:34 | access to local variable exited | -| Consistency.cs:7:25:7:25 | b | Consistency.cs:7:25:7:25 | SSA param(b) | Consistency.cs:11:17:11:17 | access to parameter b | -| Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | SSA def(i) | Consistency.cs:16:17:16:17 | access to local variable i | -| Consistency.cs:15:17:15:17 | i | Consistency.cs:15:17:15:21 | [finally: exception(Exception)] SSA def(i) | Consistency.cs:16:17:16:17 | access to local variable i | -| Consistency.cs:25:29:25:29 | c | Consistency.cs:25:29:25:29 | SSA def(c) | Consistency.cs:27:13:27:13 | access to local variable c | -| Consistency.cs:26:13:26:19 | c.Field | Consistency.cs:25:29:25:29 | SSA qualifier def(c.Field) | Consistency.cs:27:13:27:19 | access to field Field | -| Consistency.cs:30:30:30:30 | c | Consistency.cs:32:9:32:29 | SSA def(c) | Consistency.cs:33:9:33:9 | access to parameter c | -| Consistency.cs:44:11:44:11 | s | Consistency.cs:44:11:44:11 | SSA def(s) | Consistency.cs:46:13:46:13 | access to local variable s | -| Consistency.cs:49:30:49:30 | a | Consistency.cs:49:30:49:30 | SSA param(a) | Consistency.cs:49:47:49:47 | access to parameter a | -| Consistency.cs:49:37:49:37 | i | Consistency.cs:49:37:49:37 | SSA param(i) | Consistency.cs:49:49:49:49 | access to parameter i | -| Consistency.cs:51:20:51:20 | a | Consistency.cs:51:20:51:20 | SSA param(a) | Consistency.cs:56:36:56:36 | access to parameter a | -| DefUse.cs:3:26:3:26 | w | DefUse.cs:3:26:3:26 | SSA param(w) | DefUse.cs:9:13:9:13 | access to parameter w | -| DefUse.cs:3:26:3:26 | w | DefUse.cs:19:13:19:18 | SSA def(w) | DefUse.cs:20:17:20:17 | access to parameter w | -| DefUse.cs:3:26:3:26 | w | DefUse.cs:23:9:23:15 | SSA phi(w) | DefUse.cs:24:13:24:13 | access to parameter w | -| DefUse.cs:3:26:3:26 | w | DefUse.cs:29:13:29:18 | SSA def(w) | DefUse.cs:53:17:53:17 | access to parameter w | -| DefUse.cs:5:13:5:13 | x | DefUse.cs:5:13:5:17 | SSA def(x) | DefUse.cs:26:13:26:13 | access to local variable x | -| DefUse.cs:5:13:5:13 | x | DefUse.cs:5:13:5:17 | SSA def(x) | DefUse.cs:56:16:56:16 | access to local variable x | -| DefUse.cs:6:14:6:14 | y | DefUse.cs:6:14:6:19 | SSA def(y) | DefUse.cs:8:13:8:13 | access to local variable y | -| DefUse.cs:6:14:6:14 | y | DefUse.cs:13:13:13:18 | SSA def(y) | DefUse.cs:14:17:14:17 | access to local variable y | -| DefUse.cs:6:14:6:14 | y | DefUse.cs:23:9:23:15 | SSA phi(y) | DefUse.cs:23:13:23:13 | access to local variable y | -| DefUse.cs:6:14:6:14 | y | DefUse.cs:28:13:28:18 | SSA def(y) | DefUse.cs:34:13:34:13 | access to local variable y | -| DefUse.cs:6:14:6:14 | y | DefUse.cs:42:9:42:15 | SSA phi(y) | DefUse.cs:42:13:42:13 | access to local variable y | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:44:13:44:17 | SSA def(z) | DefUse.cs:45:13:45:13 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:47:23:47:23 | SSA def(z) | DefUse.cs:50:23:50:23 | access to local variable z | -| DefUse.cs:44:13:44:13 | z | DefUse.cs:50:23:50:23 | SSA def(z) | DefUse.cs:51:13:51:13 | access to local variable z | -| DefUse.cs:53:9:53:13 | this.Field | DefUse.cs:53:9:53:17 | SSA def(this.Field) | DefUse.cs:54:13:54:17 | access to field Field | -| DefUse.cs:56:9:56:12 | this.Prop | DefUse.cs:56:9:56:16 | SSA def(this.Prop) | DefUse.cs:57:13:57:16 | access to property Prop | -| DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:64:13:64:18 | access to field Field2 | -| DefUse.cs:63:9:63:14 | this.Field2 | DefUse.cs:63:9:63:18 | SSA def(this.Field2) | DefUse.cs:80:37:80:42 | access to field Field2 | -| DefUse.cs:66:9:66:14 | this.Field3 | DefUse.cs:66:9:66:18 | SSA def(this.Field3) | DefUse.cs:69:13:69:18 | access to field Field3 | -| DefUse.cs:67:19:67:20 | tc | DefUse.cs:67:19:67:27 | SSA def(tc) | DefUse.cs:68:9:68:10 | access to local variable tc | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA def(x1) | DefUse.cs:81:13:81:14 | access to local variable x1 | -| DefUse.cs:79:13:79:14 | x1 | DefUse.cs:80:30:80:31 | SSA phi(x1) | DefUse.cs:80:30:80:31 | access to local variable x1 | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:83:13:83:18 | SSA def(x2) | DefUse.cs:85:15:85:16 | access to local variable x2 | -| DefUse.cs:83:13:83:14 | x2 | DefUse.cs:85:15:85:16 | SSA def(x2) | DefUse.cs:87:13:87:14 | access to local variable x2 | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:89:13:89:18 | SSA def(x3) | DefUse.cs:92:15:92:16 | access to local variable x3 | -| DefUse.cs:89:13:89:14 | x3 | DefUse.cs:92:15:92:16 | SSA def(x3) | DefUse.cs:94:13:94:14 | access to local variable x3 | -| DefUse.cs:90:13:90:14 | x4 | DefUse.cs:93:15:93:16 | SSA def(x4) | DefUse.cs:95:13:95:14 | access to local variable x4 | -| DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:16:98:17 | SSA phi(x5) | DefUse.cs:101:18:101:19 | access to local variable x5 | -| DefUse.cs:97:13:97:14 | x5 | DefUse.cs:98:16:98:17 | SSA phi(x5) | DefUse.cs:104:9:104:10 | access to local variable x5 | -| DefUse.cs:97:13:97:14 | x5 | DefUse.cs:104:9:104:15 | SSA def(x5) | DefUse.cs:105:13:105:14 | access to local variable x5 | -| DefUse.cs:118:45:118:45 | i | DefUse.cs:118:45:118:45 | SSA param(i) | DefUse.cs:118:65:118:65 | access to parameter i | -| DefUse.cs:128:19:128:19 | i | DefUse.cs:128:19:128:19 | SSA param(i) | DefUse.cs:129:19:129:19 | access to parameter i | -| DefUse.cs:134:22:134:22 | d | DefUse.cs:134:22:134:22 | SSA param(d) | DefUse.cs:135:14:135:14 | access to parameter d | -| DefUse.cs:142:68:142:69 | ie | DefUse.cs:142:68:142:69 | SSA param(ie) | DefUse.cs:144:27:144:28 | access to parameter ie | -| DefUse.cs:144:22:144:22 | x | DefUse.cs:144:22:144:22 | SSA def(x) | DefUse.cs:147:17:147:17 | access to local variable x | -| DefUse.cs:155:9:155:14 | this.Field4 | DefUse.cs:155:9:155:18 | SSA def(this.Field4) | DefUse.cs:157:13:157:18 | access to field Field4 | -| DefUse.cs:162:13:162:18 | this.Field4 | DefUse.cs:160:10:160:16 | SSA entry def(this.Field4) | DefUse.cs:163:13:163:18 | access to field Field4 | -| DefUse.cs:171:23:171:23 | a | DefUse.cs:171:23:180:9 | SSA def(a) | DefUse.cs:181:9:181:9 | access to local variable a | -| DefUse.cs:171:23:171:23 | a | DefUse.cs:186:9:190:9 | SSA def(a) | DefUse.cs:191:9:191:9 | access to local variable a | -| DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:184:9:184:18 | SSA def(this.Field5) | DefUse.cs:185:13:185:18 | access to field Field5 | -| DefUse.cs:184:9:184:14 | this.Field5 | DefUse.cs:191:9:191:11 | SSA call def(this.Field5) | DefUse.cs:192:13:192:18 | access to field Field5 | -| DefUse.cs:188:13:188:18 | this.Field5 | DefUse.cs:188:13:188:22 | SSA def(this.Field5) | DefUse.cs:189:17:189:22 | access to field Field5 | -| Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:11:26:11:26 | access to parameter i | -| Example.cs:6:23:6:23 | i | Example.cs:6:23:6:23 | SSA param(i) | Example.cs:12:18:12:18 | access to parameter i | -| Example.cs:8:9:8:18 | this.Field | Example.cs:8:9:8:22 | SSA def(this.Field) | Example.cs:9:13:9:22 | access to field Field | -| Example.cs:8:9:8:18 | this.Field | Example.cs:14:9:14:24 | SSA phi(this.Field) | Example.cs:15:13:15:22 | access to field Field | -| Example.cs:18:16:18:16 | p | Example.cs:18:16:18:16 | SSA param(p) | Example.cs:22:17:22:17 | access to parameter p | -| Example.cs:18:16:18:16 | p | Example.cs:25:9:25:15 | SSA phi(p) | Example.cs:25:13:25:13 | access to parameter p | -| Example.cs:18:24:18:24 | b | Example.cs:18:24:18:24 | SSA param(b) | Example.cs:20:13:20:13 | access to parameter b | -| Fields.cs:18:15:18:15 | x | Fields.cs:20:9:20:14 | SSA def(x) | Fields.cs:21:13:21:13 | access to local variable x | -| Fields.cs:18:19:18:20 | this.xs | Fields.cs:16:17:16:17 | SSA entry def(this.xs) | Fields.cs:18:19:18:20 | access to field xs | -| Fields.cs:18:19:18:20 | this.xs | Fields.cs:19:9:19:13 | SSA call def(this.xs) | Fields.cs:20:13:20:14 | access to field xs | -| Fields.cs:18:19:18:20 | this.xs | Fields.cs:23:9:23:20 | SSA phi(this.xs) | Fields.cs:23:13:23:19 | access to field xs | -| Fields.cs:18:19:18:20 | this.xs | Fields.cs:24:9:24:23 | SSA def(this.xs) | Fields.cs:25:13:25:14 | access to field xs | -| Fields.cs:30:13:30:13 | f | Fields.cs:30:13:30:28 | SSA def(f) | Fields.cs:46:13:46:13 | access to local variable f | -| Fields.cs:30:13:30:13 | f | Fields.cs:50:9:50:17 | SSA phi(f) | Fields.cs:52:13:52:13 | access to local variable f | -| Fields.cs:31:19:31:22 | f.xs | Fields.cs:30:13:30:28 | SSA qualifier def(f.xs) | Fields.cs:31:19:31:22 | access to field xs | -| Fields.cs:31:19:31:22 | f.xs | Fields.cs:34:9:34:16 | SSA call def(f.xs) | Fields.cs:35:13:35:16 | access to field xs | -| Fields.cs:31:19:31:22 | f.xs | Fields.cs:38:9:38:13 | SSA call def(f.xs) | Fields.cs:43:13:43:16 | access to field xs | -| Fields.cs:31:19:31:22 | f.xs | Fields.cs:45:9:45:25 | SSA def(f.xs) | Fields.cs:46:13:46:16 | access to field xs | -| Fields.cs:31:19:31:22 | f.xs | Fields.cs:50:9:50:17 | SSA phi(f.xs) | Fields.cs:52:13:52:16 | access to field xs | -| Fields.cs:32:15:32:15 | z | Fields.cs:47:9:47:14 | SSA def(z) | Fields.cs:48:13:48:13 | access to local variable z | -| Fields.cs:32:19:32:20 | this.xs | Fields.cs:28:17:28:17 | SSA entry def(this.xs) | Fields.cs:32:19:32:20 | access to field xs | -| Fields.cs:32:19:32:20 | this.xs | Fields.cs:34:9:34:16 | SSA call def(this.xs) | Fields.cs:36:13:36:14 | access to field xs | -| Fields.cs:32:19:32:20 | this.xs | Fields.cs:38:9:38:13 | SSA call def(this.xs) | Fields.cs:40:13:40:14 | access to field xs | -| Fields.cs:32:19:32:20 | this.xs | Fields.cs:42:9:42:23 | SSA def(this.xs) | Fields.cs:53:13:53:14 | access to field xs | -| Fields.cs:33:19:33:22 | Fields.stat | Fields.cs:30:17:30:28 | SSA call def(Fields.stat) | Fields.cs:33:19:33:22 | access to field stat | -| Fields.cs:33:19:33:22 | Fields.stat | Fields.cs:34:9:34:16 | SSA call def(Fields.stat) | Fields.cs:37:13:37:16 | access to field stat | -| Fields.cs:33:19:33:22 | Fields.stat | Fields.cs:38:9:38:13 | SSA call def(Fields.stat) | Fields.cs:41:13:41:16 | access to field stat | -| Fields.cs:33:19:33:22 | Fields.stat | Fields.cs:51:9:51:20 | SSA call def(Fields.stat) | Fields.cs:54:13:54:16 | access to field stat | -| Fields.cs:65:24:65:32 | this.LoopField | Fields.cs:61:17:61:17 | SSA entry def(this.LoopField) | Fields.cs:65:24:65:32 | access to field LoopField | -| Fields.cs:71:17:71:35 | this.SingleAccessedField | Fields.cs:61:17:61:17 | SSA entry def(this.SingleAccessedField) | Fields.cs:71:17:71:35 | access to field SingleAccessedField | -| Fields.cs:76:20:76:38 | this.SingleAccessedField | Fields.cs:74:17:74:17 | SSA entry def(this.SingleAccessedField) | Fields.cs:76:20:76:38 | access to field SingleAccessedField | -| Fields.cs:77:13:77:13 | f | Fields.cs:77:13:77:45 | SSA def(f) | Fields.cs:90:19:90:19 | access to local variable f | -| Fields.cs:77:13:77:13 | f | Fields.cs:78:27:78:54 | SSA capture def(f) | Fields.cs:78:35:78:35 | access to local variable f | -| Fields.cs:78:23:78:23 | a | Fields.cs:78:23:78:54 | SSA def(a) | Fields.cs:81:9:81:9 | access to local variable a | -| Fields.cs:78:23:78:23 | a | Fields.cs:86:24:86:46 | SSA capture def(a) | Fields.cs:86:31:86:31 | access to local variable a | -| Fields.cs:79:23:79:23 | b | Fields.cs:79:23:79:35 | SSA def(b) | Fields.cs:84:9:84:9 | access to local variable b | -| Fields.cs:79:23:79:23 | b | Fields.cs:89:24:89:46 | SSA capture def(b) | Fields.cs:89:31:89:31 | access to local variable b | -| Fields.cs:80:9:80:12 | f.xs | Fields.cs:81:9:81:11 | SSA call def(f.xs) | Fields.cs:82:19:82:22 | access to field xs | -| Fields.cs:80:9:80:12 | f.xs | Fields.cs:83:9:83:25 | SSA def(f.xs) | Fields.cs:85:19:85:22 | access to field xs | -| Fields.cs:80:9:80:12 | f.xs | Fields.cs:86:9:86:47 | SSA call def(f.xs) | Fields.cs:87:19:87:22 | access to field xs | -| Fields.cs:80:9:80:12 | f.xs | Fields.cs:88:9:88:25 | SSA def(f.xs) | Fields.cs:90:19:90:22 | access to field xs | -| Fields.cs:82:9:82:15 | this.xs | Fields.cs:85:9:85:22 | SSA def(this.xs) | Fields.cs:86:9:86:15 | access to field xs | -| Fields.cs:82:9:82:15 | this.xs | Fields.cs:87:9:87:22 | SSA def(this.xs) | Fields.cs:89:9:89:15 | access to field xs | -| Fields.cs:95:19:95:19 | f | Fields.cs:95:19:95:19 | SSA param(f) | Fields.cs:102:22:102:22 | access to parameter f | -| Fields.cs:97:9:97:15 | f.Field | Fields.cs:97:9:97:30 | SSA def(f.Field) | Fields.cs:102:22:102:28 | access to field Field | -| Fields.cs:98:20:98:32 | f.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field) | Fields.cs:101:16:101:28 | access to field Field | -| Fields.cs:99:16:99:34 | f.Field.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field) | Fields.cs:101:16:101:34 | access to field Field | -| Fields.cs:100:16:100:40 | f.Field.Field.Field.Field | Fields.cs:97:9:97:30 | SSA qualifier def(f.Field.Field.Field.Field) | Fields.cs:101:16:101:40 | access to field Field | -| Fields.cs:102:9:102:18 | this.Field | Fields.cs:102:9:102:28 | SSA def(this.Field) | Fields.cs:104:16:104:25 | access to field Field | -| Fields.cs:107:33:107:33 | f | Fields.cs:107:33:107:33 | SSA param(f) | Fields.cs:107:38:107:38 | access to parameter f | -| Fields.cs:115:20:115:29 | this.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field) | Fields.cs:117:17:117:26 | access to field Field | -| Fields.cs:115:20:115:35 | this.Field.Field | Fields.cs:114:9:114:22 | SSA call def(this.Field.Field) | Fields.cs:117:17:117:32 | access to field Field | -| Fields.cs:116:21:116:39 | this.Field.Field.xs | Fields.cs:114:9:114:22 | SSA qualifier def(this.Field.Field.xs) | Fields.cs:117:17:117:35 | access to field xs | -| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationA.cs:5:22:5:22 | SSA param(x) | MultiImplementationA.cs:5:28:5:28 | access to parameter x | -| MultiImplementationA.cs:5:22:5:22 | x | MultiImplementationB.cs:3:22:3:22 | SSA param(x) | MultiImplementationB.cs:3:28:3:28 | access to parameter x | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:9:13:9:17 | SSA def(j) | OutRef.cs:10:32:10:32 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:10:32:10:32 | SSA def(j) | OutRef.cs:22:29:22:29 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:22:22:22:22 | SSA def(j) | OutRef.cs:24:29:24:29 | access to local variable j | -| OutRef.cs:9:13:9:13 | j | OutRef.cs:24:29:24:29 | SSA def(j) | OutRef.cs:25:13:25:13 | access to local variable j | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:10:25:10:25 | SSA def(i) | OutRef.cs:11:13:11:13 | access to local variable i | -| OutRef.cs:10:25:10:25 | i | OutRef.cs:13:21:13:21 | SSA def(i) | OutRef.cs:14:13:14:13 | access to local variable i | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:7:10:7:10 | SSA entry def(this.Field) | OutRef.cs:13:28:13:32 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:13:28:13:32 | SSA def(this.Field) | OutRef.cs:16:32:16:36 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:16:21:16:25 | SSA def(this.Field) | OutRef.cs:17:13:17:17 | access to field Field | -| OutRef.cs:13:28:13:32 | this.Field | OutRef.cs:19:21:19:25 | SSA def(this.Field) | OutRef.cs:20:13:20:17 | access to field Field | -| OutRef.cs:18:13:18:13 | t | OutRef.cs:18:13:18:28 | SSA def(t) | OutRef.cs:21:13:21:13 | access to local variable t | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:18:13:18:28 | SSA qualifier def(t.Field) | OutRef.cs:19:32:19:38 | access to field Field | -| OutRef.cs:19:32:19:38 | t.Field | OutRef.cs:19:32:19:38 | SSA def(t.Field) | OutRef.cs:21:13:21:19 | access to field Field | -| OutRef.cs:28:37:28:37 | j | OutRef.cs:28:37:28:37 | SSA param(j) | OutRef.cs:30:13:30:13 | access to parameter j | -| OutRef.cs:34:38:34:38 | j | OutRef.cs:34:38:34:38 | SSA param(j) | OutRef.cs:36:13:36:13 | access to parameter j | -| OutRef.cs:39:24:39:24 | b | OutRef.cs:39:24:39:24 | SSA param(b) | OutRef.cs:41:13:41:13 | access to parameter b | -| Patterns.cs:7:16:7:16 | o | Patterns.cs:7:16:7:23 | SSA def(o) | Patterns.cs:20:17:20:17 | access to local variable o | -| Patterns.cs:8:22:8:23 | i1 | Patterns.cs:8:18:8:23 | SSA def(i1) | Patterns.cs:10:38:10:39 | access to local variable i1 | -| Patterns.cs:12:30:12:31 | s1 | Patterns.cs:12:23:12:31 | SSA def(s1) | Patterns.cs:14:41:14:42 | access to local variable s1 | -| Patterns.cs:24:22:24:23 | i2 | Patterns.cs:24:18:24:23 | SSA def(i2) | Patterns.cs:24:30:24:31 | access to local variable i2 | -| Patterns.cs:24:22:24:23 | i2 | Patterns.cs:24:18:24:23 | SSA def(i2) | Patterns.cs:25:47:25:48 | access to local variable i2 | -| Patterns.cs:27:22:27:23 | i3 | Patterns.cs:27:18:27:23 | SSA def(i3) | Patterns.cs:28:42:28:43 | access to local variable i3 | -| Patterns.cs:30:25:30:26 | s2 | Patterns.cs:30:18:30:26 | SSA def(s2) | Patterns.cs:31:45:31:46 | access to local variable s2 | -| Properties.cs:18:15:18:15 | x | Properties.cs:20:9:20:14 | SSA def(x) | Properties.cs:21:13:21:13 | access to local variable x | -| Properties.cs:18:19:18:20 | this.xs | Properties.cs:16:17:16:17 | SSA entry def(this.xs) | Properties.cs:18:19:18:20 | access to property xs | -| Properties.cs:18:19:18:20 | this.xs | Properties.cs:19:9:19:13 | SSA call def(this.xs) | Properties.cs:20:13:20:14 | access to property xs | -| Properties.cs:18:19:18:20 | this.xs | Properties.cs:23:9:23:20 | SSA phi(this.xs) | Properties.cs:23:13:23:19 | access to property xs | -| Properties.cs:18:19:18:20 | this.xs | Properties.cs:24:9:24:23 | SSA def(this.xs) | Properties.cs:25:13:25:14 | access to property xs | -| Properties.cs:30:13:30:13 | f | Properties.cs:30:13:30:32 | SSA def(f) | Properties.cs:46:13:46:13 | access to local variable f | -| Properties.cs:30:13:30:13 | f | Properties.cs:50:9:50:17 | SSA phi(f) | Properties.cs:52:13:52:13 | access to local variable f | -| Properties.cs:31:19:31:22 | f.xs | Properties.cs:30:13:30:32 | SSA qualifier def(f.xs) | Properties.cs:31:19:31:22 | access to property xs | -| Properties.cs:31:19:31:22 | f.xs | Properties.cs:34:9:34:16 | SSA call def(f.xs) | Properties.cs:35:13:35:16 | access to property xs | -| Properties.cs:31:19:31:22 | f.xs | Properties.cs:38:9:38:13 | SSA call def(f.xs) | Properties.cs:43:13:43:16 | access to property xs | -| Properties.cs:31:19:31:22 | f.xs | Properties.cs:45:9:45:25 | SSA def(f.xs) | Properties.cs:46:13:46:16 | access to property xs | -| Properties.cs:31:19:31:22 | f.xs | Properties.cs:50:9:50:17 | SSA phi(f.xs) | Properties.cs:52:13:52:16 | access to property xs | -| Properties.cs:32:15:32:15 | z | Properties.cs:47:9:47:14 | SSA def(z) | Properties.cs:48:13:48:13 | access to local variable z | -| Properties.cs:32:19:32:20 | this.xs | Properties.cs:28:17:28:17 | SSA entry def(this.xs) | Properties.cs:32:19:32:20 | access to property xs | -| Properties.cs:32:19:32:20 | this.xs | Properties.cs:34:9:34:16 | SSA call def(this.xs) | Properties.cs:36:13:36:14 | access to property xs | -| Properties.cs:32:19:32:20 | this.xs | Properties.cs:38:9:38:13 | SSA call def(this.xs) | Properties.cs:40:13:40:14 | access to property xs | -| Properties.cs:32:19:32:20 | this.xs | Properties.cs:42:9:42:23 | SSA def(this.xs) | Properties.cs:53:13:53:14 | access to property xs | -| Properties.cs:33:19:33:22 | Properties.stat | Properties.cs:30:17:30:32 | SSA call def(Properties.stat) | Properties.cs:33:19:33:22 | access to property stat | -| Properties.cs:33:19:33:22 | Properties.stat | Properties.cs:34:9:34:16 | SSA call def(Properties.stat) | Properties.cs:37:13:37:16 | access to property stat | -| Properties.cs:33:19:33:22 | Properties.stat | Properties.cs:38:9:38:13 | SSA call def(Properties.stat) | Properties.cs:41:13:41:16 | access to property stat | -| Properties.cs:33:19:33:22 | Properties.stat | Properties.cs:51:9:51:24 | SSA call def(Properties.stat) | Properties.cs:54:13:54:16 | access to property stat | -| Properties.cs:61:23:61:23 | i | Properties.cs:63:16:63:16 | SSA phi(i) | Properties.cs:63:16:63:16 | access to parameter i | -| Properties.cs:65:24:65:31 | this.LoopProp | Properties.cs:61:17:61:17 | SSA entry def(this.LoopProp) | Properties.cs:65:24:65:31 | access to property LoopProp | -| Properties.cs:67:21:67:38 | this.SingleAccessedProp | Properties.cs:61:17:61:17 | SSA entry def(this.SingleAccessedProp) | Properties.cs:67:21:67:38 | access to property SingleAccessedProp | -| Properties.cs:72:20:72:37 | this.SingleAccessedProp | Properties.cs:70:17:70:17 | SSA entry def(this.SingleAccessedProp) | Properties.cs:72:20:72:37 | access to property SingleAccessedProp | -| Properties.cs:73:13:73:13 | f | Properties.cs:73:13:73:32 | SSA def(f) | Properties.cs:86:19:86:19 | access to local variable f | -| Properties.cs:73:13:73:13 | f | Properties.cs:74:27:74:54 | SSA capture def(f) | Properties.cs:74:35:74:35 | access to local variable f | -| Properties.cs:74:23:74:23 | a | Properties.cs:74:23:74:54 | SSA def(a) | Properties.cs:77:9:77:9 | access to local variable a | -| Properties.cs:74:23:74:23 | a | Properties.cs:82:24:82:46 | SSA capture def(a) | Properties.cs:82:31:82:31 | access to local variable a | -| Properties.cs:75:23:75:23 | b | Properties.cs:75:23:75:35 | SSA def(b) | Properties.cs:80:9:80:9 | access to local variable b | -| Properties.cs:75:23:75:23 | b | Properties.cs:85:24:85:46 | SSA capture def(b) | Properties.cs:85:31:85:31 | access to local variable b | -| Properties.cs:76:9:76:12 | f.xs | Properties.cs:77:9:77:11 | SSA call def(f.xs) | Properties.cs:78:19:78:22 | access to property xs | -| Properties.cs:76:9:76:12 | f.xs | Properties.cs:79:9:79:25 | SSA def(f.xs) | Properties.cs:81:19:81:22 | access to property xs | -| Properties.cs:76:9:76:12 | f.xs | Properties.cs:82:9:82:47 | SSA call def(f.xs) | Properties.cs:83:19:83:22 | access to property xs | -| Properties.cs:76:9:76:12 | f.xs | Properties.cs:84:9:84:25 | SSA def(f.xs) | Properties.cs:86:19:86:22 | access to property xs | -| Properties.cs:78:9:78:15 | this.xs | Properties.cs:81:9:81:22 | SSA def(this.xs) | Properties.cs:82:9:82:15 | access to property xs | -| Properties.cs:78:9:78:15 | this.xs | Properties.cs:83:9:83:22 | SSA def(this.xs) | Properties.cs:85:9:85:15 | access to property xs | -| Properties.cs:106:37:106:37 | p | Properties.cs:106:37:106:37 | SSA param(p) | Properties.cs:106:42:106:42 | access to parameter p | -| Properties.cs:114:20:114:29 | this.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props) | Properties.cs:116:17:116:26 | access to field Props | -| Properties.cs:114:20:114:35 | this.Props.Props | Properties.cs:113:9:113:22 | SSA call def(this.Props.Props) | Properties.cs:116:17:116:32 | access to field Props | -| Properties.cs:115:21:115:39 | this.Props.Props.xs | Properties.cs:113:9:113:22 | SSA qualifier def(this.Props.Props.xs) | Properties.cs:116:17:116:35 | access to property xs | -| Splitting.cs:3:18:3:18 | b | Splitting.cs:3:18:3:18 | SSA param(b) | Splitting.cs:15:13:15:13 | access to parameter b | -| Splitting.cs:5:13:5:13 | x | Splitting.cs:7:13:7:19 | [b (line 3): true] SSA def(x) | Splitting.cs:17:13:17:13 | access to local variable x | -| Splitting.cs:5:13:5:13 | x | Splitting.cs:10:13:10:19 | [b (line 3): false] SSA def(x) | Splitting.cs:14:9:14:9 | access to local variable x | -| Splitting.cs:22:18:22:18 | b | Splitting.cs:22:18:22:18 | SSA param(b) | Splitting.cs:35:13:35:13 | access to parameter b | -| Splitting.cs:24:13:24:13 | x | Splitting.cs:29:13:29:19 | [b (line 22): false] SSA def(x) | Splitting.cs:30:13:30:13 | access to local variable x | -| Splitting.cs:24:13:24:13 | x | Splitting.cs:32:9:32:15 | [b (line 22): false] SSA def(x) | Splitting.cs:34:9:34:9 | access to local variable x | -| Splitting.cs:24:13:24:13 | x | Splitting.cs:32:9:32:15 | [b (line 22): true] SSA def(x) | Splitting.cs:37:13:37:13 | access to local variable x | -| Splitting.cs:42:18:42:18 | b | Splitting.cs:42:18:42:18 | SSA param(b) | Splitting.cs:52:13:52:13 | access to parameter b | -| Splitting.cs:44:13:44:13 | x | Splitting.cs:49:13:49:19 | [b (line 42): false] SSA def(x) | Splitting.cs:50:13:50:13 | access to local variable x | -| Splitting.cs:44:13:44:13 | x | Splitting.cs:54:9:54:21 | SSA phi(x) | Splitting.cs:55:9:55:9 | access to local variable x | -| Test.cs:5:15:5:20 | param1 | Test.cs:5:15:5:20 | SSA param(param1) | Test.cs:11:13:11:18 | access to parameter param1 | -| Test.cs:5:15:5:20 | param1 | Test.cs:25:16:25:16 | SSA phi(param1) | Test.cs:27:17:27:22 | access to parameter param1 | -| Test.cs:5:15:5:20 | param1 | Test.cs:39:9:42:9 | SSA phi(param1) | Test.cs:41:13:41:18 | access to parameter param1 | -| Test.cs:5:67:5:72 | param2 | Test.cs:5:67:5:72 | SSA param(param2) | Test.cs:39:27:39:32 | access to parameter param2 | -| Test.cs:7:9:7:13 | this.field | Test.cs:24:9:24:15 | SSA phi(this.field) | Test.cs:33:13:33:17 | access to field field | -| Test.cs:8:13:8:13 | x | Test.cs:8:13:8:17 | SSA def(x) | Test.cs:13:13:13:13 | access to local variable x | -| Test.cs:8:13:8:13 | x | Test.cs:13:13:13:15 | SSA def(x) | Test.cs:14:19:14:19 | access to local variable x | -| Test.cs:8:13:8:13 | x | Test.cs:24:9:24:15 | SSA phi(x) | Test.cs:25:16:25:16 | access to local variable x | -| Test.cs:8:13:8:13 | x | Test.cs:34:25:34:25 | SSA phi(x) | Test.cs:36:13:36:13 | access to local variable x | -| Test.cs:8:13:8:13 | x | Test.cs:34:25:34:25 | SSA phi(x) | Test.cs:43:16:43:16 | access to local variable x | -| Test.cs:9:13:9:13 | y | Test.cs:19:13:19:17 | SSA def(y) | Test.cs:20:13:20:13 | access to local variable y | -| Test.cs:9:13:9:13 | y | Test.cs:25:16:25:16 | SSA phi(y) | Test.cs:31:13:31:13 | access to local variable y | -| Test.cs:9:13:9:13 | y | Test.cs:25:16:25:16 | SSA phi(y) | Test.cs:43:20:43:20 | access to local variable y | -| Test.cs:10:13:10:13 | z | Test.cs:24:9:24:15 | SSA phi(z) | Test.cs:24:13:24:13 | access to local variable z | -| Test.cs:34:18:34:18 | i | Test.cs:34:25:34:25 | SSA phi(i) | Test.cs:34:25:34:25 | access to local variable i | -| Test.cs:34:18:34:18 | i | Test.cs:34:25:34:25 | SSA phi(i) | Test.cs:34:33:34:33 | access to local variable i | -| Test.cs:39:22:39:22 | w | Test.cs:39:22:39:22 | SSA def(w) | Test.cs:41:23:41:23 | access to local variable w | -| Test.cs:46:16:46:18 | in | Test.cs:46:16:46:18 | SSA param(in) | Test.cs:48:13:48:15 | access to parameter in | -| Test.cs:56:13:56:17 | this.field | Test.cs:46:10:46:10 | SSA entry def(this.field) | Test.cs:56:13:56:17 | access to field field | -| Test.cs:56:13:56:17 | this.field | Test.cs:57:9:57:17 | SSA def(this.field) | Test.cs:58:13:58:17 | access to field field | -| Test.cs:62:16:62:16 | x | Test.cs:62:16:62:16 | SSA param(x) | Test.cs:66:28:66:28 | access to parameter x | -| Test.cs:68:45:68:45 | e | Test.cs:68:45:68:45 | [exception: DivideByZeroException] SSA def(e) | Test.cs:70:17:70:17 | access to local variable e | -| Test.cs:76:24:76:25 | b1 | Test.cs:76:24:76:25 | SSA param(b1) | Test.cs:80:13:80:14 | access to parameter b1 | -| Test.cs:76:33:76:34 | b2 | Test.cs:76:33:76:34 | SSA param(b2) | Test.cs:84:18:84:19 | access to parameter b2 | -| Test.cs:76:42:76:43 | b3 | Test.cs:76:42:76:43 | SSA param(b3) | Test.cs:90:13:90:14 | access to parameter b3 | -| Test.cs:76:51:76:52 | b4 | Test.cs:76:51:76:52 | SSA param(b4) | Test.cs:94:18:94:19 | access to parameter b4 | -| Test.cs:76:60:76:61 | b5 | Test.cs:76:60:76:61 | SSA param(b5) | Test.cs:102:13:102:14 | access to parameter b5 | -| Test.cs:76:69:76:70 | b6 | Test.cs:76:69:76:70 | SSA param(b6) | Test.cs:113:13:113:14 | access to parameter b6 | -| Test.cs:78:13:78:13 | x | Test.cs:78:13:78:17 | SSA def(x) | Test.cs:99:13:99:13 | access to local variable x | -| Test.cs:78:13:78:13 | x | Test.cs:78:13:78:17 | SSA def(x) | Test.cs:104:17:104:17 | access to local variable x | -| Test.cs:78:13:78:13 | x | Test.cs:108:13:108:17 | SSA def(x) | Test.cs:109:17:109:17 | access to local variable x | -| Test.cs:78:13:78:13 | x | Test.cs:113:9:116:9 | SSA phi(x) | Test.cs:115:17:115:17 | access to local variable x | -| Tuples.cs:10:14:10:14 | x | Tuples.cs:10:9:10:54 | SSA def(x) | Tuples.cs:11:13:11:13 | access to local variable x | -| Tuples.cs:10:14:10:14 | x | Tuples.cs:14:9:14:32 | SSA def(x) | Tuples.cs:15:13:15:13 | access to local variable x | -| Tuples.cs:10:14:10:14 | x | Tuples.cs:23:9:23:37 | SSA def(x) | Tuples.cs:24:13:24:13 | access to local variable x | -| Tuples.cs:10:23:10:23 | b | Tuples.cs:10:9:10:54 | SSA def(b) | Tuples.cs:12:13:12:13 | access to local variable b | -| Tuples.cs:10:23:10:23 | b | Tuples.cs:14:9:14:32 | SSA def(b) | Tuples.cs:16:13:16:13 | access to local variable b | -| Tuples.cs:10:33:10:33 | s | Tuples.cs:10:9:10:54 | SSA def(s) | Tuples.cs:13:13:13:13 | access to local variable s | -| Tuples.cs:10:33:10:33 | s | Tuples.cs:14:9:14:32 | SSA def(s) | Tuples.cs:17:13:17:13 | access to local variable s | -| Tuples.cs:18:40:18:44 | tuple | Tuples.cs:18:40:18:57 | SSA def(tuple) | Tuples.cs:19:13:19:17 | access to local variable tuple | -| Tuples.cs:20:10:20:17 | this.Property | Tuples.cs:20:9:20:34 | SSA def(this.Property) | Tuples.cs:21:13:21:20 | access to property Property | -| Tuples.cs:20:20:20:24 | this.Field | Tuples.cs:20:9:20:34 | SSA def(this.Field) | Tuples.cs:22:13:22:17 | access to field Field | -| Tuples.cs:20:20:20:24 | this.Field | Tuples.cs:26:9:26:33 | SSA def(this.Field) | Tuples.cs:27:13:27:17 | access to field Field | -| Tuples.cs:25:13:25:13 | t | Tuples.cs:25:13:25:28 | SSA def(t) | Tuples.cs:28:13:28:13 | access to local variable t | -| Tuples.cs:26:17:26:23 | t.Field | Tuples.cs:26:9:26:33 | SSA def(t.Field) | Tuples.cs:28:13:28:19 | access to field Field | diff --git a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.ql b/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.ql deleted file mode 100644 index ae71b892a5c..00000000000 --- a/csharp/ql/test/library-tests/dataflow/ssa/SsaDefLastRead.ql +++ /dev/null @@ -1,5 +0,0 @@ -import csharp - -from Ssa::Definition def, AssignableRead read -where read = def.getALastRead() -select def.getSourceVariable(), def, read diff --git a/docs/codeql/reusables/supported-versions-compilers.rst b/docs/codeql/reusables/supported-versions-compilers.rst index dc109f35301..5384e35ac41 100644 --- a/docs/codeql/reusables/supported-versions-compilers.rst +++ b/docs/codeql/reusables/supported-versions-compilers.rst @@ -11,11 +11,11 @@ Microsoft extensions (up to VS 2022), Arm Compiler 5 [4]_","``.cpp``, ``.c++``, ``.cxx``, ``.hpp``, ``.hh``, ``.h++``, ``.hxx``, ``.c``, ``.cc``, ``.h``" - C#,C# up to 12,"Microsoft Visual Studio up to 2019 with .NET up to 4.8, + C#,C# up to 13,"Microsoft Visual Studio up to 2019 with .NET up to 4.8, .NET Core up to 3.1 - .NET 5, .NET 6, .NET 7, .NET 8","``.sln``, ``.csproj``, ``.cs``, ``.cshtml``, ``.xaml``" + .NET 5, .NET 6, .NET 7, .NET 8, .NET 9","``.sln``, ``.csproj``, ``.cs``, ``.cshtml``, ``.xaml``" Go (aka Golang), "Go up to 1.23", "Go 1.11 or more recent", ``.go`` Java,"Java 7 to 22 [5]_","javac (OpenJDK and Oracle JDK), diff --git a/go/Makefile b/go/Makefile index 4597245594e..821ab49fc2a 100644 --- a/go/Makefile +++ b/go/Makefile @@ -61,7 +61,7 @@ test: all build/testdb/check-upgrade-path .PHONY: build/testdb/check-upgrade-path build/testdb/check-upgrade-path : build/testdb/go.dbscheme ql/lib/go.dbscheme codeql dataset upgrade build/testdb --search-path ql/lib - diff -q build/testdb/go.dbscheme ql/lib/go.dbscheme + diff -u build/testdb/go.dbscheme ql/lib/go.dbscheme .PHONY: build/testdb/go.dbscheme build/testdb/go.dbscheme: ql/lib/upgrades/initial/go.dbscheme diff --git a/go/actions/test/action.yml b/go/actions/test/action.yml index 0a4f13fa0ef..9ab7f9becfb 100644 --- a/go/actions/test/action.yml +++ b/go/actions/test/action.yml @@ -4,7 +4,7 @@ inputs: go-test-version: description: Which Go version to use for running the tests required: false - default: "~1.23.1" + default: "~1.24.0" run-code-checks: description: Whether to run formatting, code and qhelp generation checks required: false diff --git a/go/documentation/library-coverage/coverage.csv b/go/documentation/library-coverage/coverage.csv index 537b0db686b..f88224d24e8 100644 --- a/go/documentation/library-coverage/coverage.csv +++ b/go/documentation/library-coverage/coverage.csv @@ -16,7 +16,7 @@ container/ring,,,5,,,,,,,,,,,,,,,,,,,,,,,5, context,,,5,,,,,,,,,,,,,,,,,,,,,,,5, crypto,,,10,,,,,,,,,,,,,,,,,,,,,,,10, database/sql,30,18,12,,,,,,,,,,,,30,,,,,,18,,,,,12, -encoding,,,77,,,,,,,,,,,,,,,,,,,,,,,77, +encoding,,,81,,,,,,,,,,,,,,,,,,,,,,,81, errors,,,3,,,,,,,,,,,,,,,,,,,,,,,3, expvar,,,6,,,,,,,,,,,,,,,,,,,,,,,6, fmt,3,,16,,,,3,,,,,,,,,,,,,,,,,,,16, @@ -139,4 +139,5 @@ syscall,5,2,8,5,,,,,,,,,,,,,,,,,,2,,,,8, text/scanner,,,3,,,,,,,,,,,,,,,,,,,,,,,3, text/tabwriter,,,1,,,,,,,,,,,,,,,,,,,,,,,1, text/template,,,4,,,,,,,,,,,,,,,,,,,,,,,4, +weak,,,2,,,,,,,,,,,,,,,,,,,,,,,2, xorm.io/xorm,34,,,,,,,,,,,,,,34,,,,,,,,,,,, diff --git a/go/documentation/library-coverage/coverage.rst b/go/documentation/library-coverage/coverage.rst index 3c0df45a9b7..66f05c4faa1 100644 --- a/go/documentation/library-coverage/coverage.rst +++ b/go/documentation/library-coverage/coverage.rst @@ -8,32 +8,43 @@ Go framework & library support Framework / library,Package,Flow sources,Taint & value steps,Sinks (total) `Afero `_,``github.com/spf13/afero*``,,,34 + `Bun `_,``github.com/uptrace/bun*``,,,63 `CleverGo `_,"``clevergo.tech/clevergo*``, ``github.com/clevergo/clevergo*``",,,2 `Couchbase official client(gocb) `_,"``github.com/couchbase/gocb*``, ``gopkg.in/couchbase/gocb*``",,36,16 `Couchbase unofficial client `_,``github.com/couchbaselabs/gocb*``,,18,8 `Echo `_,``github.com/labstack/echo*``,12,2,3 `Fiber `_,``github.com/gofiber/fiber*``,,,5 `Fosite `_,``github.com/ory/fosite*``,,,2 + `GORM `_,"``github.com/go-gorm/gorm*``, ``github.com/jinzhu/gorm*``, ``gorm.io/gorm*``",45,3,39 `Gin `_,``github.com/gin-gonic/gin*``,46,2,3 `Glog `_,"``github.com/golang/glog*``, ``gopkg.in/glog*``, ``k8s.io/klog*``",,,270 `Go JOSE `_,"``github.com/go-jose/go-jose*``, ``github.com/square/go-jose*``, ``gopkg.in/square/go-jose*``, ``gopkg.in/go-jose/go-jose*``",,16,12 `Go kit `_,``github.com/go-kit/kit*``,,,1 `Go-spew `_,``github.com/davecgh/go-spew/spew*``,,,9 + `GoDotEnv `_,``github.com/joho/godotenv*``,4,, + `GoFrame `_,``github.com/gogf/gf*``,,,51 `Gokogiri `_,"``github.com/jbowtie/gokogiri*``, ``github.com/moovweb/gokogiri*``",,,10 `Iris `_,``github.com/kataras/iris*``,,,14 `Kubernetes `_,"``k8s.io/api*``, ``k8s.io/apimachinery*``",,57, `Logrus `_,"``github.com/Sirupsen/logrus*``, ``github.com/sirupsen/logrus*``",,,290 `Macaron `_,``gopkg.in/macaron*``,12,1,1 + `MongoDB Go Driver `_,``go.mongodb.org/mongo-driver*``,,,14 `Revel `_,"``github.com/revel/revel*``, ``github.com/robfig/revel*``",46,20,4 `SendGrid `_,``github.com/sendgrid/sendgrid-go*``,,1, - `Standard library `_,"````, ``archive/*``, ``bufio``, ``bytes``, ``cmp``, ``compress/*``, ``container/*``, ``context``, ``crypto``, ``crypto/*``, ``database/*``, ``debug/*``, ``embed``, ``encoding``, ``encoding/*``, ``errors``, ``expvar``, ``flag``, ``fmt``, ``go/*``, ``hash``, ``hash/*``, ``html``, ``html/*``, ``image``, ``image/*``, ``index/*``, ``io``, ``io/*``, ``log``, ``log/*``, ``maps``, ``math``, ``math/*``, ``mime``, ``mime/*``, ``net``, ``net/*``, ``os``, ``os/*``, ``path``, ``path/*``, ``plugin``, ``reflect``, ``reflect/*``, ``regexp``, ``regexp/*``, ``slices``, ``sort``, ``strconv``, ``strings``, ``sync``, ``sync/*``, ``syscall``, ``syscall/*``, ``testing``, ``testing/*``, ``text/*``, ``time``, ``time/*``, ``unicode``, ``unicode/*``, ``unsafe``",52,603,104 + `Squirrel `_,"``github.com/Masterminds/squirrel*``, ``github.com/lann/squirrel*``, ``gopkg.in/Masterminds/squirrel``",,,96 + `Standard library `_,"````, ``archive/*``, ``bufio``, ``bytes``, ``cmp``, ``compress/*``, ``container/*``, ``context``, ``crypto``, ``crypto/*``, ``database/*``, ``debug/*``, ``embed``, ``encoding``, ``encoding/*``, ``errors``, ``expvar``, ``flag``, ``fmt``, ``go/*``, ``hash``, ``hash/*``, ``html``, ``html/*``, ``image``, ``image/*``, ``index/*``, ``io``, ``io/*``, ``log``, ``log/*``, ``maps``, ``math``, ``math/*``, ``mime``, ``mime/*``, ``net``, ``net/*``, ``os``, ``os/*``, ``path``, ``path/*``, ``plugin``, ``reflect``, ``reflect/*``, ``regexp``, ``regexp/*``, ``slices``, ``sort``, ``strconv``, ``strings``, ``sync``, ``sync/*``, ``syscall``, ``syscall/*``, ``testing``, ``testing/*``, ``text/*``, ``time``, ``time/*``, ``unicode``, ``unicode/*``, ``unsafe``, ``weak``",52,609,104 + `XORM `_,"``github.com/go-xorm/xorm*``, ``xorm.io/xorm*``",,,68 `XPath `_,``github.com/antchfx/xpath*``,,,4 `appleboy/gin-jwt `_,``github.com/appleboy/gin-jwt*``,,,1 `beego `_,"``github.com/astaxie/beego*``, ``github.com/beego/beego*``",102,63,213 `chi `_,``github.com/go-chi/chi*``,3,, `cristalhq/jwt `_,``github.com/cristalhq/jwt*``,,,1 + `env `_,``github.com/caarlos0/env*``,5,2, + `envconfig `_,``github.com/kelseyhightower/envconfig*``,6,, + `envy `_,``github.com/gobuffalo/envy*``,7,, `fasthttp `_,``github.com/valyala/fasthttp*``,50,5,35 `gf-jwt `_,``github.com/gogf/gf-jwt*``,,,1 + `go-envparse `_,``github.com/hashicorp/go-envparse*``,1,, `go-pg `_,``github.com/go-pg/pg*``,,6, `go-restful `_,``github.com/emicklei/go-restful*``,7,, `go-sh `_,``github.com/codeskyblue/go-sh*``,,,4 @@ -42,6 +53,7 @@ Go framework & library support `goproxy `_,``github.com/elazarl/goproxy*``,2,2,2 `gorilla/mux `_,``github.com/gorilla/mux*``,1,, `gorilla/websocket `_,``github.com/gorilla/websocket*``,3,, + `gorqlite `_,"``github.com/raindog308/gorqlite*``, ``github.com/rqlite/gorqlite*``",,,48 `goxpath `_,``github.com/ChrisTrenkamp/goxpath*``,,,3 `htmlquery `_,``github.com/antchfx/htmlquery*``,,,4 `json-iterator `_,``github.com/json-iterator/go*``,,4, @@ -54,12 +66,12 @@ Go framework & library support `lestrrat-go/libxml2 `_,``github.com/lestrrat-go/libxml2*``,,,3 `nhooyr.io/websocket `_,``nhooyr.io/websocket*``,2,, `protobuf `_,"``github.com/golang/protobuf*``, ``google.golang.org/protobuf*``",,16, + `sqlx `_,``github.com/jmoiron/sqlx*``,49,11,12 `ws `_,``github.com/gobwas/ws*``,2,, `xmlpath `_,"``gopkg.in/xmlpath*``, ``github.com/go-xmlpath/xmlpath*``, ``github.com/crankycoder/xmlpath*``, ``launchpad.net/xmlpath*``, ``github.com/masterzen/xmlpath*``, ``github.com/going/toolkit/xmlpath*``, ``gopkg.in/go-xmlpath/xmlpath*``",,,14 `xmlquery `_,``github.com/antchfx/xmlquery*``,,,8 `xpathparser `_,``github.com/santhosh-tekuri/xpathparser*``,,,2 `yaml `_,``gopkg.in/yaml*``,,9, `zap `_,``go.uber.org/zap*``,,11,33 - Others,"``github.com/Masterminds/squirrel``, ``github.com/caarlos0/env``, ``github.com/go-gorm/gorm``, ``github.com/go-xorm/xorm``, ``github.com/gobuffalo/envy``, ``github.com/gogf/gf/database/gdb``, ``github.com/hashicorp/go-envparse``, ``github.com/jinzhu/gorm``, ``github.com/jmoiron/sqlx``, ``github.com/joho/godotenv``, ``github.com/kelseyhightower/envconfig``, ``github.com/lann/squirrel``, ``github.com/raindog308/gorqlite``, ``github.com/rqlite/gorqlite``, ``github.com/uptrace/bun``, ``go.mongodb.org/mongo-driver/mongo``, ``gopkg.in/Masterminds/squirrel``, ``gorm.io/gorm``, ``xorm.io/xorm``",117,16,391 - Totals,,459,941,1532 + Totals,,459,947,1532 diff --git a/go/documentation/library-coverage/frameworks.csv b/go/documentation/library-coverage/frameworks.csv index 7cb5e467634..bd5a9249068 100644 --- a/go/documentation/library-coverage/frameworks.csv +++ b/go/documentation/library-coverage/frameworks.csv @@ -1,22 +1,30 @@ Framework name,URL,Package prefixes -Standard library,https://pkg.go.dev/std, archive/* bufio bytes cmp compress/* container/* context crypto crypto/* database/* debug/* embed encoding encoding/* errors expvar flag fmt go/* hash hash/* html html/* image image/* index/* io io/* log log/* maps math math/* mime mime/* net net/* os os/* path path/* plugin reflect reflect/* regexp regexp/* slices sort strconv strings sync sync/* syscall syscall/* testing testing/* text/* time time/* unicode unicode/* unsafe +Standard library,https://pkg.go.dev/std, archive/* bufio bytes cmp compress/* container/* context crypto crypto/* database/* debug/* embed encoding encoding/* errors expvar flag fmt go/* hash hash/* html html/* image image/* index/* io io/* log log/* maps math math/* mime mime/* net net/* os os/* path path/* plugin reflect reflect/* regexp regexp/* slices sort strconv strings sync sync/* syscall syscall/* testing testing/* text/* time time/* unicode unicode/* unsafe weak appleboy/gin-jwt,https://github.com/appleboy/gin-jwt,github.com/appleboy/gin-jwt* Afero,https://github.com/spf13/afero,github.com/spf13/afero* beego,https://beego.me/,github.com/astaxie/beego* github.com/beego/beego* +Bun,https://bun.uptrace.dev/,github.com/uptrace/bun* CleverGo,https://github.com/clevergo/clevergo,clevergo.tech/clevergo* github.com/clevergo/clevergo* Couchbase official client(gocb),https://github.com/couchbase/gocb,github.com/couchbase/gocb* gopkg.in/couchbase/gocb* chi,https://go-chi.io/,github.com/go-chi/chi* Couchbase unofficial client,http://www.github.com/couchbase/go-couchbase,github.com/couchbaselabs/gocb* cristalhq/jwt,https://github.com/cristalhq/jwt,github.com/cristalhq/jwt* Echo,https://echo.labstack.com/,github.com/labstack/echo* +env,https://github.com/caarlos0/env,github.com/caarlos0/env* +envconfig,https://github.com/kelseyhightower/envconfig,github.com/kelseyhightower/envconfig* +envy,https://github.com/gobuffalo/envy,github.com/gobuffalo/envy* fasthttp,https://github.com/valyala/fasthttp,github.com/valyala/fasthttp* Fiber,https://github.com/gofiber/fiber,github.com/gofiber/fiber* Fosite,https://github.com/ory/fosite,github.com/ory/fosite* gf-jwt,https://github.com/gogf/gf-jwt,github.com/gogf/gf-jwt* Gin,https://github.com/gin-gonic/gin,github.com/gin-gonic/gin* Glog,https://github.com/golang/glog,github.com/golang/glog* gopkg.in/glog* k8s.io/klog* +GoDotEnv,https://github.com/joho/godotenv,github.com/joho/godotenv* +GoFrame,https://goframe.org/en/,github.com/gogf/gf* +GORM,https://gorm.io,github.com/go-gorm/gorm* github.com/jinzhu/gorm* gorm.io/gorm* Go JOSE,https://github.com/go-jose/go-jose,github.com/go-jose/go-jose* github.com/square/go-jose* gopkg.in/square/go-jose* gopkg.in/go-jose/go-jose* Go kit,https://gokit.io/,github.com/go-kit/kit* +go-envparse,https://github.com/hashicorp/go-envparse,github.com/hashicorp/go-envparse* go-pg,https://pg.uptrace.dev/,github.com/go-pg/pg* go-restful,https://github.com/emicklei/go-restful,github.com/emicklei/go-restful* go-sh,https://github.com/codeskyblue/go-sh,github.com/codeskyblue/go-sh* @@ -27,6 +35,7 @@ golang.org/x/net,https://pkg.go.dev/golang.org/x/net,golang.org/x/net* goproxy,https://github.com/elazarl/goproxy,github.com/elazarl/goproxy* gorilla/mux,https://github.com/gorilla/mux,github.com/gorilla/mux* gorilla/websocket,https://github.com/gorilla/websocket,github.com/gorilla/websocket* +gorqlite,https://github.com/rqlite/gorqlite,github.com/raindog308/gorqlite* github.com/rqlite/gorqlite* goxpath,https://github.com/ChrisTrenkamp/goxpath/wiki,github.com/ChrisTrenkamp/goxpath* htmlquery,https://github.com/antchfx/htmlquery,github.com/antchfx/htmlquery* Iris,https://www.iris-go.com/,github.com/kataras/iris* @@ -41,13 +50,17 @@ lestrrat-go/jwx,https://github.com/lestrrat-go/jwx,github.com/lestrrat-go/jwx* g lestrrat-go/libxml2,https://github.com/lestrrat-go/libxml2,github.com/lestrrat-go/libxml2* Logrus,https://github.com/sirupsen/logrus,github.com/Sirupsen/logrus* github.com/sirupsen/logrus* Macaron,https://gopkg.in/macaron.v1,gopkg.in/macaron* +MongoDB Go Driver,https://www.mongodb.com/docs/drivers/go/current/,go.mongodb.org/mongo-driver* nhooyr.io/websocket,https://nhooyr.io/websocket,nhooyr.io/websocket* protobuf,https://pkg.go.dev/google.golang.org/protobuf,github.com/golang/protobuf* google.golang.org/protobuf* Revel,http://revel.github.io/,github.com/revel/revel* github.com/robfig/revel* SendGrid,https://github.com/sendgrid/sendgrid-go,github.com/sendgrid/sendgrid-go* +sqlx,http://jmoiron.github.io/sqlx/,github.com/jmoiron/sqlx* +Squirrel,https://github.com/Masterminds/squirrel,github.com/Masterminds/squirrel* github.com/lann/squirrel* gopkg.in/Masterminds/squirrel ws,https://github.com/gobwas/ws,github.com/gobwas/ws* xmlpath,https://gopkg.in/xmlpath.v2,gopkg.in/xmlpath* github.com/go-xmlpath/xmlpath* github.com/crankycoder/xmlpath* launchpad.net/xmlpath* github.com/masterzen/xmlpath* github.com/going/toolkit/xmlpath* gopkg.in/go-xmlpath/xmlpath* xmlquery,https://github.com/antchfx/xmlquery,github.com/antchfx/xmlquery* +XORM,https://xorm.io,github.com/go-xorm/xorm* xorm.io/xorm* XPath,https://github.com/antchfx/xpath,github.com/antchfx/xpath* xpathparser,https://github.com/santhosh-tekuri/xpathparser,github.com/santhosh-tekuri/xpathparser* yaml,https://gopkg.in/yaml.v3,gopkg.in/yaml* diff --git a/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/go.dbscheme b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/go.dbscheme new file mode 100644 index 00000000000..4bd57e09327 --- /dev/null +++ b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/go.dbscheme @@ -0,0 +1,552 @@ +/** Auto-generated dbscheme; do not edit. Run `make gen` in directory `go/` to regenerate. */ + + +/** Duplicate code **/ + +duplicateCode( + unique int id : @duplication, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +similarCode( + unique int id : @similarity, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +@duplication_or_similarity = @duplication | @similarity; + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref); + +/** External data **/ + +externalData( + int id : @externalDataElement, + varchar(900) path : string ref, + int column: int ref, + varchar(900) value : string ref +); + +snapshotDate(unique date snapshotDate : date ref); + +sourceLocationPrefix(varchar(900) prefix : string ref); + + +/* + * XML Files + */ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +compilations(unique int id: @compilation, string cwd: string ref); + +#keyset[id, num] +compilation_args(int id: @compilation ref, int num: int ref, string arg: string ref); + +#keyset[id, num, kind] +compilation_time(int id: @compilation ref, int num: int ref, int kind: int ref, float secs: float ref); + +diagnostic_for(unique int diagnostic: @diagnostic ref, int compilation: @compilation ref, int file_number: int ref, int file_number_diagnostic_number: int ref); + +compilation_finished(unique int id: @compilation ref, float cpu_seconds: float ref, float elapsed_seconds: float ref); + +#keyset[id, num] +compilation_compiling_files(int id: @compilation ref, int num: int ref, int file: @file ref); + +diagnostics(unique int id: @diagnostic, int severity: int ref, string error_tag: string ref, string error_message: string ref, + string full_error_message: string ref, int location: @location ref); + +locations_default(unique int id: @location_default, int file: @file ref, int beginLine: int ref, int beginColumn: int ref, + int endLine: int ref, int endColumn: int ref); + +numlines(int element_id: @sourceline ref, int num_lines: int ref, int num_code: int ref, int num_comment: int ref); + +files(unique int id: @file, string name: string ref); + +folders(unique int id: @folder, string name: string ref); + +containerparent(int parent: @container ref, unique int child: @container ref); + +has_location(unique int locatable: @locatable ref, int location: @location ref); + +#keyset[parent, idx] +comment_groups(unique int id: @comment_group, int parent: @file ref, int idx: int ref); + +comments(unique int id: @comment, int kind: int ref, int parent: @comment_group ref, int idx: int ref, string text: string ref); + +doc_comments(unique int node: @documentable ref, int comment: @comment_group ref); + +#keyset[parent, idx] +exprs(unique int id: @expr, int kind: int ref, int parent: @exprparent ref, int idx: int ref); + +literals(unique int expr: @expr ref, string value: string ref, string raw: string ref); + +constvalues(unique int expr: @expr ref, string value: string ref, string exact: string ref); + +fields(unique int id: @field, int parent: @fieldparent ref, int idx: int ref); + +typeparamdecls(unique int id: @typeparamdecl, int parent: @typeparamdeclparent ref, int idx: int ref); + +#keyset[parent, idx] +stmts(unique int id: @stmt, int kind: int ref, int parent: @stmtparent ref, int idx: int ref); + +#keyset[parent, idx] +decls(unique int id: @decl, int kind: int ref, int parent: @declparent ref, int idx: int ref); + +#keyset[parent, idx] +specs(unique int id: @spec, int kind: int ref, int parent: @gendecl ref, int idx: int ref); + +scopes(unique int id: @scope, int kind: int ref); + +scopenesting(unique int inner: @scope ref, int outer: @scope ref); + +scopenodes(unique int node: @scopenode ref, int scope: @localscope ref); + +objects(unique int id: @object, int kind: int ref, string name: string ref); + +objectscopes(unique int object: @object ref, int scope: @scope ref); + +objecttypes(unique int object: @object ref, int tp: @type ref); + +methodreceivers(unique int method: @object ref, int receiver: @object ref); + +fieldstructs(unique int field: @object ref, int struct: @structtype ref); + +methodhosts(int method: @object ref, int host: @namedtype ref); + +defs(int ident: @ident ref, int object: @object ref); + +uses(int ident: @ident ref, int object: @object ref); + +types(unique int id: @type, int kind: int ref); + +type_of(unique int expr: @expr ref, int tp: @type ref); + +typename(unique int tp: @type ref, string name: string ref); + +key_type(unique int map: @maptype ref, int tp: @type ref); + +element_type(unique int container: @containertype ref, int tp: @type ref); + +base_type(unique int ptr: @pointertype ref, int tp: @type ref); + +underlying_type(unique int named: @namedtype ref, int tp: @type ref); + +#keyset[parent, index] +component_types(int parent: @compositetype ref, int index: int ref, string name: string ref, int tp: @type ref); + +#keyset[parent, index] +struct_tags(int parent: @structtype ref, int index: int ref, string tag: string ref); + +#keyset[interface, index] +interface_private_method_ids(int interface: @interfacetype ref, int index: int ref, string id: string ref); + +array_length(unique int tp: @arraytype ref, string len: string ref); + +type_objects(unique int tp: @type ref, int object: @object ref); + +packages(unique int id: @package, string name: string ref, string path: string ref, int scope: @packagescope ref); + +#keyset[parent, idx] +modexprs(unique int id: @modexpr, int kind: int ref, int parent: @modexprparent ref, int idx: int ref); + +#keyset[parent, idx] +modtokens(string token: string ref, int parent: @modexpr ref, int idx: int ref); + +#keyset[package, idx] +errors(unique int id: @error, int kind: int ref, string msg: string ref, string rawpos: string ref, + string file: string ref, int line: int ref, int col: int ref, int package: @package ref, int idx: int ref); + +has_ellipsis(int id: @callorconversionexpr ref); + +variadic(int id: @signaturetype ref); + +#keyset[parent, idx] +typeparam(unique int tp: @typeparamtype ref, string name: string ref, int bound: @compositetype ref, + int parent: @typeparamparentobject ref, int idx: int ref); + +@container = @file | @folder; + +@locatable = @xmllocatable | @node | @localscope; + +@node = @documentable | @exprparent | @modexprparent | @fieldparent | @stmtparent | @declparent | @typeparamdeclparent + | @scopenode | @comment_group | @comment; + +@documentable = @file | @field | @typeparamdecl | @spec | @gendecl | @funcdecl | @modexpr; + +@exprparent = @funcdef | @file | @expr | @field | @stmt | @decl | @typeparamdecl | @spec; + +@modexprparent = @file | @modexpr; + +@fieldparent = @decl | @structtypeexpr | @functypeexpr | @interfacetypeexpr; + +@stmtparent = @funcdef | @stmt | @decl; + +@declparent = @file | @declstmt; + +@typeparamdeclparent = @funcdecl | @typespec; + +@funcdef = @funclit | @funcdecl; + +@scopenode = @file | @functypeexpr | @blockstmt | @ifstmt | @caseclause | @switchstmt | @commclause | @loopstmt; + +@location = @location_default; + +@sourceline = @locatable; + +case @comment.kind of + 0 = @slashslashcomment +| 1 = @slashstarcomment; + +case @expr.kind of + 0 = @badexpr +| 1 = @ident +| 2 = @ellipsis +| 3 = @intlit +| 4 = @floatlit +| 5 = @imaglit +| 6 = @charlit +| 7 = @stringlit +| 8 = @funclit +| 9 = @compositelit +| 10 = @parenexpr +| 11 = @selectorexpr +| 12 = @indexexpr +| 13 = @genericfunctioninstantiationexpr +| 14 = @generictypeinstantiationexpr +| 15 = @sliceexpr +| 16 = @typeassertexpr +| 17 = @callorconversionexpr +| 18 = @starexpr +| 19 = @keyvalueexpr +| 20 = @arraytypeexpr +| 21 = @structtypeexpr +| 22 = @functypeexpr +| 23 = @interfacetypeexpr +| 24 = @maptypeexpr +| 25 = @typesetliteralexpr +| 26 = @plusexpr +| 27 = @minusexpr +| 28 = @notexpr +| 29 = @complementexpr +| 30 = @derefexpr +| 31 = @addressexpr +| 32 = @arrowexpr +| 33 = @lorexpr +| 34 = @landexpr +| 35 = @eqlexpr +| 36 = @neqexpr +| 37 = @lssexpr +| 38 = @leqexpr +| 39 = @gtrexpr +| 40 = @geqexpr +| 41 = @addexpr +| 42 = @subexpr +| 43 = @orexpr +| 44 = @xorexpr +| 45 = @mulexpr +| 46 = @quoexpr +| 47 = @remexpr +| 48 = @shlexpr +| 49 = @shrexpr +| 50 = @andexpr +| 51 = @andnotexpr +| 52 = @sendchantypeexpr +| 53 = @recvchantypeexpr +| 54 = @sendrcvchantypeexpr; + +@basiclit = @intlit | @floatlit | @imaglit | @charlit | @stringlit; + +@operatorexpr = @logicalexpr | @arithmeticexpr | @bitwiseexpr | @unaryexpr | @binaryexpr; + +@logicalexpr = @logicalunaryexpr | @logicalbinaryexpr; + +@arithmeticexpr = @arithmeticunaryexpr | @arithmeticbinaryexpr; + +@bitwiseexpr = @bitwiseunaryexpr | @bitwisebinaryexpr; + +@unaryexpr = @logicalunaryexpr | @bitwiseunaryexpr | @arithmeticunaryexpr | @derefexpr | @addressexpr | @arrowexpr; + +@logicalunaryexpr = @notexpr; + +@bitwiseunaryexpr = @complementexpr; + +@arithmeticunaryexpr = @plusexpr | @minusexpr; + +@binaryexpr = @logicalbinaryexpr | @bitwisebinaryexpr | @arithmeticbinaryexpr | @comparison; + +@logicalbinaryexpr = @lorexpr | @landexpr; + +@bitwisebinaryexpr = @shiftexpr | @orexpr | @xorexpr | @andexpr | @andnotexpr; + +@arithmeticbinaryexpr = @addexpr | @subexpr | @mulexpr | @quoexpr | @remexpr; + +@shiftexpr = @shlexpr | @shrexpr; + +@comparison = @equalitytest | @relationalcomparison; + +@equalitytest = @eqlexpr | @neqexpr; + +@relationalcomparison = @lssexpr | @leqexpr | @gtrexpr | @geqexpr; + +@chantypeexpr = @sendchantypeexpr | @recvchantypeexpr | @sendrcvchantypeexpr; + +case @stmt.kind of + 0 = @badstmt +| 1 = @declstmt +| 2 = @emptystmt +| 3 = @labeledstmt +| 4 = @exprstmt +| 5 = @sendstmt +| 6 = @incstmt +| 7 = @decstmt +| 8 = @gostmt +| 9 = @deferstmt +| 10 = @returnstmt +| 11 = @breakstmt +| 12 = @continuestmt +| 13 = @gotostmt +| 14 = @fallthroughstmt +| 15 = @blockstmt +| 16 = @ifstmt +| 17 = @caseclause +| 18 = @exprswitchstmt +| 19 = @typeswitchstmt +| 20 = @commclause +| 21 = @selectstmt +| 22 = @forstmt +| 23 = @rangestmt +| 24 = @assignstmt +| 25 = @definestmt +| 26 = @addassignstmt +| 27 = @subassignstmt +| 28 = @mulassignstmt +| 29 = @quoassignstmt +| 30 = @remassignstmt +| 31 = @andassignstmt +| 32 = @orassignstmt +| 33 = @xorassignstmt +| 34 = @shlassignstmt +| 35 = @shrassignstmt +| 36 = @andnotassignstmt; + +@incdecstmt = @incstmt | @decstmt; + +@assignment = @simpleassignstmt | @compoundassignstmt; + +@simpleassignstmt = @assignstmt | @definestmt; + +@compoundassignstmt = @addassignstmt | @subassignstmt | @mulassignstmt | @quoassignstmt | @remassignstmt + | @andassignstmt | @orassignstmt | @xorassignstmt | @shlassignstmt | @shrassignstmt | @andnotassignstmt; + +@branchstmt = @breakstmt | @continuestmt | @gotostmt | @fallthroughstmt; + +@switchstmt = @exprswitchstmt | @typeswitchstmt; + +@loopstmt = @forstmt | @rangestmt; + +case @decl.kind of + 0 = @baddecl +| 1 = @importdecl +| 2 = @constdecl +| 3 = @typedecl +| 4 = @vardecl +| 5 = @funcdecl; + +@gendecl = @importdecl | @constdecl | @typedecl | @vardecl; + +case @spec.kind of + 0 = @importspec +| 1 = @valuespec +| 2 = @typedefspec +| 3 = @aliasspec; + +@typespec = @typedefspec | @aliasspec; + +case @object.kind of + 0 = @pkgobject +| 1 = @decltypeobject +| 2 = @builtintypeobject +| 3 = @declconstobject +| 4 = @builtinconstobject +| 5 = @declvarobject +| 6 = @declfunctionobject +| 7 = @builtinfunctionobject +| 8 = @labelobject; + +@typeparamparentobject = @decltypeobject | @declfunctionobject; + +@declobject = @decltypeobject | @declconstobject | @declvarobject | @declfunctionobject; + +@builtinobject = @builtintypeobject | @builtinconstobject | @builtinfunctionobject; + +@typeobject = @decltypeobject | @builtintypeobject; + +@valueobject = @constobject | @varobject | @functionobject; + +@constobject = @declconstobject | @builtinconstobject; + +@varobject = @declvarobject; + +@functionobject = @declfunctionobject | @builtinfunctionobject; + +case @scope.kind of + 0 = @universescope +| 1 = @packagescope +| 2 = @localscope; + +case @type.kind of + 0 = @invalidtype +| 1 = @boolexprtype +| 2 = @inttype +| 3 = @int8type +| 4 = @int16type +| 5 = @int32type +| 6 = @int64type +| 7 = @uinttype +| 8 = @uint8type +| 9 = @uint16type +| 10 = @uint32type +| 11 = @uint64type +| 12 = @uintptrtype +| 13 = @float32type +| 14 = @float64type +| 15 = @complex64type +| 16 = @complex128type +| 17 = @stringexprtype +| 18 = @unsafepointertype +| 19 = @boolliteraltype +| 20 = @intliteraltype +| 21 = @runeliteraltype +| 22 = @floatliteraltype +| 23 = @complexliteraltype +| 24 = @stringliteraltype +| 25 = @nilliteraltype +| 26 = @typeparamtype +| 27 = @arraytype +| 28 = @slicetype +| 29 = @structtype +| 30 = @pointertype +| 31 = @interfacetype +| 32 = @tupletype +| 33 = @signaturetype +| 34 = @maptype +| 35 = @sendchantype +| 36 = @recvchantype +| 37 = @sendrcvchantype +| 38 = @namedtype +| 39 = @typesetliteraltype; + +@basictype = @booltype | @numerictype | @stringtype | @literaltype | @invalidtype | @unsafepointertype; + +@booltype = @boolexprtype | @boolliteraltype; + +@numerictype = @integertype | @floattype | @complextype; + +@integertype = @signedintegertype | @unsignedintegertype; + +@signedintegertype = @inttype | @int8type | @int16type | @int32type | @int64type | @intliteraltype | @runeliteraltype; + +@unsignedintegertype = @uinttype | @uint8type | @uint16type | @uint32type | @uint64type | @uintptrtype; + +@floattype = @float32type | @float64type | @floatliteraltype; + +@complextype = @complex64type | @complex128type | @complexliteraltype; + +@stringtype = @stringexprtype | @stringliteraltype; + +@literaltype = @boolliteraltype | @intliteraltype | @runeliteraltype | @floatliteraltype | @complexliteraltype + | @stringliteraltype | @nilliteraltype; + +@compositetype = @typeparamtype | @containertype | @structtype | @pointertype | @interfacetype | @tupletype + | @signaturetype | @namedtype | @typesetliteraltype; + +@containertype = @arraytype | @slicetype | @maptype | @chantype; + +@chantype = @sendchantype | @recvchantype | @sendrcvchantype; + +case @modexpr.kind of + 0 = @modcommentblock +| 1 = @modline +| 2 = @modlineblock +| 3 = @modlparen +| 4 = @modrparen; + +case @error.kind of + 0 = @unknownerror +| 1 = @listerror +| 2 = @parseerror +| 3 = @typeerror; + diff --git a/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/old.dbscheme b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/old.dbscheme new file mode 100644 index 00000000000..b3da71c3ac2 --- /dev/null +++ b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/old.dbscheme @@ -0,0 +1,552 @@ +/** Auto-generated dbscheme; do not edit. Run `make gen` in directory `go/` to regenerate. */ + + +/** Duplicate code **/ + +duplicateCode( + unique int id : @duplication, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +similarCode( + unique int id : @similarity, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +@duplication_or_similarity = @duplication | @similarity; + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref); + +/** External data **/ + +externalData( + int id : @externalDataElement, + varchar(900) path : string ref, + int column: int ref, + varchar(900) value : string ref +); + +snapshotDate(unique date snapshotDate : date ref); + +sourceLocationPrefix(varchar(900) prefix : string ref); + + +/* + * XML Files + */ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +compilations(unique int id: @compilation, string cwd: string ref); + +#keyset[id, num] +compilation_args(int id: @compilation ref, int num: int ref, string arg: string ref); + +#keyset[id, num, kind] +compilation_time(int id: @compilation ref, int num: int ref, int kind: int ref, float secs: float ref); + +diagnostic_for(unique int diagnostic: @diagnostic ref, int compilation: @compilation ref, int file_number: int ref, int file_number_diagnostic_number: int ref); + +compilation_finished(unique int id: @compilation ref, float cpu_seconds: float ref, float elapsed_seconds: float ref); + +#keyset[id, num] +compilation_compiling_files(int id: @compilation ref, int num: int ref, int file: @file ref); + +diagnostics(unique int id: @diagnostic, int severity: int ref, string error_tag: string ref, string error_message: string ref, + string full_error_message: string ref, int location: @location ref); + +locations_default(unique int id: @location_default, int file: @file ref, int beginLine: int ref, int beginColumn: int ref, + int endLine: int ref, int endColumn: int ref); + +numlines(int element_id: @sourceline ref, int num_lines: int ref, int num_code: int ref, int num_comment: int ref); + +files(unique int id: @file, string name: string ref); + +folders(unique int id: @folder, string name: string ref); + +containerparent(int parent: @container ref, unique int child: @container ref); + +has_location(unique int locatable: @locatable ref, int location: @location ref); + +#keyset[parent, idx] +comment_groups(unique int id: @comment_group, int parent: @file ref, int idx: int ref); + +comments(unique int id: @comment, int kind: int ref, int parent: @comment_group ref, int idx: int ref, string text: string ref); + +doc_comments(unique int node: @documentable ref, int comment: @comment_group ref); + +#keyset[parent, idx] +exprs(unique int id: @expr, int kind: int ref, int parent: @exprparent ref, int idx: int ref); + +literals(unique int expr: @expr ref, string value: string ref, string raw: string ref); + +constvalues(unique int expr: @expr ref, string value: string ref, string exact: string ref); + +fields(unique int id: @field, int parent: @fieldparent ref, int idx: int ref); + +typeparamdecls(unique int id: @typeparamdecl, int parent: @typeparamdeclparent ref, int idx: int ref); + +#keyset[parent, idx] +stmts(unique int id: @stmt, int kind: int ref, int parent: @stmtparent ref, int idx: int ref); + +#keyset[parent, idx] +decls(unique int id: @decl, int kind: int ref, int parent: @declparent ref, int idx: int ref); + +#keyset[parent, idx] +specs(unique int id: @spec, int kind: int ref, int parent: @gendecl ref, int idx: int ref); + +scopes(unique int id: @scope, int kind: int ref); + +scopenesting(unique int inner: @scope ref, int outer: @scope ref); + +scopenodes(unique int node: @scopenode ref, int scope: @localscope ref); + +objects(unique int id: @object, int kind: int ref, string name: string ref); + +objectscopes(unique int object: @object ref, int scope: @scope ref); + +objecttypes(unique int object: @object ref, int tp: @type ref); + +methodreceivers(unique int method: @object ref, int receiver: @object ref); + +fieldstructs(unique int field: @object ref, int struct: @structtype ref); + +methodhosts(int method: @object ref, int host: @definedtype ref); + +defs(int ident: @ident ref, int object: @object ref); + +uses(int ident: @ident ref, int object: @object ref); + +types(unique int id: @type, int kind: int ref); + +type_of(unique int expr: @expr ref, int tp: @type ref); + +typename(unique int tp: @type ref, string name: string ref); + +key_type(unique int map: @maptype ref, int tp: @type ref); + +element_type(unique int container: @containertype ref, int tp: @type ref); + +base_type(unique int ptr: @pointertype ref, int tp: @type ref); + +underlying_type(unique int defined: @definedtype ref, int tp: @type ref); + +#keyset[parent, index] +component_types(int parent: @compositetype ref, int index: int ref, string name: string ref, int tp: @type ref); + +#keyset[parent, index] +struct_tags(int parent: @structtype ref, int index: int ref, string tag: string ref); + +#keyset[interface, index] +interface_private_method_ids(int interface: @interfacetype ref, int index: int ref, string id: string ref); + +array_length(unique int tp: @arraytype ref, string len: string ref); + +type_objects(unique int tp: @type ref, int object: @object ref); + +packages(unique int id: @package, string name: string ref, string path: string ref, int scope: @packagescope ref); + +#keyset[parent, idx] +modexprs(unique int id: @modexpr, int kind: int ref, int parent: @modexprparent ref, int idx: int ref); + +#keyset[parent, idx] +modtokens(string token: string ref, int parent: @modexpr ref, int idx: int ref); + +#keyset[package, idx] +errors(unique int id: @error, int kind: int ref, string msg: string ref, string rawpos: string ref, + string file: string ref, int line: int ref, int col: int ref, int package: @package ref, int idx: int ref); + +has_ellipsis(int id: @callorconversionexpr ref); + +variadic(int id: @signaturetype ref); + +#keyset[parent, idx] +typeparam(unique int tp: @typeparamtype ref, string name: string ref, int bound: @compositetype ref, + int parent: @typeparamparentobject ref, int idx: int ref); + +@container = @file | @folder; + +@locatable = @xmllocatable | @node | @localscope; + +@node = @documentable | @exprparent | @modexprparent | @fieldparent | @stmtparent | @declparent | @typeparamdeclparent + | @scopenode | @comment_group | @comment; + +@documentable = @file | @field | @typeparamdecl | @spec | @gendecl | @funcdecl | @modexpr; + +@exprparent = @funcdef | @file | @expr | @field | @stmt | @decl | @typeparamdecl | @spec; + +@modexprparent = @file | @modexpr; + +@fieldparent = @decl | @structtypeexpr | @functypeexpr | @interfacetypeexpr; + +@stmtparent = @funcdef | @stmt | @decl; + +@declparent = @file | @declstmt; + +@typeparamdeclparent = @funcdecl | @typespec; + +@funcdef = @funclit | @funcdecl; + +@scopenode = @file | @functypeexpr | @blockstmt | @ifstmt | @caseclause | @switchstmt | @commclause | @loopstmt; + +@location = @location_default; + +@sourceline = @locatable; + +case @comment.kind of + 0 = @slashslashcomment +| 1 = @slashstarcomment; + +case @expr.kind of + 0 = @badexpr +| 1 = @ident +| 2 = @ellipsis +| 3 = @intlit +| 4 = @floatlit +| 5 = @imaglit +| 6 = @charlit +| 7 = @stringlit +| 8 = @funclit +| 9 = @compositelit +| 10 = @parenexpr +| 11 = @selectorexpr +| 12 = @indexexpr +| 13 = @genericfunctioninstantiationexpr +| 14 = @generictypeinstantiationexpr +| 15 = @sliceexpr +| 16 = @typeassertexpr +| 17 = @callorconversionexpr +| 18 = @starexpr +| 19 = @keyvalueexpr +| 20 = @arraytypeexpr +| 21 = @structtypeexpr +| 22 = @functypeexpr +| 23 = @interfacetypeexpr +| 24 = @maptypeexpr +| 25 = @typesetliteralexpr +| 26 = @plusexpr +| 27 = @minusexpr +| 28 = @notexpr +| 29 = @complementexpr +| 30 = @derefexpr +| 31 = @addressexpr +| 32 = @arrowexpr +| 33 = @lorexpr +| 34 = @landexpr +| 35 = @eqlexpr +| 36 = @neqexpr +| 37 = @lssexpr +| 38 = @leqexpr +| 39 = @gtrexpr +| 40 = @geqexpr +| 41 = @addexpr +| 42 = @subexpr +| 43 = @orexpr +| 44 = @xorexpr +| 45 = @mulexpr +| 46 = @quoexpr +| 47 = @remexpr +| 48 = @shlexpr +| 49 = @shrexpr +| 50 = @andexpr +| 51 = @andnotexpr +| 52 = @sendchantypeexpr +| 53 = @recvchantypeexpr +| 54 = @sendrcvchantypeexpr; + +@basiclit = @intlit | @floatlit | @imaglit | @charlit | @stringlit; + +@operatorexpr = @logicalexpr | @arithmeticexpr | @bitwiseexpr | @unaryexpr | @binaryexpr; + +@logicalexpr = @logicalunaryexpr | @logicalbinaryexpr; + +@arithmeticexpr = @arithmeticunaryexpr | @arithmeticbinaryexpr; + +@bitwiseexpr = @bitwiseunaryexpr | @bitwisebinaryexpr; + +@unaryexpr = @logicalunaryexpr | @bitwiseunaryexpr | @arithmeticunaryexpr | @derefexpr | @addressexpr | @arrowexpr; + +@logicalunaryexpr = @notexpr; + +@bitwiseunaryexpr = @complementexpr; + +@arithmeticunaryexpr = @plusexpr | @minusexpr; + +@binaryexpr = @logicalbinaryexpr | @bitwisebinaryexpr | @arithmeticbinaryexpr | @comparison; + +@logicalbinaryexpr = @lorexpr | @landexpr; + +@bitwisebinaryexpr = @shiftexpr | @orexpr | @xorexpr | @andexpr | @andnotexpr; + +@arithmeticbinaryexpr = @addexpr | @subexpr | @mulexpr | @quoexpr | @remexpr; + +@shiftexpr = @shlexpr | @shrexpr; + +@comparison = @equalitytest | @relationalcomparison; + +@equalitytest = @eqlexpr | @neqexpr; + +@relationalcomparison = @lssexpr | @leqexpr | @gtrexpr | @geqexpr; + +@chantypeexpr = @sendchantypeexpr | @recvchantypeexpr | @sendrcvchantypeexpr; + +case @stmt.kind of + 0 = @badstmt +| 1 = @declstmt +| 2 = @emptystmt +| 3 = @labeledstmt +| 4 = @exprstmt +| 5 = @sendstmt +| 6 = @incstmt +| 7 = @decstmt +| 8 = @gostmt +| 9 = @deferstmt +| 10 = @returnstmt +| 11 = @breakstmt +| 12 = @continuestmt +| 13 = @gotostmt +| 14 = @fallthroughstmt +| 15 = @blockstmt +| 16 = @ifstmt +| 17 = @caseclause +| 18 = @exprswitchstmt +| 19 = @typeswitchstmt +| 20 = @commclause +| 21 = @selectstmt +| 22 = @forstmt +| 23 = @rangestmt +| 24 = @assignstmt +| 25 = @definestmt +| 26 = @addassignstmt +| 27 = @subassignstmt +| 28 = @mulassignstmt +| 29 = @quoassignstmt +| 30 = @remassignstmt +| 31 = @andassignstmt +| 32 = @orassignstmt +| 33 = @xorassignstmt +| 34 = @shlassignstmt +| 35 = @shrassignstmt +| 36 = @andnotassignstmt; + +@incdecstmt = @incstmt | @decstmt; + +@assignment = @simpleassignstmt | @compoundassignstmt; + +@simpleassignstmt = @assignstmt | @definestmt; + +@compoundassignstmt = @addassignstmt | @subassignstmt | @mulassignstmt | @quoassignstmt | @remassignstmt + | @andassignstmt | @orassignstmt | @xorassignstmt | @shlassignstmt | @shrassignstmt | @andnotassignstmt; + +@branchstmt = @breakstmt | @continuestmt | @gotostmt | @fallthroughstmt; + +@switchstmt = @exprswitchstmt | @typeswitchstmt; + +@loopstmt = @forstmt | @rangestmt; + +case @decl.kind of + 0 = @baddecl +| 1 = @importdecl +| 2 = @constdecl +| 3 = @typedecl +| 4 = @vardecl +| 5 = @funcdecl; + +@gendecl = @importdecl | @constdecl | @typedecl | @vardecl; + +case @spec.kind of + 0 = @importspec +| 1 = @valuespec +| 2 = @typedefspec +| 3 = @aliasspec; + +@typespec = @typedefspec | @aliasspec; + +case @object.kind of + 0 = @pkgobject +| 1 = @decltypeobject +| 2 = @builtintypeobject +| 3 = @declconstobject +| 4 = @builtinconstobject +| 5 = @declvarobject +| 6 = @declfunctionobject +| 7 = @builtinfunctionobject +| 8 = @labelobject; + +@typeparamparentobject = @decltypeobject | @declfunctionobject; + +@declobject = @decltypeobject | @declconstobject | @declvarobject | @declfunctionobject; + +@builtinobject = @builtintypeobject | @builtinconstobject | @builtinfunctionobject; + +@typeobject = @decltypeobject | @builtintypeobject; + +@valueobject = @constobject | @varobject | @functionobject; + +@constobject = @declconstobject | @builtinconstobject; + +@varobject = @declvarobject; + +@functionobject = @declfunctionobject | @builtinfunctionobject; + +case @scope.kind of + 0 = @universescope +| 1 = @packagescope +| 2 = @localscope; + +case @type.kind of + 0 = @invalidtype +| 1 = @boolexprtype +| 2 = @inttype +| 3 = @int8type +| 4 = @int16type +| 5 = @int32type +| 6 = @int64type +| 7 = @uinttype +| 8 = @uint8type +| 9 = @uint16type +| 10 = @uint32type +| 11 = @uint64type +| 12 = @uintptrtype +| 13 = @float32type +| 14 = @float64type +| 15 = @complex64type +| 16 = @complex128type +| 17 = @stringexprtype +| 18 = @unsafepointertype +| 19 = @boolliteraltype +| 20 = @intliteraltype +| 21 = @runeliteraltype +| 22 = @floatliteraltype +| 23 = @complexliteraltype +| 24 = @stringliteraltype +| 25 = @nilliteraltype +| 26 = @typeparamtype +| 27 = @arraytype +| 28 = @slicetype +| 29 = @structtype +| 30 = @pointertype +| 31 = @interfacetype +| 32 = @tupletype +| 33 = @signaturetype +| 34 = @maptype +| 35 = @sendchantype +| 36 = @recvchantype +| 37 = @sendrcvchantype +| 38 = @definedtype +| 39 = @typesetliteraltype; + +@basictype = @booltype | @numerictype | @stringtype | @literaltype | @invalidtype | @unsafepointertype; + +@booltype = @boolexprtype | @boolliteraltype; + +@numerictype = @integertype | @floattype | @complextype; + +@integertype = @signedintegertype | @unsignedintegertype; + +@signedintegertype = @inttype | @int8type | @int16type | @int32type | @int64type | @intliteraltype | @runeliteraltype; + +@unsignedintegertype = @uinttype | @uint8type | @uint16type | @uint32type | @uint64type | @uintptrtype; + +@floattype = @float32type | @float64type | @floatliteraltype; + +@complextype = @complex64type | @complex128type | @complexliteraltype; + +@stringtype = @stringexprtype | @stringliteraltype; + +@literaltype = @boolliteraltype | @intliteraltype | @runeliteraltype | @floatliteraltype | @complexliteraltype + | @stringliteraltype | @nilliteraltype; + +@compositetype = @typeparamtype | @containertype | @structtype | @pointertype | @interfacetype | @tupletype + | @signaturetype | @definedtype | @typesetliteraltype; + +@containertype = @arraytype | @slicetype | @maptype | @chantype; + +@chantype = @sendchantype | @recvchantype | @sendrcvchantype; + +case @modexpr.kind of + 0 = @modcommentblock +| 1 = @modline +| 2 = @modlineblock +| 3 = @modlparen +| 4 = @modrparen; + +case @error.kind of + 0 = @unknownerror +| 1 = @listerror +| 2 = @parseerror +| 3 = @typeerror; + diff --git a/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/upgrade.properties b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/upgrade.properties new file mode 100644 index 00000000000..73db35e7e1b --- /dev/null +++ b/go/downgrades/b3da71c3ac204b557c86e9d9c26012360bdbdccb/upgrade.properties @@ -0,0 +1,2 @@ +description: Rename @definedtype to @namedtype +compatibility: full diff --git a/go/extractor/autobuilder/build-environment.go b/go/extractor/autobuilder/build-environment.go index cc3dc62c02d..e207e5ad026 100644 --- a/go/extractor/autobuilder/build-environment.go +++ b/go/extractor/autobuilder/build-environment.go @@ -12,7 +12,7 @@ import ( ) var minGoVersion = util.NewSemVer("1.11") -var maxGoVersion = util.NewSemVer("1.23") +var maxGoVersion = util.NewSemVer("1.24") type versionInfo struct { goModVersion util.SemVer // The version of Go found in the go directive in the `go.mod` file. diff --git a/go/extractor/dbscheme/tables.go b/go/extractor/dbscheme/tables.go index aa44c624842..665ecdcc240 100644 --- a/go/extractor/dbscheme/tables.go +++ b/go/extractor/dbscheme/tables.go @@ -694,13 +694,13 @@ var BuiltinObjectType = NewUnionType("@builtinobject") // PkgObjectType is the type of imported packages var PkgObjectType = ObjectKind.NewBranch("@pkgobject") -// TypeObjectType is the type of declared or built-in named types +// TypeObjectType is the type of named types (predeclared types, defined types, type parameters and aliases which refer to those things) var TypeObjectType = NewUnionType("@typeobject") -// DeclTypeObjectType is the type of declared named types +// DeclTypeObjectType is the type of defined types, type parameters and aliases which refer to named types var DeclTypeObjectType = ObjectKind.NewBranch("@decltypeobject", TypeObjectType, DeclObjectType, TypeParamParentObjectType) -// BuiltinTypeObjectType is the type of built-in named types +// BuiltinTypeObjectType is the type of built-in types (predeclared types) var BuiltinTypeObjectType = ObjectKind.NewBranch("@builtintypeobject", TypeObjectType, BuiltinObjectType) // ValueObjectType is the type of declared or built-in variables or constants @@ -855,8 +855,8 @@ var ChanTypes = map[gotypes.ChanDir]*BranchType{ gotypes.SendRecv: TypeKind.NewBranch("@sendrcvchantype", ChanType), } -// NamedType is the type of named types -var NamedType = TypeKind.NewBranch("@namedtype", CompositeType) +// DefinedType is the type of defined types +var DefinedType = TypeKind.NewBranch("@definedtype", CompositeType) // TypeSetLiteral is the type of type set literals var TypeSetLiteral = TypeKind.NewBranch("@typesetliteraltype", CompositeType) @@ -1080,10 +1080,10 @@ var FieldStructsTable = NewTable("fieldstructs", EntityColumn(StructType, "struct"), ) -// MethodHostsTable maps interface methods to the named type they belong to +// MethodHostsTable maps interface methods to the defined type they belong to var MethodHostsTable = NewTable("methodhosts", EntityColumn(ObjectType, "method"), - EntityColumn(NamedType, "host"), + EntityColumn(DefinedType, "host"), ) // DefsTable maps identifiers to the objects they define @@ -1110,7 +1110,7 @@ var TypeOfTable = NewTable("type_of", EntityColumn(TypeType, "tp"), ) -// TypeNameTable is the table associating named types with their names +// TypeNameTable is the table associating defined types with their names var TypeNameTable = NewTable("typename", EntityColumn(TypeType, "tp").Unique(), StringColumn("name"), @@ -1135,10 +1135,10 @@ var BaseTypeTable = NewTable("base_type", EntityColumn(TypeType, "tp"), ) -// UnderlyingTypeTable is the table associating named types with their +// UnderlyingTypeTable is the table associating defined types with their // underlying type var UnderlyingTypeTable = NewTable("underlying_type", - EntityColumn(NamedType, "named").Unique(), + EntityColumn(DefinedType, "defined").Unique(), EntityColumn(TypeType, "tp"), ) diff --git a/go/extractor/extractor.go b/go/extractor/extractor.go index e4059e3e90c..f687f54c977 100644 --- a/go/extractor/extractor.go +++ b/go/extractor/extractor.go @@ -475,8 +475,14 @@ func extractObjects(tw *trap.Writer, scope *types.Scope, scopeLabel trap.Label) populateTypeParamParents(funcObj.Type().(*types.Signature).TypeParams(), obj) populateTypeParamParents(funcObj.Type().(*types.Signature).RecvTypeParams(), obj) } - // Populate type parameter parents for named types. + // Populate type parameter parents for defined types and alias types. if typeNameObj, ok := obj.(*types.TypeName); ok { + // `types.TypeName` represents a type with a name: a defined + // type, an alias type, a type parameter, or a predeclared + // type such as `int` or `error`. We can distinguish these + // using `typeNameObj.Type()`, except that we need to be + // careful with alias types because before Go 1.24 they would + // return the underlying type. if tp, ok := typeNameObj.Type().(*types.Named); ok && !typeNameObj.IsAlias() { populateTypeParamParents(tp.TypeParams(), obj) } else if tp, ok := typeNameObj.Type().(*types.Alias); ok { @@ -568,7 +574,7 @@ func extractObject(tw *trap.Writer, obj types.Object, lbl trap.Label) { // For more information on objects, see: // https://github.com/golang/example/blob/master/gotypes/README.md#objects func extractObjectTypes(tw *trap.Writer) { - // calling `extractType` on a named type will extract all methods defined + // calling `extractType` on a defined type will extract all methods defined // on it, which will add new objects. Therefore we need to do this first // before we loop over all objects and emit them. changed := true @@ -1689,7 +1695,7 @@ func extractType(tw *trap.Writer, tp types.Type) trap.Label { extractElementType(tw, lbl, tp.Elem()) case *types.Named: origintp := tp.Origin() - kind = dbscheme.NamedType.Index() + kind = dbscheme.DefinedType.Index() dbscheme.TypeNameTable.Emit(tw, lbl, origintp.Obj().Name()) underlying := origintp.Underlying() extractUnderlyingType(tw, lbl, underlying) @@ -1761,9 +1767,9 @@ func extractType(tw *trap.Writer, tp types.Type) trap.Label { // Type labels refer to global keys to ensure that if the same type is // encountered during the extraction of different files it is still ultimately // mapped to the same entity. In particular, this means that keys for compound -// types refer to the labels of their component types. For named types, the key +// types refer to the labels of their component types. For defined types, the key // is constructed from their globally unique ID. This prevents cyclic type keys -// since type recursion in Go always goes through named types. +// since type recursion in Go always goes through defined types. func getTypeLabel(tw *trap.Writer, tp types.Type) (trap.Label, bool) { tp = resolveTypeAlias(tp) lbl, exists := tw.Labeler.TypeLabels[tp] @@ -1868,12 +1874,12 @@ func getTypeLabel(tw *trap.Writer, tp types.Type) (trap.Label, bool) { origintp := tp.Origin() entitylbl, exists := tw.Labeler.LookupObjectID(origintp.Obj(), lbl) if entitylbl == trap.InvalidLabel { - panic(fmt.Sprintf("Cannot construct label for named type %v (underlying object is %v).\n", origintp, origintp.Obj())) + panic(fmt.Sprintf("Cannot construct label for defined type %v (underlying object is %v).\n", origintp, origintp.Obj())) } if !exists { extractObject(tw, origintp.Obj(), entitylbl) } - lbl = tw.Labeler.GlobalID(fmt.Sprintf("{%s};namedtype", entitylbl)) + lbl = tw.Labeler.GlobalID(fmt.Sprintf("{%s};definedtype", entitylbl)) case *types.TypeParam: parentlbl := getTypeParamParentLabel(tw, tp) idx := tp.Index() @@ -1915,9 +1921,9 @@ func extractBaseType(tw *trap.Writer, ptr trap.Label, base types.Type) { } // extractUnderlyingType extracts `underlying` as the underlying type of the -// named type `named` -func extractUnderlyingType(tw *trap.Writer, named trap.Label, underlying types.Type) { - dbscheme.UnderlyingTypeTable.Emit(tw, named, extractType(tw, underlying)) +// defined type `defined` +func extractUnderlyingType(tw *trap.Writer, defined trap.Label, underlying types.Type) { + dbscheme.UnderlyingTypeTable.Emit(tw, defined, extractType(tw, underlying)) } // extractComponentType extracts `component` as the `idx`th component type of `parent` with name `name` @@ -2167,8 +2173,8 @@ func checkObjectNotSpecialized(obj types.Object) { log.Fatalf("Encountered unexpected specialization %s of generic variable object %s", varObj.String(), varObj.Origin().String()) } if typeNameObj, ok := obj.(*types.TypeName); ok { - if namedType, ok := typeNameObj.Type().(*types.Named); ok && namedType != namedType.Origin() { - log.Fatalf("Encountered type object for specialization %s of named type %s", namedType.String(), namedType.Origin().String()) + if definedType, ok := typeNameObj.Type().(*types.Named); ok && definedType != definedType.Origin() { + log.Fatalf("Encountered type object for specialization %s of defined type %s", definedType.String(), definedType.Origin().String()) } } } diff --git a/go/extractor/go.mod b/go/extractor/go.mod index 933a48028d4..77a22b45f5c 100644 --- a/go/extractor/go.mod +++ b/go/extractor/go.mod @@ -1,8 +1,8 @@ module github.com/github/codeql-go/extractor -go 1.23 +go 1.24 -toolchain go1.23.1 +toolchain go1.24.0 // when updating this, run // bazel run @rules_go//go -- mod tidy @@ -10,7 +10,7 @@ toolchain go1.23.1 // bazel mod tidy require ( golang.org/x/mod v0.23.0 - golang.org/x/tools v0.29.0 + golang.org/x/tools v0.30.0 ) -require golang.org/x/sync v0.10.0 // indirect +require golang.org/x/sync v0.11.0 // indirect diff --git a/go/extractor/go.sum b/go/extractor/go.sum index 679513e1f2f..68d0914a62a 100644 --- a/go/extractor/go.sum +++ b/go/extractor/go.sum @@ -2,7 +2,7 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM= golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY= -golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= -golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/tools v0.29.0 h1:Xx0h3TtM9rzQpQuR4dKLrdglAmCEN5Oi+P74JdhdzXE= -golang.org/x/tools v0.29.0/go.mod h1:KMQVMRsVxU6nHCFXrBPhDB8XncLNLM0lIy/F14RP588= +golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w= +golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/tools v0.30.0 h1:BgcpHewrV5AUp2G9MebG4XPFI1E2W41zU1SaqVA9vJY= +golang.org/x/tools v0.30.0/go.mod h1:c347cR/OJfw5TI+GfX7RUPNMdDRRbjvYTS0jPyvsVtY= diff --git a/go/extractor/project/project.go b/go/extractor/project/project.go index c870e6a5458..3745ca84402 100644 --- a/go/extractor/project/project.go +++ b/go/extractor/project/project.go @@ -193,7 +193,7 @@ func findGoModFiles(root string) []string { } // A regular expression for the Go toolchain version syntax. -var toolchainVersionRe *regexp.Regexp = regexp.MustCompile(`(?m)^([0-9]+\.[0-9]+\.[0-9]+)$`) +var toolchainVersionRe *regexp.Regexp = regexp.MustCompile(`(?m)^([0-9]+\.[0-9]+(\.[0-9]+|rc[0-9]+))$`) // Returns true if the `go.mod` file specifies a Go language version, that version is `1.21` or greater, and // there is no `toolchain` directive, and the Go language version is not a valid toolchain version. diff --git a/go/extractor/trap/labels.go b/go/extractor/trap/labels.go index 6052149c183..79ac9192e02 100644 --- a/go/extractor/trap/labels.go +++ b/go/extractor/trap/labels.go @@ -181,9 +181,9 @@ func findMethodWithGivenReceiver(object types.Object) *types.Func { // findMethodWithGivenReceiver finds a method on type `tp` with `object` as its receiver, if one exists func findMethodOnTypeWithGivenReceiver(tp types.Type, object types.Object) *types.Func { - if namedType, ok := tp.(*types.Named); ok { - for i := 0; i < namedType.NumMethods(); i++ { - meth := namedType.Method(i) + if definedType, ok := tp.(*types.Named); ok { + for i := 0; i < definedType.NumMethods(); i++ { + meth := definedType.Method(i) if object == meth.Type().(*types.Signature).Recv() { return meth } diff --git a/go/ql/consistency-queries/CHANGELOG.md b/go/ql/consistency-queries/CHANGELOG.md index 6bc6aae0b4e..99c47f43d52 100644 --- a/go/ql/consistency-queries/CHANGELOG.md +++ b/go/ql/consistency-queries/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/go/ql/consistency-queries/change-notes/released/1.0.17.md b/go/ql/consistency-queries/change-notes/released/1.0.17.md new file mode 100644 index 00000000000..4180b2c20f2 --- /dev/null +++ b/go/ql/consistency-queries/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/go/ql/consistency-queries/codeql-pack.release.yml b/go/ql/consistency-queries/codeql-pack.release.yml index 25c58f4113f..a88f1245e14 100644 --- a/go/ql/consistency-queries/codeql-pack.release.yml +++ b/go/ql/consistency-queries/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/go/ql/consistency-queries/qlpack.yml b/go/ql/consistency-queries/qlpack.yml index aec2e2037ad..b88dbb62067 100644 --- a/go/ql/consistency-queries/qlpack.yml +++ b/go/ql/consistency-queries/qlpack.yml @@ -1,5 +1,5 @@ name: codeql-go-consistency-queries -version: 1.0.17-dev +version: 1.0.18-dev groups: - go - queries diff --git a/go/ql/examples/snippets/incompleteswitchoverenum.ql b/go/ql/examples/snippets/incompleteswitchoverenum.ql index 1ded8d0a1ab..4777b26386a 100644 --- a/go/ql/examples/snippets/incompleteswitchoverenum.ql +++ b/go/ql/examples/snippets/incompleteswitchoverenum.ql @@ -9,7 +9,7 @@ import go -from ExpressionSwitchStmt ss, DeclaredConstant c, NamedType t +from ExpressionSwitchStmt ss, DeclaredConstant c, DefinedType t where t.getUnderlyingType() instanceof IntegerType and t = ss.getExpr().getType() and diff --git a/go/ql/lib/CHANGELOG.md b/go/ql/lib/CHANGELOG.md index 1e151003ad9..eef7a13d9a9 100644 --- a/go/ql/lib/CHANGELOG.md +++ b/go/ql/lib/CHANGELOG.md @@ -1,3 +1,16 @@ +## 4.1.0 + +### Deprecated APIs + +* The class `NamedType` has been deprecated. Use the new class `DefinedType` instead. This better matches the terminology used in the Go language specification, which was changed in Go 1.9. +* The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. +* The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. + +### Minor Analysis Improvements + +* Taint models have been added for the `weak` package, which was added in Go 1.24. +* Taint models have been added for the interfaces `TextAppender` and `BinaryAppender` in the `encoding` package, which were added in Go 1.24. + ## 4.0.0 ### Breaking Changes diff --git a/go/ql/lib/change-notes/released/4.1.0.md b/go/ql/lib/change-notes/released/4.1.0.md new file mode 100644 index 00000000000..3061e491f48 --- /dev/null +++ b/go/ql/lib/change-notes/released/4.1.0.md @@ -0,0 +1,12 @@ +## 4.1.0 + +### Deprecated APIs + +* The class `NamedType` has been deprecated. Use the new class `DefinedType` instead. This better matches the terminology used in the Go language specification, which was changed in Go 1.9. +* The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. +* The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead. + +### Minor Analysis Improvements + +* Taint models have been added for the `weak` package, which was added in Go 1.24. +* Taint models have been added for the interfaces `TextAppender` and `BinaryAppender` in the `encoding` package, which were added in Go 1.24. diff --git a/go/ql/lib/codeql-pack.release.yml b/go/ql/lib/codeql-pack.release.yml index 49fe3eef697..d5b1bf88d10 100644 --- a/go/ql/lib/codeql-pack.release.yml +++ b/go/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.1.0 diff --git a/go/ql/lib/ext/encoding.model.yml b/go/ql/lib/ext/encoding.model.yml index bc1c92e91a7..f2f48e3ebfe 100644 --- a/go/ql/lib/ext/encoding.model.yml +++ b/go/ql/lib/ext/encoding.model.yml @@ -3,7 +3,11 @@ extensions: pack: codeql/go-all extensible: summaryModel data: + - ["encoding", "BinaryAppender", True, "AppendBinary", "", "", "Argument[receiver]", "ReturnValue[0]", "taint", "manual"] + - ["encoding", "BinaryAppender", True, "AppendBinary", "", "", "Argument[0]", "ReturnValue[0]", "taint", "manual"] - ["encoding", "BinaryMarshaler", True, "MarshalBinary", "", "", "Argument[receiver]", "ReturnValue[0]", "taint", "manual"] - ["encoding", "BinaryUnmarshaler", True, "UnmarshalBinary", "", "", "Argument[0]", "Argument[receiver]", "taint", "manual"] + - ["encoding", "TextAppender", True, "AppendText", "", "", "Argument[receiver]", "ReturnValue[0]", "taint", "manual"] + - ["encoding", "TextAppender", True, "AppendText", "", "", "Argument[0]", "ReturnValue[0]", "taint", "manual"] - ["encoding", "TextMarshaler", True, "MarshalText", "", "", "Argument[receiver]", "ReturnValue[0]", "taint", "manual"] - ["encoding", "TextUnmarshaler", True, "UnmarshalText", "", "", "Argument[0]", "Argument[receiver]", "taint", "manual"] diff --git a/go/ql/lib/ext/weak.model.yml b/go/ql/lib/ext/weak.model.yml new file mode 100644 index 00000000000..7ae865ce2cb --- /dev/null +++ b/go/ql/lib/ext/weak.model.yml @@ -0,0 +1,7 @@ +extensions: + - addsTo: + pack: codeql/go-all + extensible: summaryModel + data: + - ["weak", "", False, "Make", "", "", "Argument[0]", "ReturnValue[0]", "taint", "manual"] + - ["weak", "Pointer", False, "Value", "", "", "Argument[receiver]", "ReturnValue[0]", "taint", "manual"] diff --git a/go/ql/lib/go.dbscheme b/go/ql/lib/go.dbscheme index 4bd57e09327..b3da71c3ac2 100644 --- a/go/ql/lib/go.dbscheme +++ b/go/ql/lib/go.dbscheme @@ -184,7 +184,7 @@ methodreceivers(unique int method: @object ref, int receiver: @object ref); fieldstructs(unique int field: @object ref, int struct: @structtype ref); -methodhosts(int method: @object ref, int host: @namedtype ref); +methodhosts(int method: @object ref, int host: @definedtype ref); defs(int ident: @ident ref, int object: @object ref); @@ -202,7 +202,7 @@ element_type(unique int container: @containertype ref, int tp: @type ref); base_type(unique int ptr: @pointertype ref, int tp: @type ref); -underlying_type(unique int named: @namedtype ref, int tp: @type ref); +underlying_type(unique int defined: @definedtype ref, int tp: @type ref); #keyset[parent, index] component_types(int parent: @compositetype ref, int index: int ref, string name: string ref, int tp: @type ref); @@ -506,7 +506,7 @@ case @type.kind of | 35 = @sendchantype | 36 = @recvchantype | 37 = @sendrcvchantype -| 38 = @namedtype +| 38 = @definedtype | 39 = @typesetliteraltype; @basictype = @booltype | @numerictype | @stringtype | @literaltype | @invalidtype | @unsafepointertype; @@ -531,7 +531,7 @@ case @type.kind of | @stringliteraltype | @nilliteraltype; @compositetype = @typeparamtype | @containertype | @structtype | @pointertype | @interfacetype | @tupletype - | @signaturetype | @namedtype | @typesetliteraltype; + | @signaturetype | @definedtype | @typesetliteraltype; @containertype = @arraytype | @slicetype | @maptype | @chantype; diff --git a/go/ql/lib/go.dbscheme.stats b/go/ql/lib/go.dbscheme.stats index a602a143ee0..126bbff00f7 100644 --- a/go/ql/lib/go.dbscheme.stats +++ b/go/ql/lib/go.dbscheme.stats @@ -681,7 +681,7 @@ 101202 - @namedtype + @definedtype 12852686 diff --git a/go/ql/lib/qlpack.yml b/go/ql/lib/qlpack.yml index 0ef261c505e..ccd136c1c7e 100644 --- a/go/ql/lib/qlpack.yml +++ b/go/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-all -version: 4.0.1-dev +version: 4.1.1-dev groups: go dbscheme: go.dbscheme extractor: go diff --git a/go/ql/lib/semmle/go/Decls.qll b/go/ql/lib/semmle/go/Decls.qll index 6c66b085575..785a09b2549 100644 --- a/go/ql/lib/semmle/go/Decls.qll +++ b/go/ql/lib/semmle/go/Decls.qll @@ -212,7 +212,7 @@ class MethodDecl extends FuncDecl { * * is `Rectangle`. */ - NamedType getReceiverBaseType() { result = lookThroughPointerType(this.getReceiverType()) } + DefinedType getReceiverBaseType() { result = lookThroughPointerType(this.getReceiverType()) } /** * Gets the receiver variable of this method. diff --git a/go/ql/lib/semmle/go/Scopes.qll b/go/ql/lib/semmle/go/Scopes.qll index c3671c74b5c..edea24c184f 100644 --- a/go/ql/lib/semmle/go/Scopes.qll +++ b/go/ql/lib/semmle/go/Scopes.qll @@ -194,19 +194,22 @@ class BuiltinEntity extends Entity, @builtinobject { } /** An imported package. */ class PackageEntity extends Entity, @pkgobject { } -/** A built-in or declared named type. */ +/** + * A named type: predeclared types, defined types, type parameters, and type + * aliases. + */ class TypeEntity extends Entity, @typeobject { } /** The parent of a type parameter type, either a declared type or a declared function. */ class TypeParamParentEntity extends Entity, @typeparamparentobject { } -/** A declared named type. */ +/** A named type which has a declaration. */ class DeclaredType extends TypeEntity, DeclaredEntity, TypeParamParentEntity, @decltypeobject { /** Gets the declaration specifier declaring this type. */ TypeSpec getSpec() { result.getNameExpr() = this.getDeclaration() } } -/** A built-in named type. */ +/** A built-in type. */ class BuiltinType extends TypeEntity, BuiltinEntity, @builtintypeobject { } /** A built-in or declared constant, variable, field, method or function. */ @@ -522,7 +525,7 @@ class Method extends Function { Type getReceiverBaseType() { result = lookThroughPointerType(this.getReceiverType()) } /** Holds if this method has name `m` and belongs to the method set of type `tp` or `*tp`. */ - private predicate isIn(NamedType tp, string m) { + private predicate isIn(DefinedType tp, string m) { this = tp.getMethod(m) or this = tp.getPointerType().getMethod(m) } @@ -536,7 +539,7 @@ class Method extends Function { * distinguishes between the method sets of `T` and `*T`, while the former does not. */ override predicate hasQualifiedName(string tp, string m) { - exists(NamedType t | + exists(DefinedType t | this.isIn(t, m) and tp = t.getQualifiedName() ) @@ -552,7 +555,7 @@ class Method extends Function { */ pragma[nomagic] predicate hasQualifiedName(string pkg, string tp, string m) { - exists(NamedType t | + exists(DefinedType t | this.isIn(t, m) and t.hasQualifiedName(pkg, tp) ) diff --git a/go/ql/lib/semmle/go/Types.qll b/go/ql/lib/semmle/go/Types.qll index 1f1234aa1de..4eb3a3e0302 100644 --- a/go/ql/lib/semmle/go/Types.qll +++ b/go/ql/lib/semmle/go/Types.qll @@ -26,7 +26,7 @@ class Type extends @type { /** * Gets the qualified name of this type, if any. * - * Only (defined) named types like `io.Writer` have a qualified name. Basic types like `int`, + * Only defined types like `io.Writer` have a qualified name. Basic types like `int`, * pointer types like `*io.Writer`, and other composite types do not have a qualified name. */ string getQualifiedName() { result = this.getEntity().getQualifiedName() } @@ -34,7 +34,7 @@ class Type extends @type { /** * Holds if this type is declared in a package with path `pkg` and has name `name`. * - * Only (defined) named types like `io.Writer` have a qualified name. Basic types like `int`, + * Only defined types like `io.Writer` have a qualified name. Basic types like `int`, * pointer types like `*io.Writer`, and other composite types do not have a qualified name. */ predicate hasQualifiedName(string pkg, string name) { @@ -50,7 +50,7 @@ class Type extends @type { * Gets the method `m` belonging to the method set of this type, if any. * * Note that this predicate never has a result for struct types. Methods are associated - * with the corresponding named type instead. + * with the corresponding defined type instead. */ Method getMethod(string m) { result.getReceiverType() = this and @@ -446,7 +446,7 @@ class StructType extends @structtype, CompositeType { if n = "" then ( isEmbedded = true and - name = lookThroughPointerType(tp).(NamedType).getName() + name = lookThroughPointerType(tp).(DefinedType).getName() ) else ( isEmbedded = false and name = n @@ -497,7 +497,7 @@ class StructType extends @structtype, CompositeType { // embeddedParent is a field of 'this' at depth 'depth - 1' this.hasFieldCand(_, embeddedParent, depth - 1, true) and // embeddedParent's type has the result field. Note that it is invalid Go - // to have an embedded field with a named type whose underlying type is a + // to have an embedded field with a defined type whose underlying type is a // pointer, so we don't have to have // `lookThroughPointerType(embeddedParent.getType().getUnderlyingType())`. result = @@ -613,7 +613,7 @@ class PointerType extends @pointertype, CompositeType { or // promoted methods from embedded types exists(StructType s, Type embedded | - s = this.getBaseType().(NamedType).getUnderlyingType() and + s = this.getBaseType().(DefinedType).getUnderlyingType() and s.hasOwnField(_, _, embedded, true) and // ensure that `m` can be promoted not s.hasOwnField(_, m, _, _) and @@ -918,7 +918,7 @@ class EmptyInterfaceType extends BasicInterfaceType { /** * The predeclared `comparable` type. */ -class ComparableType extends NamedType { +class ComparableType extends DefinedType { ComparableType() { this.getName() = "comparable" } } @@ -1028,8 +1028,11 @@ class SendRecvChanType extends @sendrcvchantype, ChanType { override string toString() { result = "send-receive-channel type" } } -/** A named type. */ -class NamedType extends @namedtype, CompositeType { +/** DEPRECATED: Use `DefinedType` instead. */ +deprecated class NamedType = DefinedType; + +/** A defined type. */ +class DefinedType extends @definedtype, CompositeType { /** Gets the type which this type is defined to be. */ Type getBaseType() { underlying_type(this, result) } diff --git a/go/ql/lib/semmle/go/frameworks/GoMicro.qll b/go/ql/lib/semmle/go/frameworks/GoMicro.qll index 116ebee030e..b10cca79336 100644 --- a/go/ql/lib/semmle/go/frameworks/GoMicro.qll +++ b/go/ql/lib/semmle/go/frameworks/GoMicro.qll @@ -47,28 +47,31 @@ module GoMicro { * A Server Interface type. */ class ServiceInterfaceType extends InterfaceType { - NamedType namedType; + DefinedType definedType; ServiceInterfaceType() { - this = namedType.getUnderlyingType() and - namedType.hasLocationInfo(any(ProtocGeneratedFile f).getAbsolutePath(), _, _, _, _) + this = definedType.getUnderlyingType() and + definedType.hasLocationInfo(any(ProtocGeneratedFile f).getAbsolutePath(), _, _, _, _) } /** * Gets the name of the interface. */ - override string getName() { result = namedType.getName() } + override string getName() { result = definedType.getName() } + + /** DEPRECATED: Use `getDefinedType` instead. */ + deprecated DefinedType getNamedType() { result = definedType } /** - * Gets the named type on top of this interface type. + * Gets the defined type on top of this interface type. */ - NamedType getNamedType() { result = namedType } + DefinedType getDefinedType() { result = definedType } } /** * A Service server handler type. */ - class ServiceServerType extends NamedType { + class ServiceServerType extends DefinedType { ServiceServerType() { this.implements(any(ServiceInterfaceType i)) and this.getName().regexpMatch("(?i).*Handler") and @@ -79,7 +82,7 @@ module GoMicro { /** * A Client server handler type. */ - class ClientServiceType extends NamedType { + class ClientServiceType extends DefinedType { ClientServiceType() { this.implements(any(ServiceInterfaceType i)) and this.getName().regexpMatch("(?i).*Service") and @@ -101,7 +104,7 @@ module GoMicro { bindingset[m] pragma[inline_late] private predicate implementsServiceType(Method m) { - m.implements(any(ServiceInterfaceType i).getNamedType().getMethod(_)) + m.implements(any(ServiceInterfaceType i).getDefinedType().getMethod(_)) } /** diff --git a/go/ql/lib/semmle/go/frameworks/Twirp.qll b/go/ql/lib/semmle/go/frameworks/Twirp.qll index 7f338816b38..10c8106f401 100644 --- a/go/ql/lib/semmle/go/frameworks/Twirp.qll +++ b/go/ql/lib/semmle/go/frameworks/Twirp.qll @@ -44,22 +44,25 @@ module Twirp { /** An interface type representing a Twirp service. */ class ServiceInterfaceType extends InterfaceType { - NamedType namedType; + DefinedType definedType; ServiceInterfaceType() { - namedType.getUnderlyingType() = this and - namedType.hasLocationInfo(any(ServicesGeneratedFile f).getAbsolutePath(), _, _, _, _) + definedType.getUnderlyingType() = this and + definedType.hasLocationInfo(any(ServicesGeneratedFile f).getAbsolutePath(), _, _, _, _) } /** Gets the name of the interface. */ - override string getName() { result = namedType.getName() } + override string getName() { result = definedType.getName() } - /** Gets the named type on top of this interface type. */ - NamedType getNamedType() { result = namedType } + /** DEPRECATED: Use `getDefinedType` instead. */ + deprecated DefinedType getNamedType() { result = this.getDefinedType() } + + /** Gets the defined type on top of this interface type. */ + DefinedType getDefinedType() { result = definedType } } /** A Twirp client. */ - class ServiceClientType extends NamedType { + class ServiceClientType extends DefinedType { ServiceClientType() { exists(ServiceInterfaceType i, PointerType p | p.implements(i) and @@ -71,7 +74,7 @@ module Twirp { } /** A Twirp server. */ - class ServiceServerType extends NamedType { + class ServiceServerType extends DefinedType { ServiceServerType() { exists(ServiceInterfaceType i | this.implements(i) and @@ -99,7 +102,7 @@ module Twirp { class ServerConstructor extends Function { ServerConstructor() { this.getName().regexpMatch("(?i)new" + any(ServiceServerType c).getName()) and - this.getParameterType(0) = any(ServiceInterfaceType i).getNamedType() and + this.getParameterType(0) = any(ServiceInterfaceType i).getDefinedType() and this.hasLocationInfo(any(ServicesGeneratedFile f).getAbsolutePath(), _, _, _, _) } } @@ -121,7 +124,7 @@ module Twirp { bindingset[m] pragma[inline_late] private predicate implementsServiceType(Method m) { - m.implements(any(ServiceInterfaceType i).getNamedType().getMethod(_)) + m.implements(any(ServiceInterfaceType i).getDefinedType().getMethod(_)) } /** A service handler. */ diff --git a/go/ql/lib/semmle/go/security/AllocationSizeOverflowCustomizations.qll b/go/ql/lib/semmle/go/security/AllocationSizeOverflowCustomizations.qll index 13c76a9566a..60841b048f4 100644 --- a/go/ql/lib/semmle/go/security/AllocationSizeOverflowCustomizations.qll +++ b/go/ql/lib/semmle/go/security/AllocationSizeOverflowCustomizations.qll @@ -157,7 +157,7 @@ module AllocationSizeOverflow { t instanceof BasicType and not t instanceof StringType or - isSmallType(t.(NamedType).getUnderlyingType()) + isSmallType(t.(DefinedType).getUnderlyingType()) or isSmallType(t.(PointerType).getBaseType()) or diff --git a/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll b/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll index 953d9810d53..df601ce1eb8 100644 --- a/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll +++ b/go/ql/lib/semmle/go/security/TaintedPathCustomizations.qll @@ -93,6 +93,25 @@ module TaintedPath { } } + /** + * A call to `mux.Vars(path)`, considered to sanitize `path` against path traversal. + * Only enabled when `SkipClean` is not set true. + */ + class MuxVarsSanitizer extends Sanitizer { + MuxVarsSanitizer() { + exists(Function m | + m.hasQualifiedName(package("github.com/gorilla/mux", ""), "Vars") and + this = m.getACall().getResult() + ) and + not exists(CallExpr f | + f.getTarget() + .(Method) + .hasQualifiedName(package("github.com/gorilla/mux", ""), "Router", "SkipClean") and + f.getArgument(0).getBoolValue() = true + ) + } + } + /** * A read from the field `Filename` of the type `mime/multipart.FileHeader`, * considered as a sanitizer for path traversal. diff --git a/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/go.dbscheme b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/go.dbscheme new file mode 100644 index 00000000000..b3da71c3ac2 --- /dev/null +++ b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/go.dbscheme @@ -0,0 +1,552 @@ +/** Auto-generated dbscheme; do not edit. Run `make gen` in directory `go/` to regenerate. */ + + +/** Duplicate code **/ + +duplicateCode( + unique int id : @duplication, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +similarCode( + unique int id : @similarity, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +@duplication_or_similarity = @duplication | @similarity; + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref); + +/** External data **/ + +externalData( + int id : @externalDataElement, + varchar(900) path : string ref, + int column: int ref, + varchar(900) value : string ref +); + +snapshotDate(unique date snapshotDate : date ref); + +sourceLocationPrefix(varchar(900) prefix : string ref); + + +/* + * XML Files + */ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +compilations(unique int id: @compilation, string cwd: string ref); + +#keyset[id, num] +compilation_args(int id: @compilation ref, int num: int ref, string arg: string ref); + +#keyset[id, num, kind] +compilation_time(int id: @compilation ref, int num: int ref, int kind: int ref, float secs: float ref); + +diagnostic_for(unique int diagnostic: @diagnostic ref, int compilation: @compilation ref, int file_number: int ref, int file_number_diagnostic_number: int ref); + +compilation_finished(unique int id: @compilation ref, float cpu_seconds: float ref, float elapsed_seconds: float ref); + +#keyset[id, num] +compilation_compiling_files(int id: @compilation ref, int num: int ref, int file: @file ref); + +diagnostics(unique int id: @diagnostic, int severity: int ref, string error_tag: string ref, string error_message: string ref, + string full_error_message: string ref, int location: @location ref); + +locations_default(unique int id: @location_default, int file: @file ref, int beginLine: int ref, int beginColumn: int ref, + int endLine: int ref, int endColumn: int ref); + +numlines(int element_id: @sourceline ref, int num_lines: int ref, int num_code: int ref, int num_comment: int ref); + +files(unique int id: @file, string name: string ref); + +folders(unique int id: @folder, string name: string ref); + +containerparent(int parent: @container ref, unique int child: @container ref); + +has_location(unique int locatable: @locatable ref, int location: @location ref); + +#keyset[parent, idx] +comment_groups(unique int id: @comment_group, int parent: @file ref, int idx: int ref); + +comments(unique int id: @comment, int kind: int ref, int parent: @comment_group ref, int idx: int ref, string text: string ref); + +doc_comments(unique int node: @documentable ref, int comment: @comment_group ref); + +#keyset[parent, idx] +exprs(unique int id: @expr, int kind: int ref, int parent: @exprparent ref, int idx: int ref); + +literals(unique int expr: @expr ref, string value: string ref, string raw: string ref); + +constvalues(unique int expr: @expr ref, string value: string ref, string exact: string ref); + +fields(unique int id: @field, int parent: @fieldparent ref, int idx: int ref); + +typeparamdecls(unique int id: @typeparamdecl, int parent: @typeparamdeclparent ref, int idx: int ref); + +#keyset[parent, idx] +stmts(unique int id: @stmt, int kind: int ref, int parent: @stmtparent ref, int idx: int ref); + +#keyset[parent, idx] +decls(unique int id: @decl, int kind: int ref, int parent: @declparent ref, int idx: int ref); + +#keyset[parent, idx] +specs(unique int id: @spec, int kind: int ref, int parent: @gendecl ref, int idx: int ref); + +scopes(unique int id: @scope, int kind: int ref); + +scopenesting(unique int inner: @scope ref, int outer: @scope ref); + +scopenodes(unique int node: @scopenode ref, int scope: @localscope ref); + +objects(unique int id: @object, int kind: int ref, string name: string ref); + +objectscopes(unique int object: @object ref, int scope: @scope ref); + +objecttypes(unique int object: @object ref, int tp: @type ref); + +methodreceivers(unique int method: @object ref, int receiver: @object ref); + +fieldstructs(unique int field: @object ref, int struct: @structtype ref); + +methodhosts(int method: @object ref, int host: @definedtype ref); + +defs(int ident: @ident ref, int object: @object ref); + +uses(int ident: @ident ref, int object: @object ref); + +types(unique int id: @type, int kind: int ref); + +type_of(unique int expr: @expr ref, int tp: @type ref); + +typename(unique int tp: @type ref, string name: string ref); + +key_type(unique int map: @maptype ref, int tp: @type ref); + +element_type(unique int container: @containertype ref, int tp: @type ref); + +base_type(unique int ptr: @pointertype ref, int tp: @type ref); + +underlying_type(unique int defined: @definedtype ref, int tp: @type ref); + +#keyset[parent, index] +component_types(int parent: @compositetype ref, int index: int ref, string name: string ref, int tp: @type ref); + +#keyset[parent, index] +struct_tags(int parent: @structtype ref, int index: int ref, string tag: string ref); + +#keyset[interface, index] +interface_private_method_ids(int interface: @interfacetype ref, int index: int ref, string id: string ref); + +array_length(unique int tp: @arraytype ref, string len: string ref); + +type_objects(unique int tp: @type ref, int object: @object ref); + +packages(unique int id: @package, string name: string ref, string path: string ref, int scope: @packagescope ref); + +#keyset[parent, idx] +modexprs(unique int id: @modexpr, int kind: int ref, int parent: @modexprparent ref, int idx: int ref); + +#keyset[parent, idx] +modtokens(string token: string ref, int parent: @modexpr ref, int idx: int ref); + +#keyset[package, idx] +errors(unique int id: @error, int kind: int ref, string msg: string ref, string rawpos: string ref, + string file: string ref, int line: int ref, int col: int ref, int package: @package ref, int idx: int ref); + +has_ellipsis(int id: @callorconversionexpr ref); + +variadic(int id: @signaturetype ref); + +#keyset[parent, idx] +typeparam(unique int tp: @typeparamtype ref, string name: string ref, int bound: @compositetype ref, + int parent: @typeparamparentobject ref, int idx: int ref); + +@container = @file | @folder; + +@locatable = @xmllocatable | @node | @localscope; + +@node = @documentable | @exprparent | @modexprparent | @fieldparent | @stmtparent | @declparent | @typeparamdeclparent + | @scopenode | @comment_group | @comment; + +@documentable = @file | @field | @typeparamdecl | @spec | @gendecl | @funcdecl | @modexpr; + +@exprparent = @funcdef | @file | @expr | @field | @stmt | @decl | @typeparamdecl | @spec; + +@modexprparent = @file | @modexpr; + +@fieldparent = @decl | @structtypeexpr | @functypeexpr | @interfacetypeexpr; + +@stmtparent = @funcdef | @stmt | @decl; + +@declparent = @file | @declstmt; + +@typeparamdeclparent = @funcdecl | @typespec; + +@funcdef = @funclit | @funcdecl; + +@scopenode = @file | @functypeexpr | @blockstmt | @ifstmt | @caseclause | @switchstmt | @commclause | @loopstmt; + +@location = @location_default; + +@sourceline = @locatable; + +case @comment.kind of + 0 = @slashslashcomment +| 1 = @slashstarcomment; + +case @expr.kind of + 0 = @badexpr +| 1 = @ident +| 2 = @ellipsis +| 3 = @intlit +| 4 = @floatlit +| 5 = @imaglit +| 6 = @charlit +| 7 = @stringlit +| 8 = @funclit +| 9 = @compositelit +| 10 = @parenexpr +| 11 = @selectorexpr +| 12 = @indexexpr +| 13 = @genericfunctioninstantiationexpr +| 14 = @generictypeinstantiationexpr +| 15 = @sliceexpr +| 16 = @typeassertexpr +| 17 = @callorconversionexpr +| 18 = @starexpr +| 19 = @keyvalueexpr +| 20 = @arraytypeexpr +| 21 = @structtypeexpr +| 22 = @functypeexpr +| 23 = @interfacetypeexpr +| 24 = @maptypeexpr +| 25 = @typesetliteralexpr +| 26 = @plusexpr +| 27 = @minusexpr +| 28 = @notexpr +| 29 = @complementexpr +| 30 = @derefexpr +| 31 = @addressexpr +| 32 = @arrowexpr +| 33 = @lorexpr +| 34 = @landexpr +| 35 = @eqlexpr +| 36 = @neqexpr +| 37 = @lssexpr +| 38 = @leqexpr +| 39 = @gtrexpr +| 40 = @geqexpr +| 41 = @addexpr +| 42 = @subexpr +| 43 = @orexpr +| 44 = @xorexpr +| 45 = @mulexpr +| 46 = @quoexpr +| 47 = @remexpr +| 48 = @shlexpr +| 49 = @shrexpr +| 50 = @andexpr +| 51 = @andnotexpr +| 52 = @sendchantypeexpr +| 53 = @recvchantypeexpr +| 54 = @sendrcvchantypeexpr; + +@basiclit = @intlit | @floatlit | @imaglit | @charlit | @stringlit; + +@operatorexpr = @logicalexpr | @arithmeticexpr | @bitwiseexpr | @unaryexpr | @binaryexpr; + +@logicalexpr = @logicalunaryexpr | @logicalbinaryexpr; + +@arithmeticexpr = @arithmeticunaryexpr | @arithmeticbinaryexpr; + +@bitwiseexpr = @bitwiseunaryexpr | @bitwisebinaryexpr; + +@unaryexpr = @logicalunaryexpr | @bitwiseunaryexpr | @arithmeticunaryexpr | @derefexpr | @addressexpr | @arrowexpr; + +@logicalunaryexpr = @notexpr; + +@bitwiseunaryexpr = @complementexpr; + +@arithmeticunaryexpr = @plusexpr | @minusexpr; + +@binaryexpr = @logicalbinaryexpr | @bitwisebinaryexpr | @arithmeticbinaryexpr | @comparison; + +@logicalbinaryexpr = @lorexpr | @landexpr; + +@bitwisebinaryexpr = @shiftexpr | @orexpr | @xorexpr | @andexpr | @andnotexpr; + +@arithmeticbinaryexpr = @addexpr | @subexpr | @mulexpr | @quoexpr | @remexpr; + +@shiftexpr = @shlexpr | @shrexpr; + +@comparison = @equalitytest | @relationalcomparison; + +@equalitytest = @eqlexpr | @neqexpr; + +@relationalcomparison = @lssexpr | @leqexpr | @gtrexpr | @geqexpr; + +@chantypeexpr = @sendchantypeexpr | @recvchantypeexpr | @sendrcvchantypeexpr; + +case @stmt.kind of + 0 = @badstmt +| 1 = @declstmt +| 2 = @emptystmt +| 3 = @labeledstmt +| 4 = @exprstmt +| 5 = @sendstmt +| 6 = @incstmt +| 7 = @decstmt +| 8 = @gostmt +| 9 = @deferstmt +| 10 = @returnstmt +| 11 = @breakstmt +| 12 = @continuestmt +| 13 = @gotostmt +| 14 = @fallthroughstmt +| 15 = @blockstmt +| 16 = @ifstmt +| 17 = @caseclause +| 18 = @exprswitchstmt +| 19 = @typeswitchstmt +| 20 = @commclause +| 21 = @selectstmt +| 22 = @forstmt +| 23 = @rangestmt +| 24 = @assignstmt +| 25 = @definestmt +| 26 = @addassignstmt +| 27 = @subassignstmt +| 28 = @mulassignstmt +| 29 = @quoassignstmt +| 30 = @remassignstmt +| 31 = @andassignstmt +| 32 = @orassignstmt +| 33 = @xorassignstmt +| 34 = @shlassignstmt +| 35 = @shrassignstmt +| 36 = @andnotassignstmt; + +@incdecstmt = @incstmt | @decstmt; + +@assignment = @simpleassignstmt | @compoundassignstmt; + +@simpleassignstmt = @assignstmt | @definestmt; + +@compoundassignstmt = @addassignstmt | @subassignstmt | @mulassignstmt | @quoassignstmt | @remassignstmt + | @andassignstmt | @orassignstmt | @xorassignstmt | @shlassignstmt | @shrassignstmt | @andnotassignstmt; + +@branchstmt = @breakstmt | @continuestmt | @gotostmt | @fallthroughstmt; + +@switchstmt = @exprswitchstmt | @typeswitchstmt; + +@loopstmt = @forstmt | @rangestmt; + +case @decl.kind of + 0 = @baddecl +| 1 = @importdecl +| 2 = @constdecl +| 3 = @typedecl +| 4 = @vardecl +| 5 = @funcdecl; + +@gendecl = @importdecl | @constdecl | @typedecl | @vardecl; + +case @spec.kind of + 0 = @importspec +| 1 = @valuespec +| 2 = @typedefspec +| 3 = @aliasspec; + +@typespec = @typedefspec | @aliasspec; + +case @object.kind of + 0 = @pkgobject +| 1 = @decltypeobject +| 2 = @builtintypeobject +| 3 = @declconstobject +| 4 = @builtinconstobject +| 5 = @declvarobject +| 6 = @declfunctionobject +| 7 = @builtinfunctionobject +| 8 = @labelobject; + +@typeparamparentobject = @decltypeobject | @declfunctionobject; + +@declobject = @decltypeobject | @declconstobject | @declvarobject | @declfunctionobject; + +@builtinobject = @builtintypeobject | @builtinconstobject | @builtinfunctionobject; + +@typeobject = @decltypeobject | @builtintypeobject; + +@valueobject = @constobject | @varobject | @functionobject; + +@constobject = @declconstobject | @builtinconstobject; + +@varobject = @declvarobject; + +@functionobject = @declfunctionobject | @builtinfunctionobject; + +case @scope.kind of + 0 = @universescope +| 1 = @packagescope +| 2 = @localscope; + +case @type.kind of + 0 = @invalidtype +| 1 = @boolexprtype +| 2 = @inttype +| 3 = @int8type +| 4 = @int16type +| 5 = @int32type +| 6 = @int64type +| 7 = @uinttype +| 8 = @uint8type +| 9 = @uint16type +| 10 = @uint32type +| 11 = @uint64type +| 12 = @uintptrtype +| 13 = @float32type +| 14 = @float64type +| 15 = @complex64type +| 16 = @complex128type +| 17 = @stringexprtype +| 18 = @unsafepointertype +| 19 = @boolliteraltype +| 20 = @intliteraltype +| 21 = @runeliteraltype +| 22 = @floatliteraltype +| 23 = @complexliteraltype +| 24 = @stringliteraltype +| 25 = @nilliteraltype +| 26 = @typeparamtype +| 27 = @arraytype +| 28 = @slicetype +| 29 = @structtype +| 30 = @pointertype +| 31 = @interfacetype +| 32 = @tupletype +| 33 = @signaturetype +| 34 = @maptype +| 35 = @sendchantype +| 36 = @recvchantype +| 37 = @sendrcvchantype +| 38 = @definedtype +| 39 = @typesetliteraltype; + +@basictype = @booltype | @numerictype | @stringtype | @literaltype | @invalidtype | @unsafepointertype; + +@booltype = @boolexprtype | @boolliteraltype; + +@numerictype = @integertype | @floattype | @complextype; + +@integertype = @signedintegertype | @unsignedintegertype; + +@signedintegertype = @inttype | @int8type | @int16type | @int32type | @int64type | @intliteraltype | @runeliteraltype; + +@unsignedintegertype = @uinttype | @uint8type | @uint16type | @uint32type | @uint64type | @uintptrtype; + +@floattype = @float32type | @float64type | @floatliteraltype; + +@complextype = @complex64type | @complex128type | @complexliteraltype; + +@stringtype = @stringexprtype | @stringliteraltype; + +@literaltype = @boolliteraltype | @intliteraltype | @runeliteraltype | @floatliteraltype | @complexliteraltype + | @stringliteraltype | @nilliteraltype; + +@compositetype = @typeparamtype | @containertype | @structtype | @pointertype | @interfacetype | @tupletype + | @signaturetype | @definedtype | @typesetliteraltype; + +@containertype = @arraytype | @slicetype | @maptype | @chantype; + +@chantype = @sendchantype | @recvchantype | @sendrcvchantype; + +case @modexpr.kind of + 0 = @modcommentblock +| 1 = @modline +| 2 = @modlineblock +| 3 = @modlparen +| 4 = @modrparen; + +case @error.kind of + 0 = @unknownerror +| 1 = @listerror +| 2 = @parseerror +| 3 = @typeerror; + diff --git a/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/old.dbscheme b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/old.dbscheme new file mode 100644 index 00000000000..4bd57e09327 --- /dev/null +++ b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/old.dbscheme @@ -0,0 +1,552 @@ +/** Auto-generated dbscheme; do not edit. Run `make gen` in directory `go/` to regenerate. */ + + +/** Duplicate code **/ + +duplicateCode( + unique int id : @duplication, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +similarCode( + unique int id : @similarity, + varchar(900) relativePath : string ref, + int equivClass : int ref); + +@duplication_or_similarity = @duplication | @similarity; + +tokens( + int id : @duplication_or_similarity ref, + int offset : int ref, + int beginLine : int ref, + int beginColumn : int ref, + int endLine : int ref, + int endColumn : int ref); + +/** External data **/ + +externalData( + int id : @externalDataElement, + varchar(900) path : string ref, + int column: int ref, + varchar(900) value : string ref +); + +snapshotDate(unique date snapshotDate : date ref); + +sourceLocationPrefix(varchar(900) prefix : string ref); + + +/* + * XML Files + */ + +xmlEncoding( + unique int id: @file ref, + string encoding: string ref +); + +xmlDTDs( + unique int id: @xmldtd, + string root: string ref, + string publicId: string ref, + string systemId: string ref, + int fileid: @file ref +); + +xmlElements( + unique int id: @xmlelement, + string name: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int fileid: @file ref +); + +xmlAttrs( + unique int id: @xmlattribute, + int elementid: @xmlelement ref, + string name: string ref, + string value: string ref, + int idx: int ref, + int fileid: @file ref +); + +xmlNs( + int id: @xmlnamespace, + string prefixName: string ref, + string URI: string ref, + int fileid: @file ref +); + +xmlHasNs( + int elementId: @xmlnamespaceable ref, + int nsId: @xmlnamespace ref, + int fileid: @file ref +); + +xmlComments( + unique int id: @xmlcomment, + string text: string ref, + int parentid: @xmlparent ref, + int fileid: @file ref +); + +xmlChars( + unique int id: @xmlcharacters, + string text: string ref, + int parentid: @xmlparent ref, + int idx: int ref, + int isCDATA: int ref, + int fileid: @file ref +); + +@xmlparent = @file | @xmlelement; +@xmlnamespaceable = @xmlelement | @xmlattribute; + +xmllocations( + int xmlElement: @xmllocatable ref, + int location: @location_default ref +); + +@xmllocatable = @xmlcharacters | @xmlelement | @xmlcomment | @xmlattribute | @xmldtd | @file | @xmlnamespace; + +compilations(unique int id: @compilation, string cwd: string ref); + +#keyset[id, num] +compilation_args(int id: @compilation ref, int num: int ref, string arg: string ref); + +#keyset[id, num, kind] +compilation_time(int id: @compilation ref, int num: int ref, int kind: int ref, float secs: float ref); + +diagnostic_for(unique int diagnostic: @diagnostic ref, int compilation: @compilation ref, int file_number: int ref, int file_number_diagnostic_number: int ref); + +compilation_finished(unique int id: @compilation ref, float cpu_seconds: float ref, float elapsed_seconds: float ref); + +#keyset[id, num] +compilation_compiling_files(int id: @compilation ref, int num: int ref, int file: @file ref); + +diagnostics(unique int id: @diagnostic, int severity: int ref, string error_tag: string ref, string error_message: string ref, + string full_error_message: string ref, int location: @location ref); + +locations_default(unique int id: @location_default, int file: @file ref, int beginLine: int ref, int beginColumn: int ref, + int endLine: int ref, int endColumn: int ref); + +numlines(int element_id: @sourceline ref, int num_lines: int ref, int num_code: int ref, int num_comment: int ref); + +files(unique int id: @file, string name: string ref); + +folders(unique int id: @folder, string name: string ref); + +containerparent(int parent: @container ref, unique int child: @container ref); + +has_location(unique int locatable: @locatable ref, int location: @location ref); + +#keyset[parent, idx] +comment_groups(unique int id: @comment_group, int parent: @file ref, int idx: int ref); + +comments(unique int id: @comment, int kind: int ref, int parent: @comment_group ref, int idx: int ref, string text: string ref); + +doc_comments(unique int node: @documentable ref, int comment: @comment_group ref); + +#keyset[parent, idx] +exprs(unique int id: @expr, int kind: int ref, int parent: @exprparent ref, int idx: int ref); + +literals(unique int expr: @expr ref, string value: string ref, string raw: string ref); + +constvalues(unique int expr: @expr ref, string value: string ref, string exact: string ref); + +fields(unique int id: @field, int parent: @fieldparent ref, int idx: int ref); + +typeparamdecls(unique int id: @typeparamdecl, int parent: @typeparamdeclparent ref, int idx: int ref); + +#keyset[parent, idx] +stmts(unique int id: @stmt, int kind: int ref, int parent: @stmtparent ref, int idx: int ref); + +#keyset[parent, idx] +decls(unique int id: @decl, int kind: int ref, int parent: @declparent ref, int idx: int ref); + +#keyset[parent, idx] +specs(unique int id: @spec, int kind: int ref, int parent: @gendecl ref, int idx: int ref); + +scopes(unique int id: @scope, int kind: int ref); + +scopenesting(unique int inner: @scope ref, int outer: @scope ref); + +scopenodes(unique int node: @scopenode ref, int scope: @localscope ref); + +objects(unique int id: @object, int kind: int ref, string name: string ref); + +objectscopes(unique int object: @object ref, int scope: @scope ref); + +objecttypes(unique int object: @object ref, int tp: @type ref); + +methodreceivers(unique int method: @object ref, int receiver: @object ref); + +fieldstructs(unique int field: @object ref, int struct: @structtype ref); + +methodhosts(int method: @object ref, int host: @namedtype ref); + +defs(int ident: @ident ref, int object: @object ref); + +uses(int ident: @ident ref, int object: @object ref); + +types(unique int id: @type, int kind: int ref); + +type_of(unique int expr: @expr ref, int tp: @type ref); + +typename(unique int tp: @type ref, string name: string ref); + +key_type(unique int map: @maptype ref, int tp: @type ref); + +element_type(unique int container: @containertype ref, int tp: @type ref); + +base_type(unique int ptr: @pointertype ref, int tp: @type ref); + +underlying_type(unique int named: @namedtype ref, int tp: @type ref); + +#keyset[parent, index] +component_types(int parent: @compositetype ref, int index: int ref, string name: string ref, int tp: @type ref); + +#keyset[parent, index] +struct_tags(int parent: @structtype ref, int index: int ref, string tag: string ref); + +#keyset[interface, index] +interface_private_method_ids(int interface: @interfacetype ref, int index: int ref, string id: string ref); + +array_length(unique int tp: @arraytype ref, string len: string ref); + +type_objects(unique int tp: @type ref, int object: @object ref); + +packages(unique int id: @package, string name: string ref, string path: string ref, int scope: @packagescope ref); + +#keyset[parent, idx] +modexprs(unique int id: @modexpr, int kind: int ref, int parent: @modexprparent ref, int idx: int ref); + +#keyset[parent, idx] +modtokens(string token: string ref, int parent: @modexpr ref, int idx: int ref); + +#keyset[package, idx] +errors(unique int id: @error, int kind: int ref, string msg: string ref, string rawpos: string ref, + string file: string ref, int line: int ref, int col: int ref, int package: @package ref, int idx: int ref); + +has_ellipsis(int id: @callorconversionexpr ref); + +variadic(int id: @signaturetype ref); + +#keyset[parent, idx] +typeparam(unique int tp: @typeparamtype ref, string name: string ref, int bound: @compositetype ref, + int parent: @typeparamparentobject ref, int idx: int ref); + +@container = @file | @folder; + +@locatable = @xmllocatable | @node | @localscope; + +@node = @documentable | @exprparent | @modexprparent | @fieldparent | @stmtparent | @declparent | @typeparamdeclparent + | @scopenode | @comment_group | @comment; + +@documentable = @file | @field | @typeparamdecl | @spec | @gendecl | @funcdecl | @modexpr; + +@exprparent = @funcdef | @file | @expr | @field | @stmt | @decl | @typeparamdecl | @spec; + +@modexprparent = @file | @modexpr; + +@fieldparent = @decl | @structtypeexpr | @functypeexpr | @interfacetypeexpr; + +@stmtparent = @funcdef | @stmt | @decl; + +@declparent = @file | @declstmt; + +@typeparamdeclparent = @funcdecl | @typespec; + +@funcdef = @funclit | @funcdecl; + +@scopenode = @file | @functypeexpr | @blockstmt | @ifstmt | @caseclause | @switchstmt | @commclause | @loopstmt; + +@location = @location_default; + +@sourceline = @locatable; + +case @comment.kind of + 0 = @slashslashcomment +| 1 = @slashstarcomment; + +case @expr.kind of + 0 = @badexpr +| 1 = @ident +| 2 = @ellipsis +| 3 = @intlit +| 4 = @floatlit +| 5 = @imaglit +| 6 = @charlit +| 7 = @stringlit +| 8 = @funclit +| 9 = @compositelit +| 10 = @parenexpr +| 11 = @selectorexpr +| 12 = @indexexpr +| 13 = @genericfunctioninstantiationexpr +| 14 = @generictypeinstantiationexpr +| 15 = @sliceexpr +| 16 = @typeassertexpr +| 17 = @callorconversionexpr +| 18 = @starexpr +| 19 = @keyvalueexpr +| 20 = @arraytypeexpr +| 21 = @structtypeexpr +| 22 = @functypeexpr +| 23 = @interfacetypeexpr +| 24 = @maptypeexpr +| 25 = @typesetliteralexpr +| 26 = @plusexpr +| 27 = @minusexpr +| 28 = @notexpr +| 29 = @complementexpr +| 30 = @derefexpr +| 31 = @addressexpr +| 32 = @arrowexpr +| 33 = @lorexpr +| 34 = @landexpr +| 35 = @eqlexpr +| 36 = @neqexpr +| 37 = @lssexpr +| 38 = @leqexpr +| 39 = @gtrexpr +| 40 = @geqexpr +| 41 = @addexpr +| 42 = @subexpr +| 43 = @orexpr +| 44 = @xorexpr +| 45 = @mulexpr +| 46 = @quoexpr +| 47 = @remexpr +| 48 = @shlexpr +| 49 = @shrexpr +| 50 = @andexpr +| 51 = @andnotexpr +| 52 = @sendchantypeexpr +| 53 = @recvchantypeexpr +| 54 = @sendrcvchantypeexpr; + +@basiclit = @intlit | @floatlit | @imaglit | @charlit | @stringlit; + +@operatorexpr = @logicalexpr | @arithmeticexpr | @bitwiseexpr | @unaryexpr | @binaryexpr; + +@logicalexpr = @logicalunaryexpr | @logicalbinaryexpr; + +@arithmeticexpr = @arithmeticunaryexpr | @arithmeticbinaryexpr; + +@bitwiseexpr = @bitwiseunaryexpr | @bitwisebinaryexpr; + +@unaryexpr = @logicalunaryexpr | @bitwiseunaryexpr | @arithmeticunaryexpr | @derefexpr | @addressexpr | @arrowexpr; + +@logicalunaryexpr = @notexpr; + +@bitwiseunaryexpr = @complementexpr; + +@arithmeticunaryexpr = @plusexpr | @minusexpr; + +@binaryexpr = @logicalbinaryexpr | @bitwisebinaryexpr | @arithmeticbinaryexpr | @comparison; + +@logicalbinaryexpr = @lorexpr | @landexpr; + +@bitwisebinaryexpr = @shiftexpr | @orexpr | @xorexpr | @andexpr | @andnotexpr; + +@arithmeticbinaryexpr = @addexpr | @subexpr | @mulexpr | @quoexpr | @remexpr; + +@shiftexpr = @shlexpr | @shrexpr; + +@comparison = @equalitytest | @relationalcomparison; + +@equalitytest = @eqlexpr | @neqexpr; + +@relationalcomparison = @lssexpr | @leqexpr | @gtrexpr | @geqexpr; + +@chantypeexpr = @sendchantypeexpr | @recvchantypeexpr | @sendrcvchantypeexpr; + +case @stmt.kind of + 0 = @badstmt +| 1 = @declstmt +| 2 = @emptystmt +| 3 = @labeledstmt +| 4 = @exprstmt +| 5 = @sendstmt +| 6 = @incstmt +| 7 = @decstmt +| 8 = @gostmt +| 9 = @deferstmt +| 10 = @returnstmt +| 11 = @breakstmt +| 12 = @continuestmt +| 13 = @gotostmt +| 14 = @fallthroughstmt +| 15 = @blockstmt +| 16 = @ifstmt +| 17 = @caseclause +| 18 = @exprswitchstmt +| 19 = @typeswitchstmt +| 20 = @commclause +| 21 = @selectstmt +| 22 = @forstmt +| 23 = @rangestmt +| 24 = @assignstmt +| 25 = @definestmt +| 26 = @addassignstmt +| 27 = @subassignstmt +| 28 = @mulassignstmt +| 29 = @quoassignstmt +| 30 = @remassignstmt +| 31 = @andassignstmt +| 32 = @orassignstmt +| 33 = @xorassignstmt +| 34 = @shlassignstmt +| 35 = @shrassignstmt +| 36 = @andnotassignstmt; + +@incdecstmt = @incstmt | @decstmt; + +@assignment = @simpleassignstmt | @compoundassignstmt; + +@simpleassignstmt = @assignstmt | @definestmt; + +@compoundassignstmt = @addassignstmt | @subassignstmt | @mulassignstmt | @quoassignstmt | @remassignstmt + | @andassignstmt | @orassignstmt | @xorassignstmt | @shlassignstmt | @shrassignstmt | @andnotassignstmt; + +@branchstmt = @breakstmt | @continuestmt | @gotostmt | @fallthroughstmt; + +@switchstmt = @exprswitchstmt | @typeswitchstmt; + +@loopstmt = @forstmt | @rangestmt; + +case @decl.kind of + 0 = @baddecl +| 1 = @importdecl +| 2 = @constdecl +| 3 = @typedecl +| 4 = @vardecl +| 5 = @funcdecl; + +@gendecl = @importdecl | @constdecl | @typedecl | @vardecl; + +case @spec.kind of + 0 = @importspec +| 1 = @valuespec +| 2 = @typedefspec +| 3 = @aliasspec; + +@typespec = @typedefspec | @aliasspec; + +case @object.kind of + 0 = @pkgobject +| 1 = @decltypeobject +| 2 = @builtintypeobject +| 3 = @declconstobject +| 4 = @builtinconstobject +| 5 = @declvarobject +| 6 = @declfunctionobject +| 7 = @builtinfunctionobject +| 8 = @labelobject; + +@typeparamparentobject = @decltypeobject | @declfunctionobject; + +@declobject = @decltypeobject | @declconstobject | @declvarobject | @declfunctionobject; + +@builtinobject = @builtintypeobject | @builtinconstobject | @builtinfunctionobject; + +@typeobject = @decltypeobject | @builtintypeobject; + +@valueobject = @constobject | @varobject | @functionobject; + +@constobject = @declconstobject | @builtinconstobject; + +@varobject = @declvarobject; + +@functionobject = @declfunctionobject | @builtinfunctionobject; + +case @scope.kind of + 0 = @universescope +| 1 = @packagescope +| 2 = @localscope; + +case @type.kind of + 0 = @invalidtype +| 1 = @boolexprtype +| 2 = @inttype +| 3 = @int8type +| 4 = @int16type +| 5 = @int32type +| 6 = @int64type +| 7 = @uinttype +| 8 = @uint8type +| 9 = @uint16type +| 10 = @uint32type +| 11 = @uint64type +| 12 = @uintptrtype +| 13 = @float32type +| 14 = @float64type +| 15 = @complex64type +| 16 = @complex128type +| 17 = @stringexprtype +| 18 = @unsafepointertype +| 19 = @boolliteraltype +| 20 = @intliteraltype +| 21 = @runeliteraltype +| 22 = @floatliteraltype +| 23 = @complexliteraltype +| 24 = @stringliteraltype +| 25 = @nilliteraltype +| 26 = @typeparamtype +| 27 = @arraytype +| 28 = @slicetype +| 29 = @structtype +| 30 = @pointertype +| 31 = @interfacetype +| 32 = @tupletype +| 33 = @signaturetype +| 34 = @maptype +| 35 = @sendchantype +| 36 = @recvchantype +| 37 = @sendrcvchantype +| 38 = @namedtype +| 39 = @typesetliteraltype; + +@basictype = @booltype | @numerictype | @stringtype | @literaltype | @invalidtype | @unsafepointertype; + +@booltype = @boolexprtype | @boolliteraltype; + +@numerictype = @integertype | @floattype | @complextype; + +@integertype = @signedintegertype | @unsignedintegertype; + +@signedintegertype = @inttype | @int8type | @int16type | @int32type | @int64type | @intliteraltype | @runeliteraltype; + +@unsignedintegertype = @uinttype | @uint8type | @uint16type | @uint32type | @uint64type | @uintptrtype; + +@floattype = @float32type | @float64type | @floatliteraltype; + +@complextype = @complex64type | @complex128type | @complexliteraltype; + +@stringtype = @stringexprtype | @stringliteraltype; + +@literaltype = @boolliteraltype | @intliteraltype | @runeliteraltype | @floatliteraltype | @complexliteraltype + | @stringliteraltype | @nilliteraltype; + +@compositetype = @typeparamtype | @containertype | @structtype | @pointertype | @interfacetype | @tupletype + | @signaturetype | @namedtype | @typesetliteraltype; + +@containertype = @arraytype | @slicetype | @maptype | @chantype; + +@chantype = @sendchantype | @recvchantype | @sendrcvchantype; + +case @modexpr.kind of + 0 = @modcommentblock +| 1 = @modline +| 2 = @modlineblock +| 3 = @modlparen +| 4 = @modrparen; + +case @error.kind of + 0 = @unknownerror +| 1 = @listerror +| 2 = @parseerror +| 3 = @typeerror; + diff --git a/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/upgrade.properties b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/upgrade.properties new file mode 100644 index 00000000000..ca2da0c9fc7 --- /dev/null +++ b/go/ql/lib/upgrades/4bd57e093275e5e892dfb16b55ed4bd76ea662be/upgrade.properties @@ -0,0 +1,2 @@ +description: Rename @namedtype to @definedtype +compatibility: full diff --git a/go/ql/src/CHANGELOG.md b/go/ql/src/CHANGELOG.md index 809116d3d32..acb065e05a3 100644 --- a/go/ql/src/CHANGELOG.md +++ b/go/ql/src/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.1.8 + +### Minor Analysis Improvements + +* Added [github.com/gorilla/mux.Vars](https://pkg.go.dev/github.com/gorilla/mux#Vars) to path sanitizers (disabled if [github.com/gorilla/mix.Router.SkipClean](https://pkg.go.dev/github.com/gorilla/mux#Router.SkipClean) has been called). + ## 1.1.7 No user-facing changes. diff --git a/go/ql/src/InconsistentCode/LengthComparisonOffByOne.ql b/go/ql/src/InconsistentCode/LengthComparisonOffByOne.ql index fbb1965c5f6..05a468b8517 100644 --- a/go/ql/src/InconsistentCode/LengthComparisonOffByOne.ql +++ b/go/ql/src/InconsistentCode/LengthComparisonOffByOne.ql @@ -70,7 +70,7 @@ predicate elementRead( } predicate isRegexpMethodCall(DataFlow::MethodCallNode c) { - exists(NamedType regexp, Type recvtp | + exists(DefinedType regexp, Type recvtp | regexp.getName() = "Regexp" and recvtp = c.getReceiver().getType() | lookThroughPointerType(recvtp) = regexp diff --git a/go/ql/src/Security/CWE-020/IncompleteUrlSchemeCheck.ql b/go/ql/src/Security/CWE-020/IncompleteUrlSchemeCheck.ql index 99513825892..37912437a58 100644 --- a/go/ql/src/Security/CWE-020/IncompleteUrlSchemeCheck.ql +++ b/go/ql/src/Security/CWE-020/IncompleteUrlSchemeCheck.ql @@ -22,7 +22,7 @@ class DangerousScheme extends string { /** Gets a data-flow node that checks an instance of `g` against the given `scheme`. */ DataFlow::Node schemeCheck(GVN g, DangerousScheme scheme) { // check of the form `nd.Scheme == scheme` - exists(NamedType url, DataFlow::FieldReadNode fr, DataFlow::Node s | + exists(DefinedType url, DataFlow::FieldReadNode fr, DataFlow::Node s | url.hasQualifiedName("net/url", "URL") and fr.readsField(g.getANode(), url.getField("Scheme")) and s.getStringValue() = scheme and diff --git a/go/ql/src/Security/CWE-322/InsecureHostKeyCallback.ql b/go/ql/src/Security/CWE-322/InsecureHostKeyCallback.ql index 2c292785f7f..c0b5898601c 100644 --- a/go/ql/src/Security/CWE-322/InsecureHostKeyCallback.ql +++ b/go/ql/src/Security/CWE-322/InsecureHostKeyCallback.ql @@ -22,8 +22,8 @@ class InsecureIgnoreHostKey extends Function { /** An SSH host-key checking function. */ class HostKeyCallbackFunc extends DataFlow::Node { HostKeyCallbackFunc() { - exists(NamedType nt | nt.hasQualifiedName(cryptoSshPackage(), "HostKeyCallback") | - this.getType().getUnderlyingType() = nt.getUnderlyingType() + exists(DefinedType dt | dt.hasQualifiedName(cryptoSshPackage(), "HostKeyCallback") | + this.getType().getUnderlyingType() = dt.getUnderlyingType() ) and // Restrict possible sources to either function definitions or // the result of some external function call (e.g. InsecureIgnoreHostKey()) diff --git a/go/ql/src/change-notes/released/1.1.8.md b/go/ql/src/change-notes/released/1.1.8.md new file mode 100644 index 00000000000..44d87ecdfd8 --- /dev/null +++ b/go/ql/src/change-notes/released/1.1.8.md @@ -0,0 +1,5 @@ +## 1.1.8 + +### Minor Analysis Improvements + +* Added [github.com/gorilla/mux.Vars](https://pkg.go.dev/github.com/gorilla/mux#Vars) to path sanitizers (disabled if [github.com/gorilla/mix.Router.SkipClean](https://pkg.go.dev/github.com/gorilla/mux#Router.SkipClean) has been called). diff --git a/go/ql/src/codeql-pack.release.yml b/go/ql/src/codeql-pack.release.yml index 75910556516..64972659c42 100644 --- a/go/ql/src/codeql-pack.release.yml +++ b/go/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.1.7 +lastReleaseVersion: 1.1.8 diff --git a/go/ql/src/experimental/Unsafe/WrongUsageOfUnsafe.ql b/go/ql/src/experimental/Unsafe/WrongUsageOfUnsafe.ql index e0f0098be4e..f3e40f1e20b 100644 --- a/go/ql/src/experimental/Unsafe/WrongUsageOfUnsafe.ql +++ b/go/ql/src/experimental/Unsafe/WrongUsageOfUnsafe.ql @@ -14,7 +14,7 @@ import go /* - * Returns the type after all aliases, named types, and pointer + * Returns the type after all aliases, defined types, and pointer * types have been replaced with the actual underlying type. */ diff --git a/go/ql/src/qlpack.yml b/go/ql/src/qlpack.yml index e4ddb827af2..553c830e891 100644 --- a/go/ql/src/qlpack.yml +++ b/go/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/go-queries -version: 1.1.8-dev +version: 1.1.9-dev groups: - go - queries diff --git a/go/ql/test/extractor-tests/go1.14/interfaces.ql b/go/ql/test/extractor-tests/go1.14/interfaces.ql index 323713bfb63..1b611451abd 100644 --- a/go/ql/test/extractor-tests/go1.14/interfaces.ql +++ b/go/ql/test/extractor-tests/go1.14/interfaces.ql @@ -1,5 +1,5 @@ import go -from NamedType t +from DefinedType t where t.getPackage().getName().matches("%main") select t, t.getName(), t.getMethod(_) diff --git a/go/ql/test/library-tests/semmle/go/Function/TypeParamType.expected b/go/ql/test/library-tests/semmle/go/Function/TypeParamType.expected index c1d09ddb080..27a0d5171de 100644 --- a/go/ql/test/library-tests/semmle/go/Function/TypeParamType.expected +++ b/go/ql/test/library-tests/semmle/go/Function/TypeParamType.expected @@ -63,18 +63,62 @@ numberOfTypeParameters | internal/bytealg.HashStrRev | 0 | T | interface { string \| []uint8 } | | internal/bytealg.IndexRabinKarp | 0 | T | interface { string \| []uint8 } | | internal/bytealg.LastIndexRabinKarp | 0 | T | interface { string \| []uint8 } | +| internal/poll.ignoringEINTR2 | 0 | T | interface { } | | internal/runtime/atomic.Pointer.CompareAndSwap | 0 | T | interface { } | | internal/runtime/atomic.Pointer.CompareAndSwapNoWB | 0 | T | interface { } | | internal/runtime/atomic.Pointer.Load | 0 | T | interface { } | | internal/runtime/atomic.Pointer.Store | 0 | T | interface { } | | internal/runtime/atomic.Pointer.StoreNoWB | 0 | T | interface { } | +| internal/sync.HashTrieMap.All | 0 | K | comparable | +| internal/sync.HashTrieMap.All | 1 | V | interface { } | +| internal/sync.HashTrieMap.CompareAndDelete | 0 | K | comparable | +| internal/sync.HashTrieMap.CompareAndDelete | 1 | V | interface { } | +| internal/sync.HashTrieMap.CompareAndSwap | 0 | K | comparable | +| internal/sync.HashTrieMap.CompareAndSwap | 1 | V | interface { } | +| internal/sync.HashTrieMap.Delete | 0 | K | comparable | +| internal/sync.HashTrieMap.Load | 0 | K | comparable | +| internal/sync.HashTrieMap.Load | 1 | V | interface { } | +| internal/sync.HashTrieMap.LoadAndDelete | 0 | K | comparable | +| internal/sync.HashTrieMap.LoadAndDelete | 1 | V | interface { } | +| internal/sync.HashTrieMap.LoadOrStore | 0 | K | comparable | +| internal/sync.HashTrieMap.LoadOrStore | 1 | V | interface { } | +| internal/sync.HashTrieMap.Range | 0 | K | comparable | +| internal/sync.HashTrieMap.Range | 1 | V | interface { } | +| internal/sync.HashTrieMap.Store | 0 | K | comparable | +| internal/sync.HashTrieMap.Store | 1 | V | interface { } | +| internal/sync.HashTrieMap.Swap | 0 | K | comparable | +| internal/sync.HashTrieMap.Swap | 1 | V | interface { } | +| internal/sync.HashTrieMap.find | 0 | K | comparable | +| internal/sync.HashTrieMap.find | 1 | V | interface { } | +| internal/sync.HashTrieMap.iter | 0 | K | comparable | +| internal/sync.HashTrieMap.iter | 1 | V | interface { } | +| internal/sync.entry | 0 | K | comparable | +| internal/sync.entry | 1 | V | interface { } | +| internal/sync.entry.compareAndDelete | 0 | K | comparable | +| internal/sync.entry.compareAndDelete | 1 | V | interface { } | +| internal/sync.entry.compareAndSwap | 0 | K | comparable | +| internal/sync.entry.compareAndSwap | 1 | V | interface { } | +| internal/sync.entry.loadAndDelete | 0 | K | comparable | +| internal/sync.entry.loadAndDelete | 1 | V | interface { } | +| internal/sync.entry.lookup | 0 | K | comparable | +| internal/sync.entry.lookup | 1 | V | interface { } | +| internal/sync.entry.lookupWithValue | 0 | K | comparable | +| internal/sync.entry.lookupWithValue | 1 | V | interface { } | +| internal/sync.entry.swap | 0 | K | comparable | +| internal/sync.entry.swap | 1 | V | interface { } | +| internal/sync.newEntryNode | 0 | K | comparable | +| internal/sync.newEntryNode | 1 | V | interface { } | | iter.Pull | 0 | V | interface { } | | iter.Pull2 | 0 | K | interface { } | | iter.Pull2 | 1 | V | interface { } | | iter.Seq | 0 | V | interface { } | | iter.Seq2 | 0 | K | interface { } | | iter.Seq2 | 1 | V | interface { } | +| os.doInRoot | 0 | T | interface { } | +| os.ignoringEINTR2 | 0 | T | interface { } | | reflect.rangeNum | 1 | N | interface { int64 \| uint64 } | +| runtime.AddCleanup | 0 | T | interface { } | +| runtime.AddCleanup | 1 | S | interface { } | | runtime.fandbits | 0 | F | floaty | | runtime.fmax | 0 | F | floaty | | runtime.fmin | 0 | F | floaty | diff --git a/go/ql/test/library-tests/semmle/go/Types/Aliases.expected b/go/ql/test/library-tests/semmle/go/Types/Aliases.expected index 2c09dd790a5..b38d6258e1d 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Aliases.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Aliases.expected @@ -14,6 +14,14 @@ entities | aliases.go | aliases.go:22:6:22:6 | T | 1 | aliases.go:19:6:19:7 | S3 | | aliases.go | aliases.go:25:6:25:6 | H | 1 | file://:0:0:0:0 | signature type | | aliases.go | aliases.go:25:8:25:11 | Afs3 | 1 | aliases.go:19:6:19:7 | S3 | +| aliases.go | aliases.go:29:6:29:11 | MyType | 1 | aliases.go:29:6:29:11 | MyType | +| aliases.go | aliases.go:29:13:29:19 | MyTypeT | 1 | file://:0:0:0:0 | type parameter type | +| aliases.go | aliases.go:29:34:29:34 | x | 1 | file://:0:0:0:0 | type parameter type | +| aliases.go | aliases.go:32:6:32:16 | MyTypeAlias | 1 | aliases.go:29:6:29:11 | MyType | +| aliases.go | aliases.go:32:18:32:29 | MyTypeAliasT | 1 | file://:0:0:0:0 | type parameter type | +| aliases.go | aliases.go:34:6:34:19 | useMyTypeAlias | 1 | file://:0:0:0:0 | signature type | +| aliases.go | aliases.go:34:21:34:21 | a | 1 | aliases.go:29:6:29:11 | MyType | +| aliases.go | aliases.go:35:2:35:2 | b | 1 | aliases.go:29:6:29:11 | MyType | #select | F | func(struct { x int }) int | | G | func(struct { x int }) int | diff --git a/go/ql/test/library-tests/semmle/go/Types/Field_getPackage.expected b/go/ql/test/library-tests/semmle/go/Types/Field_getPackage.expected index 8a527e3d4f7..2d226e2216f 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Field_getPackage.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Field_getPackage.expected @@ -1,59 +1,60 @@ -| aliases.go:6:26:6:26 | x | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| aliases.go:8:26:8:26 | x | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| aliases.go:19:17:19:17 | x | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| cyclic.go:4:3:4:3 | s | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| cyclic.go:8:3:8:3 | u | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| cyclic.go:9:2:9:2 | f | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| cyclic.go:13:2:13:2 | t | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| cyclic.go:17:2:17:2 | s | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| depth.go:6:2:6:2 | b | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| depth.go:7:2:7:2 | c | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| depth.go:11:2:11:2 | f | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| depth.go:15:2:15:2 | d | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| depth.go:19:2:19:2 | f | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| embedded.go:4:2:4:2 | A | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| embedded.go:8:3:8:5 | Baz | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| embedded.go:12:2:12:4 | Qux | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| embedded.go:13:2:13:4 | Baz | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:4:2:4:11 | valueField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:5:2:5:13 | pointerField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:6:2:6:11 | arrayField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:7:2:7:11 | sliceField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:8:2:8:9 | mapField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:12:2:12:13 | pointerField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:16:2:16:5 | root | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:20:2:20:12 | structField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:21:2:21:9 | mapField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:25:2:25:12 | structField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| generic.go:29:2:29:13 | pointerField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| main.go:18:7:18:15 | NameClash | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| pkg1/embedding.go:19:23:19:26 | base | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/embedding.go:22:27:22:30 | base | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/embedding.go:25:24:25:31 | embedder | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/embedding.go:28:24:28:31 | embedder | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/embedding.go:36:2:36:5 | base | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/embedding.go:37:2:37:2 | f | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/promotedStructs.go:5:2:5:7 | SField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/promotedStructs.go:14:2:14:7 | PField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/promotedStructs.go:22:22:22:22 | S | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/promotedStructs.go:25:22:25:22 | P | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:6:2:6:2 | f | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:7:2:7:4 | Foo | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:8:2:8:4 | Bar | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:12:2:12:4 | Foo | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:13:2:13:4 | Bar | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:17:3:17:5 | Foo | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:18:3:18:5 | Bar | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:22:3:22:5 | Foo | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:23:2:23:4 | Bar | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:27:2:27:4 | val | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:28:2:28:5 | flag | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:32:2:32:5 | flag | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg1/tst.go:62:7:62:15 | NameClash | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | -| pkg2/tst.go:4:2:4:2 | g | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | -| pkg2/tst.go:8:2:8:2 | g | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | -| pkg2/tst.go:17:2:17:8 | NCField | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | -| struct_tags.go:4:2:4:7 | field1 | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| struct_tags.go:5:2:5:7 | field2 | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| struct_tags.go:9:2:9:7 | field1 | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | -| struct_tags.go:10:2:10:7 | field2 | package github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | +| aliases.go:6:26:6:26 | x | package codeql-go-types | +| aliases.go:8:26:8:26 | x | package codeql-go-types | +| aliases.go:19:17:19:17 | x | package codeql-go-types | +| aliases.go:29:34:29:34 | x | package codeql-go-types | +| cyclic.go:4:3:4:3 | s | package codeql-go-types | +| cyclic.go:8:3:8:3 | u | package codeql-go-types | +| cyclic.go:9:2:9:2 | f | package codeql-go-types | +| cyclic.go:13:2:13:2 | t | package codeql-go-types | +| cyclic.go:17:2:17:2 | s | package codeql-go-types | +| depth.go:6:2:6:2 | b | package codeql-go-types | +| depth.go:7:2:7:2 | c | package codeql-go-types | +| depth.go:11:2:11:2 | f | package codeql-go-types | +| depth.go:15:2:15:2 | d | package codeql-go-types | +| depth.go:19:2:19:2 | f | package codeql-go-types | +| embedded.go:4:2:4:2 | A | package codeql-go-types | +| embedded.go:8:3:8:5 | Baz | package codeql-go-types | +| embedded.go:12:2:12:4 | Qux | package codeql-go-types | +| embedded.go:13:2:13:4 | Baz | package codeql-go-types | +| generic.go:4:2:4:11 | valueField | package codeql-go-types | +| generic.go:5:2:5:13 | pointerField | package codeql-go-types | +| generic.go:6:2:6:11 | arrayField | package codeql-go-types | +| generic.go:7:2:7:11 | sliceField | package codeql-go-types | +| generic.go:8:2:8:9 | mapField | package codeql-go-types | +| generic.go:12:2:12:13 | pointerField | package codeql-go-types | +| generic.go:16:2:16:5 | root | package codeql-go-types | +| generic.go:20:2:20:12 | structField | package codeql-go-types | +| generic.go:21:2:21:9 | mapField | package codeql-go-types | +| generic.go:25:2:25:12 | structField | package codeql-go-types | +| generic.go:29:2:29:13 | pointerField | package codeql-go-types | +| main.go:18:7:18:15 | NameClash | package codeql-go-types | +| pkg1/embedding.go:19:23:19:26 | base | package codeql-go-types/pkg1 | +| pkg1/embedding.go:22:27:22:30 | base | package codeql-go-types/pkg1 | +| pkg1/embedding.go:25:24:25:31 | embedder | package codeql-go-types/pkg1 | +| pkg1/embedding.go:28:24:28:31 | embedder | package codeql-go-types/pkg1 | +| pkg1/embedding.go:36:2:36:5 | base | package codeql-go-types/pkg1 | +| pkg1/embedding.go:37:2:37:2 | f | package codeql-go-types/pkg1 | +| pkg1/promotedStructs.go:5:2:5:7 | SField | package codeql-go-types/pkg1 | +| pkg1/promotedStructs.go:14:2:14:7 | PField | package codeql-go-types/pkg1 | +| pkg1/promotedStructs.go:22:22:22:22 | S | package codeql-go-types/pkg1 | +| pkg1/promotedStructs.go:25:22:25:22 | P | package codeql-go-types/pkg1 | +| pkg1/tst.go:6:2:6:2 | f | package codeql-go-types/pkg1 | +| pkg1/tst.go:7:2:7:4 | Foo | package codeql-go-types/pkg1 | +| pkg1/tst.go:8:2:8:4 | Bar | package codeql-go-types/pkg1 | +| pkg1/tst.go:12:2:12:4 | Foo | package codeql-go-types/pkg1 | +| pkg1/tst.go:13:2:13:4 | Bar | package codeql-go-types/pkg1 | +| pkg1/tst.go:17:3:17:5 | Foo | package codeql-go-types/pkg1 | +| pkg1/tst.go:18:3:18:5 | Bar | package codeql-go-types/pkg1 | +| pkg1/tst.go:22:3:22:5 | Foo | package codeql-go-types/pkg1 | +| pkg1/tst.go:23:2:23:4 | Bar | package codeql-go-types/pkg1 | +| pkg1/tst.go:27:2:27:4 | val | package codeql-go-types/pkg1 | +| pkg1/tst.go:28:2:28:5 | flag | package codeql-go-types/pkg1 | +| pkg1/tst.go:32:2:32:5 | flag | package codeql-go-types/pkg1 | +| pkg1/tst.go:62:7:62:15 | NameClash | package codeql-go-types/pkg1 | +| pkg2/tst.go:4:2:4:2 | g | package codeql-go-types/pkg2 | +| pkg2/tst.go:8:2:8:2 | g | package codeql-go-types/pkg2 | +| pkg2/tst.go:17:2:17:8 | NCField | package codeql-go-types/pkg2 | +| struct_tags.go:4:2:4:7 | field1 | package codeql-go-types | +| struct_tags.go:5:2:5:7 | field2 | package codeql-go-types | +| struct_tags.go:9:2:9:7 | field1 | package codeql-go-types | +| struct_tags.go:10:2:10:7 | field2 | package codeql-go-types | diff --git a/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName2.expected b/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName2.expected index e7ffe6bc1ba..30227ae30b6 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName2.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName2.expected @@ -1,82 +1,83 @@ -| aliases.go:6:26:6:26 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S3 | x | -| aliases.go:8:26:8:26 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S3 | x | -| aliases.go:19:17:19:17 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S3 | x | -| cyclic.go:4:3:4:3 | s | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.s | s | -| cyclic.go:8:3:8:3 | u | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.t | u | -| cyclic.go:8:3:8:3 | u | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.u | u | -| cyclic.go:9:2:9:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.t | f | -| cyclic.go:9:2:9:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.u | f | -| cyclic.go:13:2:13:2 | t | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.t | t | -| cyclic.go:13:2:13:2 | t | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.u | t | -| cyclic.go:17:2:17:2 | s | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.v | s | -| depth.go:6:2:6:2 | b | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.a | b | -| depth.go:7:2:7:2 | c | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.a | c | -| depth.go:11:2:11:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.a | f | -| depth.go:11:2:11:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.b | f | -| depth.go:15:2:15:2 | d | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.a | d | -| depth.go:15:2:15:2 | d | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.c | d | -| depth.go:19:2:19:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.c | f | -| depth.go:19:2:19:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.d | f | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.Baz | A | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsBaz | A | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.Qux | A | -| embedded.go:8:3:8:5 | Baz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.Qux | Baz | -| embedded.go:12:2:12:4 | Qux | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsBaz | Qux | -| embedded.go:13:2:13:4 | Baz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsBaz | Baz | -| generic.go:4:2:4:11 | valueField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | valueField | -| generic.go:5:2:5:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | pointerField | -| generic.go:6:2:6:11 | arrayField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | arrayField | -| generic.go:7:2:7:11 | sliceField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | sliceField | -| generic.go:8:2:8:9 | mapField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | mapField | -| generic.go:12:2:12:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.CircularGenericStruct1 | pointerField | -| generic.go:16:2:16:5 | root | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.UsesCircularGenericStruct1 | root | -| generic.go:20:2:20:12 | structField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct2 | structField | -| generic.go:21:2:21:9 | mapField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct2 | mapField | -| generic.go:25:2:25:12 | structField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct2b | structField | -| generic.go:29:2:29:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.CircularGenericStruct2 | pointerField | -| main.go:18:7:18:15 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsNameClash | NameClash | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder | base | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | base | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | base | -| pkg1/embedding.go:22:27:22:30 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.ptrembedder | base | -| pkg1/embedding.go:25:24:25:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | embedder | -| pkg1/embedding.go:25:24:25:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | embedder | -| pkg1/embedding.go:28:24:28:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | embedder | -| pkg1/embedding.go:28:24:28:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | embedder | -| pkg1/embedding.go:36:2:36:5 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder4 | base | -| pkg1/embedding.go:37:2:37:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder4 | f | -| pkg1/promotedStructs.go:5:2:5:7 | SField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.S | SField | -| pkg1/promotedStructs.go:5:2:5:7 | SField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedS | SField | -| pkg1/promotedStructs.go:14:2:14:7 | PField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.P | PField | -| pkg1/promotedStructs.go:14:2:14:7 | PField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedP | PField | -| pkg1/promotedStructs.go:22:22:22:22 | S | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedS | S | -| pkg1/promotedStructs.go:25:22:25:22 | P | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedP | P | -| pkg1/tst.go:6:2:6:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | f | -| pkg1/tst.go:7:2:7:4 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | Foo | -| pkg1/tst.go:8:2:8:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | Bar | -| pkg1/tst.go:12:2:12:4 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T2 | Foo | -| pkg1/tst.go:13:2:13:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T2 | Bar | -| pkg1/tst.go:17:3:17:5 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T3 | Foo | -| pkg1/tst.go:18:3:18:5 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T3 | Bar | -| pkg1/tst.go:22:3:22:5 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | Foo | -| pkg1/tst.go:23:2:23:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | Bar | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Foo | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T3 | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | val | -| pkg1/tst.go:28:2:28:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Foo | flag | -| pkg1/tst.go:28:2:28:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | flag | -| pkg1/tst.go:32:2:32:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Bar | flag | -| pkg1/tst.go:32:2:32:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T2 | flag | -| pkg1/tst.go:62:7:62:15 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.NameClash | NameClash | -| pkg2/tst.go:4:2:4:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.G | g | -| pkg2/tst.go:4:2:4:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.T | g | -| pkg2/tst.go:8:2:8:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.G | g | -| pkg2/tst.go:8:2:8:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.T | g | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsNameClash | NCField | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.NameClash | NCField | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.NameClash | NCField | -| struct_tags.go:4:2:4:7 | field1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S1 | field1 | -| struct_tags.go:5:2:5:7 | field2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S1 | field2 | -| struct_tags.go:9:2:9:7 | field1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S2 | field1 | -| struct_tags.go:10:2:10:7 | field2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S2 | field2 | +| aliases.go:6:26:6:26 | x | codeql-go-types.S3 | x | +| aliases.go:8:26:8:26 | x | codeql-go-types.S3 | x | +| aliases.go:19:17:19:17 | x | codeql-go-types.S3 | x | +| aliases.go:29:34:29:34 | x | codeql-go-types.MyType | x | +| cyclic.go:4:3:4:3 | s | codeql-go-types.s | s | +| cyclic.go:8:3:8:3 | u | codeql-go-types.t | u | +| cyclic.go:8:3:8:3 | u | codeql-go-types.u | u | +| cyclic.go:9:2:9:2 | f | codeql-go-types.t | f | +| cyclic.go:9:2:9:2 | f | codeql-go-types.u | f | +| cyclic.go:13:2:13:2 | t | codeql-go-types.t | t | +| cyclic.go:13:2:13:2 | t | codeql-go-types.u | t | +| cyclic.go:17:2:17:2 | s | codeql-go-types.v | s | +| depth.go:6:2:6:2 | b | codeql-go-types.a | b | +| depth.go:7:2:7:2 | c | codeql-go-types.a | c | +| depth.go:11:2:11:2 | f | codeql-go-types.a | f | +| depth.go:11:2:11:2 | f | codeql-go-types.b | f | +| depth.go:15:2:15:2 | d | codeql-go-types.a | d | +| depth.go:15:2:15:2 | d | codeql-go-types.c | d | +| depth.go:19:2:19:2 | f | codeql-go-types.c | f | +| depth.go:19:2:19:2 | f | codeql-go-types.d | f | +| embedded.go:4:2:4:2 | A | codeql-go-types.Baz | A | +| embedded.go:4:2:4:2 | A | codeql-go-types.EmbedsBaz | A | +| embedded.go:4:2:4:2 | A | codeql-go-types.Qux | A | +| embedded.go:8:3:8:5 | Baz | codeql-go-types.Qux | Baz | +| embedded.go:12:2:12:4 | Qux | codeql-go-types.EmbedsBaz | Qux | +| embedded.go:13:2:13:4 | Baz | codeql-go-types.EmbedsBaz | Baz | +| generic.go:4:2:4:11 | valueField | codeql-go-types.GenericStruct1 | valueField | +| generic.go:5:2:5:13 | pointerField | codeql-go-types.GenericStruct1 | pointerField | +| generic.go:6:2:6:11 | arrayField | codeql-go-types.GenericStruct1 | arrayField | +| generic.go:7:2:7:11 | sliceField | codeql-go-types.GenericStruct1 | sliceField | +| generic.go:8:2:8:9 | mapField | codeql-go-types.GenericStruct1 | mapField | +| generic.go:12:2:12:13 | pointerField | codeql-go-types.CircularGenericStruct1 | pointerField | +| generic.go:16:2:16:5 | root | codeql-go-types.UsesCircularGenericStruct1 | root | +| generic.go:20:2:20:12 | structField | codeql-go-types.GenericStruct2 | structField | +| generic.go:21:2:21:9 | mapField | codeql-go-types.GenericStruct2 | mapField | +| generic.go:25:2:25:12 | structField | codeql-go-types.GenericStruct2b | structField | +| generic.go:29:2:29:13 | pointerField | codeql-go-types.CircularGenericStruct2 | pointerField | +| main.go:18:7:18:15 | NameClash | codeql-go-types.EmbedsNameClash | NameClash | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1.embedder | base | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1.embedder2 | base | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1.embedder3 | base | +| pkg1/embedding.go:22:27:22:30 | base | codeql-go-types/pkg1.ptrembedder | base | +| pkg1/embedding.go:25:24:25:31 | embedder | codeql-go-types/pkg1.embedder2 | embedder | +| pkg1/embedding.go:25:24:25:31 | embedder | codeql-go-types/pkg1.embedder3 | embedder | +| pkg1/embedding.go:28:24:28:31 | embedder | codeql-go-types/pkg1.embedder2 | embedder | +| pkg1/embedding.go:28:24:28:31 | embedder | codeql-go-types/pkg1.embedder3 | embedder | +| pkg1/embedding.go:36:2:36:5 | base | codeql-go-types/pkg1.embedder4 | base | +| pkg1/embedding.go:37:2:37:2 | f | codeql-go-types/pkg1.embedder4 | f | +| pkg1/promotedStructs.go:5:2:5:7 | SField | codeql-go-types/pkg1.S | SField | +| pkg1/promotedStructs.go:5:2:5:7 | SField | codeql-go-types/pkg1.SEmbedS | SField | +| pkg1/promotedStructs.go:14:2:14:7 | PField | codeql-go-types/pkg1.P | PField | +| pkg1/promotedStructs.go:14:2:14:7 | PField | codeql-go-types/pkg1.SEmbedP | PField | +| pkg1/promotedStructs.go:22:22:22:22 | S | codeql-go-types/pkg1.SEmbedS | S | +| pkg1/promotedStructs.go:25:22:25:22 | P | codeql-go-types/pkg1.SEmbedP | P | +| pkg1/tst.go:6:2:6:2 | f | codeql-go-types/pkg1.T | f | +| pkg1/tst.go:7:2:7:4 | Foo | codeql-go-types/pkg1.T | Foo | +| pkg1/tst.go:8:2:8:4 | Bar | codeql-go-types/pkg1.T | Bar | +| pkg1/tst.go:12:2:12:4 | Foo | codeql-go-types/pkg1.T2 | Foo | +| pkg1/tst.go:13:2:13:4 | Bar | codeql-go-types/pkg1.T2 | Bar | +| pkg1/tst.go:17:3:17:5 | Foo | codeql-go-types/pkg1.T3 | Foo | +| pkg1/tst.go:18:3:18:5 | Bar | codeql-go-types/pkg1.T3 | Bar | +| pkg1/tst.go:22:3:22:5 | Foo | codeql-go-types/pkg1.T4 | Foo | +| pkg1/tst.go:23:2:23:4 | Bar | codeql-go-types/pkg1.T4 | Bar | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1.Foo | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1.T | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1.T3 | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1.T4 | val | +| pkg1/tst.go:28:2:28:5 | flag | codeql-go-types/pkg1.Foo | flag | +| pkg1/tst.go:28:2:28:5 | flag | codeql-go-types/pkg1.T4 | flag | +| pkg1/tst.go:32:2:32:5 | flag | codeql-go-types/pkg1.Bar | flag | +| pkg1/tst.go:32:2:32:5 | flag | codeql-go-types/pkg1.T2 | flag | +| pkg1/tst.go:62:7:62:15 | NameClash | codeql-go-types/pkg1.NameClash | NameClash | +| pkg2/tst.go:4:2:4:2 | g | codeql-go-types/pkg2.G | g | +| pkg2/tst.go:4:2:4:2 | g | codeql-go-types/pkg2.T | g | +| pkg2/tst.go:8:2:8:2 | g | codeql-go-types/pkg2.G | g | +| pkg2/tst.go:8:2:8:2 | g | codeql-go-types/pkg2.T | g | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types.EmbedsNameClash | NCField | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types/pkg1.NameClash | NCField | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types/pkg2.NameClash | NCField | +| struct_tags.go:4:2:4:7 | field1 | codeql-go-types.S1 | field1 | +| struct_tags.go:5:2:5:7 | field2 | codeql-go-types.S1 | field2 | +| struct_tags.go:9:2:9:7 | field1 | codeql-go-types.S2 | field1 | +| struct_tags.go:10:2:10:7 | field2 | codeql-go-types.S2 | field2 | diff --git a/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName3.expected b/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName3.expected index 03b93b37c74..4533c9c0d7e 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName3.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Field_hasQualifiedName3.expected @@ -1,82 +1,83 @@ -| aliases.go:6:26:6:26 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S3 | x | -| aliases.go:8:26:8:26 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S3 | x | -| aliases.go:19:17:19:17 | x | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S3 | x | -| cyclic.go:4:3:4:3 | s | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | s | s | -| cyclic.go:8:3:8:3 | u | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | t | u | -| cyclic.go:8:3:8:3 | u | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | u | u | -| cyclic.go:9:2:9:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | t | f | -| cyclic.go:9:2:9:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | u | f | -| cyclic.go:13:2:13:2 | t | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | t | t | -| cyclic.go:13:2:13:2 | t | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | u | t | -| cyclic.go:17:2:17:2 | s | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | v | s | -| depth.go:6:2:6:2 | b | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | a | b | -| depth.go:7:2:7:2 | c | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | a | c | -| depth.go:11:2:11:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | a | f | -| depth.go:11:2:11:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | b | f | -| depth.go:15:2:15:2 | d | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | a | d | -| depth.go:15:2:15:2 | d | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | c | d | -| depth.go:19:2:19:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | c | f | -| depth.go:19:2:19:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | d | f | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | Baz | A | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsBaz | A | -| embedded.go:4:2:4:2 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | Qux | A | -| embedded.go:8:3:8:5 | Baz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | Qux | Baz | -| embedded.go:12:2:12:4 | Qux | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsBaz | Qux | -| embedded.go:13:2:13:4 | Baz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsBaz | Baz | -| generic.go:4:2:4:11 | valueField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct1 | valueField | -| generic.go:5:2:5:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct1 | pointerField | -| generic.go:6:2:6:11 | arrayField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct1 | arrayField | -| generic.go:7:2:7:11 | sliceField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct1 | sliceField | -| generic.go:8:2:8:9 | mapField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct1 | mapField | -| generic.go:12:2:12:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | CircularGenericStruct1 | pointerField | -| generic.go:16:2:16:5 | root | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | UsesCircularGenericStruct1 | root | -| generic.go:20:2:20:12 | structField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct2 | structField | -| generic.go:21:2:21:9 | mapField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct2 | mapField | -| generic.go:25:2:25:12 | structField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericStruct2b | structField | -| generic.go:29:2:29:13 | pointerField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | CircularGenericStruct2 | pointerField | -| main.go:18:7:18:15 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsNameClash | NameClash | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder | base | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder2 | base | -| pkg1/embedding.go:19:23:19:26 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder3 | base | -| pkg1/embedding.go:22:27:22:30 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | ptrembedder | base | -| pkg1/embedding.go:25:24:25:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder2 | embedder | -| pkg1/embedding.go:25:24:25:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder3 | embedder | -| pkg1/embedding.go:28:24:28:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder2 | embedder | -| pkg1/embedding.go:28:24:28:31 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder3 | embedder | -| pkg1/embedding.go:36:2:36:5 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder4 | base | -| pkg1/embedding.go:37:2:37:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder4 | f | -| pkg1/promotedStructs.go:5:2:5:7 | SField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | S | SField | -| pkg1/promotedStructs.go:5:2:5:7 | SField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedS | SField | -| pkg1/promotedStructs.go:14:2:14:7 | PField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | P | PField | -| pkg1/promotedStructs.go:14:2:14:7 | PField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedP | PField | -| pkg1/promotedStructs.go:22:22:22:22 | S | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedS | S | -| pkg1/promotedStructs.go:25:22:25:22 | P | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedP | P | -| pkg1/tst.go:6:2:6:2 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T | f | -| pkg1/tst.go:7:2:7:4 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T | Foo | -| pkg1/tst.go:8:2:8:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T | Bar | -| pkg1/tst.go:12:2:12:4 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T2 | Foo | -| pkg1/tst.go:13:2:13:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T2 | Bar | -| pkg1/tst.go:17:3:17:5 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T3 | Foo | -| pkg1/tst.go:18:3:18:5 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T3 | Bar | -| pkg1/tst.go:22:3:22:5 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T4 | Foo | -| pkg1/tst.go:23:2:23:4 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T4 | Bar | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | Foo | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T3 | val | -| pkg1/tst.go:27:2:27:4 | val | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T4 | val | -| pkg1/tst.go:28:2:28:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | Foo | flag | -| pkg1/tst.go:28:2:28:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T4 | flag | -| pkg1/tst.go:32:2:32:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | Bar | flag | -| pkg1/tst.go:32:2:32:5 | flag | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T2 | flag | -| pkg1/tst.go:62:7:62:15 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | NameClash | NameClash | -| pkg2/tst.go:4:2:4:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | G | g | -| pkg2/tst.go:4:2:4:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | T | g | -| pkg2/tst.go:8:2:8:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | G | g | -| pkg2/tst.go:8:2:8:2 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | T | g | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsNameClash | NCField | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | NameClash | NCField | -| pkg2/tst.go:17:2:17:8 | NCField | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | NameClash | NCField | -| struct_tags.go:4:2:4:7 | field1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S1 | field1 | -| struct_tags.go:5:2:5:7 | field2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S1 | field2 | -| struct_tags.go:9:2:9:7 | field1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S2 | field1 | -| struct_tags.go:10:2:10:7 | field2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | S2 | field2 | +| aliases.go:6:26:6:26 | x | codeql-go-types | S3 | x | +| aliases.go:8:26:8:26 | x | codeql-go-types | S3 | x | +| aliases.go:19:17:19:17 | x | codeql-go-types | S3 | x | +| aliases.go:29:34:29:34 | x | codeql-go-types | MyType | x | +| cyclic.go:4:3:4:3 | s | codeql-go-types | s | s | +| cyclic.go:8:3:8:3 | u | codeql-go-types | t | u | +| cyclic.go:8:3:8:3 | u | codeql-go-types | u | u | +| cyclic.go:9:2:9:2 | f | codeql-go-types | t | f | +| cyclic.go:9:2:9:2 | f | codeql-go-types | u | f | +| cyclic.go:13:2:13:2 | t | codeql-go-types | t | t | +| cyclic.go:13:2:13:2 | t | codeql-go-types | u | t | +| cyclic.go:17:2:17:2 | s | codeql-go-types | v | s | +| depth.go:6:2:6:2 | b | codeql-go-types | a | b | +| depth.go:7:2:7:2 | c | codeql-go-types | a | c | +| depth.go:11:2:11:2 | f | codeql-go-types | a | f | +| depth.go:11:2:11:2 | f | codeql-go-types | b | f | +| depth.go:15:2:15:2 | d | codeql-go-types | a | d | +| depth.go:15:2:15:2 | d | codeql-go-types | c | d | +| depth.go:19:2:19:2 | f | codeql-go-types | c | f | +| depth.go:19:2:19:2 | f | codeql-go-types | d | f | +| embedded.go:4:2:4:2 | A | codeql-go-types | Baz | A | +| embedded.go:4:2:4:2 | A | codeql-go-types | EmbedsBaz | A | +| embedded.go:4:2:4:2 | A | codeql-go-types | Qux | A | +| embedded.go:8:3:8:5 | Baz | codeql-go-types | Qux | Baz | +| embedded.go:12:2:12:4 | Qux | codeql-go-types | EmbedsBaz | Qux | +| embedded.go:13:2:13:4 | Baz | codeql-go-types | EmbedsBaz | Baz | +| generic.go:4:2:4:11 | valueField | codeql-go-types | GenericStruct1 | valueField | +| generic.go:5:2:5:13 | pointerField | codeql-go-types | GenericStruct1 | pointerField | +| generic.go:6:2:6:11 | arrayField | codeql-go-types | GenericStruct1 | arrayField | +| generic.go:7:2:7:11 | sliceField | codeql-go-types | GenericStruct1 | sliceField | +| generic.go:8:2:8:9 | mapField | codeql-go-types | GenericStruct1 | mapField | +| generic.go:12:2:12:13 | pointerField | codeql-go-types | CircularGenericStruct1 | pointerField | +| generic.go:16:2:16:5 | root | codeql-go-types | UsesCircularGenericStruct1 | root | +| generic.go:20:2:20:12 | structField | codeql-go-types | GenericStruct2 | structField | +| generic.go:21:2:21:9 | mapField | codeql-go-types | GenericStruct2 | mapField | +| generic.go:25:2:25:12 | structField | codeql-go-types | GenericStruct2b | structField | +| generic.go:29:2:29:13 | pointerField | codeql-go-types | CircularGenericStruct2 | pointerField | +| main.go:18:7:18:15 | NameClash | codeql-go-types | EmbedsNameClash | NameClash | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1 | embedder | base | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1 | embedder2 | base | +| pkg1/embedding.go:19:23:19:26 | base | codeql-go-types/pkg1 | embedder3 | base | +| pkg1/embedding.go:22:27:22:30 | base | codeql-go-types/pkg1 | ptrembedder | base | +| pkg1/embedding.go:25:24:25:31 | embedder | codeql-go-types/pkg1 | embedder2 | embedder | +| pkg1/embedding.go:25:24:25:31 | embedder | codeql-go-types/pkg1 | embedder3 | embedder | +| pkg1/embedding.go:28:24:28:31 | embedder | codeql-go-types/pkg1 | embedder2 | embedder | +| pkg1/embedding.go:28:24:28:31 | embedder | codeql-go-types/pkg1 | embedder3 | embedder | +| pkg1/embedding.go:36:2:36:5 | base | codeql-go-types/pkg1 | embedder4 | base | +| pkg1/embedding.go:37:2:37:2 | f | codeql-go-types/pkg1 | embedder4 | f | +| pkg1/promotedStructs.go:5:2:5:7 | SField | codeql-go-types/pkg1 | S | SField | +| pkg1/promotedStructs.go:5:2:5:7 | SField | codeql-go-types/pkg1 | SEmbedS | SField | +| pkg1/promotedStructs.go:14:2:14:7 | PField | codeql-go-types/pkg1 | P | PField | +| pkg1/promotedStructs.go:14:2:14:7 | PField | codeql-go-types/pkg1 | SEmbedP | PField | +| pkg1/promotedStructs.go:22:22:22:22 | S | codeql-go-types/pkg1 | SEmbedS | S | +| pkg1/promotedStructs.go:25:22:25:22 | P | codeql-go-types/pkg1 | SEmbedP | P | +| pkg1/tst.go:6:2:6:2 | f | codeql-go-types/pkg1 | T | f | +| pkg1/tst.go:7:2:7:4 | Foo | codeql-go-types/pkg1 | T | Foo | +| pkg1/tst.go:8:2:8:4 | Bar | codeql-go-types/pkg1 | T | Bar | +| pkg1/tst.go:12:2:12:4 | Foo | codeql-go-types/pkg1 | T2 | Foo | +| pkg1/tst.go:13:2:13:4 | Bar | codeql-go-types/pkg1 | T2 | Bar | +| pkg1/tst.go:17:3:17:5 | Foo | codeql-go-types/pkg1 | T3 | Foo | +| pkg1/tst.go:18:3:18:5 | Bar | codeql-go-types/pkg1 | T3 | Bar | +| pkg1/tst.go:22:3:22:5 | Foo | codeql-go-types/pkg1 | T4 | Foo | +| pkg1/tst.go:23:2:23:4 | Bar | codeql-go-types/pkg1 | T4 | Bar | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1 | Foo | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1 | T | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1 | T3 | val | +| pkg1/tst.go:27:2:27:4 | val | codeql-go-types/pkg1 | T4 | val | +| pkg1/tst.go:28:2:28:5 | flag | codeql-go-types/pkg1 | Foo | flag | +| pkg1/tst.go:28:2:28:5 | flag | codeql-go-types/pkg1 | T4 | flag | +| pkg1/tst.go:32:2:32:5 | flag | codeql-go-types/pkg1 | Bar | flag | +| pkg1/tst.go:32:2:32:5 | flag | codeql-go-types/pkg1 | T2 | flag | +| pkg1/tst.go:62:7:62:15 | NameClash | codeql-go-types/pkg1 | NameClash | NameClash | +| pkg2/tst.go:4:2:4:2 | g | codeql-go-types/pkg2 | G | g | +| pkg2/tst.go:4:2:4:2 | g | codeql-go-types/pkg2 | T | g | +| pkg2/tst.go:8:2:8:2 | g | codeql-go-types/pkg2 | G | g | +| pkg2/tst.go:8:2:8:2 | g | codeql-go-types/pkg2 | T | g | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types | EmbedsNameClash | NCField | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types/pkg1 | NameClash | NCField | +| pkg2/tst.go:17:2:17:8 | NCField | codeql-go-types/pkg2 | NameClash | NCField | +| struct_tags.go:4:2:4:7 | field1 | codeql-go-types | S1 | field1 | +| struct_tags.go:5:2:5:7 | field2 | codeql-go-types | S1 | field2 | +| struct_tags.go:9:2:9:7 | field1 | codeql-go-types | S2 | field1 | +| struct_tags.go:10:2:10:7 | field2 | codeql-go-types | S2 | field2 | diff --git a/go/ql/test/library-tests/semmle/go/Types/GenericTypeInstantiationExpr.expected b/go/ql/test/library-tests/semmle/go/Types/GenericTypeInstantiationExpr.expected index a6941dc84a2..36d2f2e2332 100644 --- a/go/ql/test/library-tests/semmle/go/Types/GenericTypeInstantiationExpr.expected +++ b/go/ql/test/library-tests/semmle/go/Types/GenericTypeInstantiationExpr.expected @@ -1,3 +1,6 @@ +| aliases.go:32:38:32:57 | generic type instantiation expression | aliases.go:32:38:32:43 | MyType | 0 | aliases.go:32:45:32:56 | MyTypeAliasT | +| aliases.go:34:23:34:41 | generic type instantiation expression | aliases.go:34:23:34:33 | MyTypeAlias | 0 | aliases.go:34:35:34:40 | string | +| aliases.go:35:7:35:25 | generic type instantiation expression | aliases.go:35:7:35:17 | MyTypeAlias | 0 | aliases.go:35:19:35:24 | string | | generic.go:12:16:12:40 | generic type instantiation expression | generic.go:12:16:12:37 | CircularGenericStruct1 | 0 | generic.go:12:39:12:39 | T | | generic.go:16:7:16:31 | generic type instantiation expression | generic.go:16:7:16:28 | CircularGenericStruct1 | 0 | generic.go:16:30:16:30 | T | | generic.go:20:14:20:30 | generic type instantiation expression | generic.go:20:14:20:27 | GenericStruct1 | 0 | generic.go:20:29:20:29 | S | @@ -13,7 +16,7 @@ | generic.go:60:12:60:28 | generic type instantiation expression | generic.go:60:12:60:22 | GenericMap2 | 0 | generic.go:60:24:60:24 | U | | generic.go:60:12:60:28 | generic type instantiation expression | generic.go:60:12:60:22 | GenericMap2 | 1 | generic.go:60:27:60:27 | U | | generic.go:61:12:61:28 | generic type instantiation expression | generic.go:61:12:61:25 | GenericChannel | 0 | generic.go:61:27:61:27 | U | -| generic.go:62:12:62:26 | generic type instantiation expression | generic.go:62:12:62:23 | GenericNamed | 0 | generic.go:62:25:62:25 | U | +| generic.go:62:12:62:28 | generic type instantiation expression | generic.go:62:12:62:25 | GenericDefined | 0 | generic.go:62:27:62:27 | U | | generic.go:70:42:70:64 | generic type instantiation expression | generic.go:70:42:70:57 | GenericInterface | 0 | generic.go:70:59:70:63 | int32 | | generic.go:74:41:74:62 | generic type instantiation expression | generic.go:74:41:74:54 | GenericStruct1 | 0 | generic.go:74:56:74:61 | string | | generic.go:82:18:82:34 | generic type instantiation expression | generic.go:82:18:82:29 | GenericArray | 0 | generic.go:82:31:82:33 | int | diff --git a/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.expected b/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.expected index 9bcfcde1db9..5d3fbf381f1 100644 --- a/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.expected +++ b/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.expected @@ -1,3 +1,3 @@ | interface { Exported func() ; notExported func() } | func() | Exported | -| interface { Exported func() ; notExported func() } | func() | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.notExported | -| interface { Exported func() ; notExported func() } | func() | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.notExported | +| interface { Exported func() ; notExported func() } | func() | codeql-go-types/pkg1.notExported | +| interface { Exported func() ; notExported func() } | func() | codeql-go-types/pkg2.notExported | diff --git a/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.ql b/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.ql index 356bc85c931..c34f47abc29 100644 --- a/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.ql +++ b/go/ql/test/library-tests/semmle/go/Types/InterfaceMethodIds.ql @@ -1,9 +1,9 @@ import go -from NamedType nt, InterfaceType it, Type methodType, string id +from DefinedType dt, InterfaceType it, Type methodType, string id where - nt.getName() = "MixedExportedAndNot" and - it = nt.getUnderlyingType() and + dt.getName() = "MixedExportedAndNot" and + it = dt.getUnderlyingType() and ( it.hasPrivateMethodWithQualifiedName(_, id, methodType) or diff --git a/go/ql/test/library-tests/semmle/go/Types/MethodTypes.expected b/go/ql/test/library-tests/semmle/go/Types/MethodTypes.expected index d143fb3121e..f5af1c53e40 100644 --- a/go/ql/test/library-tests/semmle/go/Types/MethodTypes.expected +++ b/go/ql/test/library-tests/semmle/go/Types/MethodTypes.expected @@ -13,7 +13,7 @@ | generic.go:47:6:47:16 | MyInterface | dummy14 | func() GenericMap1 | | generic.go:47:6:47:16 | MyInterface | dummy15 | func() GenericMap2 | | generic.go:47:6:47:16 | MyInterface | dummy17 | func() GenericChannel | -| generic.go:47:6:47:16 | MyInterface | dummy18 | func() GenericNamed | +| generic.go:47:6:47:16 | MyInterface | dummy18 | func() GenericDefined | | generic.go:47:6:47:16 | MyInterface | dummy19 | func() MyFuncType1 | | generic.go:47:6:47:16 | MyInterface | dummy20 | func() MyFuncType2 | | interface.go:28:6:28:7 | i6 | String | func() string | diff --git a/go/ql/test/library-tests/semmle/go/Types/MethodTypes.ql b/go/ql/test/library-tests/semmle/go/Types/MethodTypes.ql index 74a59761589..f9eae96b529 100644 --- a/go/ql/test/library-tests/semmle/go/Types/MethodTypes.ql +++ b/go/ql/test/library-tests/semmle/go/Types/MethodTypes.ql @@ -1,6 +1,6 @@ import go -from NamedType t, string m, Type tp +from DefinedType t, string m, Type tp where exists(t.getEntity().getDeclaration()) and t.getBaseType().hasMethod(m, tp) diff --git a/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName2.expected b/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName2.expected index 3929e1d98d5..f9d9bb8ef83 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName2.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName2.expected @@ -1,70 +1,70 @@ -| generic.go:33:2:33:5 | GetT | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericInterface | GetT | -| generic.go:48:2:48:6 | clone | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | clone | -| generic.go:49:2:49:7 | dummy1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy1 | -| generic.go:50:2:50:7 | dummy2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy2 | -| generic.go:51:2:51:7 | dummy3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy3 | -| generic.go:52:2:52:7 | dummy4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy4 | -| generic.go:53:2:53:7 | dummy5 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy5 | -| generic.go:54:2:54:7 | dummy6 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy6 | -| generic.go:55:2:55:7 | dummy7 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy7 | -| generic.go:56:2:56:8 | dummy11 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy11 | -| generic.go:57:2:57:8 | dummy12 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy12 | -| generic.go:58:2:58:8 | dummy13 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy13 | -| generic.go:59:2:59:8 | dummy14 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy14 | -| generic.go:60:2:60:8 | dummy15 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy15 | -| generic.go:61:2:61:8 | dummy17 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy17 | -| generic.go:62:2:62:8 | dummy18 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy18 | -| generic.go:63:2:63:8 | dummy19 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy19 | -| generic.go:64:2:64:8 | dummy20 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | dummy20 | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i6 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i8 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i9 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i14 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i15 | String | -| interface.go:37:2:37:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i7 | String | -| interface.go:43:2:43:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i8 | StringA | -| interface.go:43:2:43:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i14 | StringA | -| interface.go:49:2:49:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i9 | StringB | -| interface.go:49:2:49:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i15 | StringB | -| interface.go:92:2:92:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i17 | StringA | -| interface.go:97:2:97:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i18 | StringA | -| interface.go:102:2:102:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i19 | StringB | -| interface.go:107:2:107:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i20 | StringB | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.base | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.ptrembedder | f | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.base | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder4 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.ptrembedder | g | -| pkg1/embedding.go:30:18:30:18 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | f | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.A | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AC | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AEmbedded | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AExtended | m | -| pkg1/interfaces.go:8:2:8:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.B | m | -| pkg1/interfaces.go:9:2:9:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.B | n | -| pkg1/interfaces.go:13:2:13:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AC | n | -| pkg1/interfaces.go:13:2:13:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.C | n | -| pkg1/interfaces.go:14:2:14:2 | o | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AC | o | -| pkg1/interfaces.go:14:2:14:2 | o | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.C | o | -| pkg1/interfaces.go:28:2:28:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AExtended | n | -| pkg1/interfaces.go:32:2:32:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.A2 | m | -| pkg1/interfaces.go:36:2:36:9 | Exported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.MixedExportedAndNot | Exported | -| pkg1/interfaces.go:37:2:37:12 | notExported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.MixedExportedAndNot | notExported | -| pkg1/promotedStructs.go:8:12:8:18 | SMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.S | SMethod | -| pkg1/promotedStructs.go:8:12:8:18 | SMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedS | SMethod | -| pkg1/promotedStructs.go:17:13:17:19 | PMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.P | PMethod | -| pkg1/promotedStructs.go:17:13:17:19 | PMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedP | PMethod | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Foo | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T3 | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | half | -| pkg2/tst.go:12:2:12:9 | Exported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.MixedExportedAndNot | Exported | -| pkg2/tst.go:13:2:13:12 | notExported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.MixedExportedAndNot | notExported | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsNameClash | NCMethod | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.NameClash | NCMethod | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.NameClash | NCMethod | +| generic.go:33:2:33:5 | GetT | codeql-go-types.GenericInterface | GetT | +| generic.go:48:2:48:6 | clone | codeql-go-types.MyInterface | clone | +| generic.go:49:2:49:7 | dummy1 | codeql-go-types.MyInterface | dummy1 | +| generic.go:50:2:50:7 | dummy2 | codeql-go-types.MyInterface | dummy2 | +| generic.go:51:2:51:7 | dummy3 | codeql-go-types.MyInterface | dummy3 | +| generic.go:52:2:52:7 | dummy4 | codeql-go-types.MyInterface | dummy4 | +| generic.go:53:2:53:7 | dummy5 | codeql-go-types.MyInterface | dummy5 | +| generic.go:54:2:54:7 | dummy6 | codeql-go-types.MyInterface | dummy6 | +| generic.go:55:2:55:7 | dummy7 | codeql-go-types.MyInterface | dummy7 | +| generic.go:56:2:56:8 | dummy11 | codeql-go-types.MyInterface | dummy11 | +| generic.go:57:2:57:8 | dummy12 | codeql-go-types.MyInterface | dummy12 | +| generic.go:58:2:58:8 | dummy13 | codeql-go-types.MyInterface | dummy13 | +| generic.go:59:2:59:8 | dummy14 | codeql-go-types.MyInterface | dummy14 | +| generic.go:60:2:60:8 | dummy15 | codeql-go-types.MyInterface | dummy15 | +| generic.go:61:2:61:8 | dummy17 | codeql-go-types.MyInterface | dummy17 | +| generic.go:62:2:62:8 | dummy18 | codeql-go-types.MyInterface | dummy18 | +| generic.go:63:2:63:8 | dummy19 | codeql-go-types.MyInterface | dummy19 | +| generic.go:64:2:64:8 | dummy20 | codeql-go-types.MyInterface | dummy20 | +| interface.go:30:2:30:7 | String | codeql-go-types.i6 | String | +| interface.go:30:2:30:7 | String | codeql-go-types.i8 | String | +| interface.go:30:2:30:7 | String | codeql-go-types.i9 | String | +| interface.go:30:2:30:7 | String | codeql-go-types.i14 | String | +| interface.go:30:2:30:7 | String | codeql-go-types.i15 | String | +| interface.go:37:2:37:7 | String | codeql-go-types.i7 | String | +| interface.go:43:2:43:8 | StringA | codeql-go-types.i8 | StringA | +| interface.go:43:2:43:8 | StringA | codeql-go-types.i14 | StringA | +| interface.go:49:2:49:8 | StringB | codeql-go-types.i9 | StringB | +| interface.go:49:2:49:8 | StringB | codeql-go-types.i15 | StringB | +| interface.go:92:2:92:8 | StringA | codeql-go-types.i17 | StringA | +| interface.go:97:2:97:8 | StringA | codeql-go-types.i18 | StringA | +| interface.go:102:2:102:8 | StringB | codeql-go-types.i19 | StringB | +| interface.go:107:2:107:8 | StringB | codeql-go-types.i20 | StringB | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1.base | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1.embedder | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1.embedder2 | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1.ptrembedder | f | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.base | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.embedder | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.embedder2 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.embedder3 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.embedder4 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1.ptrembedder | g | +| pkg1/embedding.go:30:18:30:18 | f | codeql-go-types/pkg1.embedder3 | f | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1.A | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1.AC | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1.AEmbedded | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1.AExtended | m | +| pkg1/interfaces.go:8:2:8:2 | m | codeql-go-types/pkg1.B | m | +| pkg1/interfaces.go:9:2:9:2 | n | codeql-go-types/pkg1.B | n | +| pkg1/interfaces.go:13:2:13:2 | n | codeql-go-types/pkg1.AC | n | +| pkg1/interfaces.go:13:2:13:2 | n | codeql-go-types/pkg1.C | n | +| pkg1/interfaces.go:14:2:14:2 | o | codeql-go-types/pkg1.AC | o | +| pkg1/interfaces.go:14:2:14:2 | o | codeql-go-types/pkg1.C | o | +| pkg1/interfaces.go:28:2:28:2 | n | codeql-go-types/pkg1.AExtended | n | +| pkg1/interfaces.go:32:2:32:2 | m | codeql-go-types/pkg1.A2 | m | +| pkg1/interfaces.go:36:2:36:9 | Exported | codeql-go-types/pkg1.MixedExportedAndNot | Exported | +| pkg1/interfaces.go:37:2:37:12 | notExported | codeql-go-types/pkg1.MixedExportedAndNot | notExported | +| pkg1/promotedStructs.go:8:12:8:18 | SMethod | codeql-go-types/pkg1.S | SMethod | +| pkg1/promotedStructs.go:8:12:8:18 | SMethod | codeql-go-types/pkg1.SEmbedS | SMethod | +| pkg1/promotedStructs.go:17:13:17:19 | PMethod | codeql-go-types/pkg1.P | PMethod | +| pkg1/promotedStructs.go:17:13:17:19 | PMethod | codeql-go-types/pkg1.SEmbedP | PMethod | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1.Foo | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1.T | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1.T3 | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1.T4 | half | +| pkg2/tst.go:12:2:12:9 | Exported | codeql-go-types/pkg2.MixedExportedAndNot | Exported | +| pkg2/tst.go:13:2:13:12 | notExported | codeql-go-types/pkg2.MixedExportedAndNot | notExported | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types.EmbedsNameClash | NCMethod | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types/pkg1.NameClash | NCMethod | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types/pkg2.NameClash | NCMethod | diff --git a/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName3.expected b/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName3.expected index 9699ba3f382..1d6e9d098e5 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName3.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Method_hasQualifiedName3.expected @@ -1,70 +1,70 @@ -| generic.go:33:2:33:5 | GetT | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | GenericInterface | GetT | -| generic.go:48:2:48:6 | clone | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | clone | -| generic.go:49:2:49:7 | dummy1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy1 | -| generic.go:50:2:50:7 | dummy2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy2 | -| generic.go:51:2:51:7 | dummy3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy3 | -| generic.go:52:2:52:7 | dummy4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy4 | -| generic.go:53:2:53:7 | dummy5 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy5 | -| generic.go:54:2:54:7 | dummy6 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy6 | -| generic.go:55:2:55:7 | dummy7 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy7 | -| generic.go:56:2:56:8 | dummy11 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy11 | -| generic.go:57:2:57:8 | dummy12 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy12 | -| generic.go:58:2:58:8 | dummy13 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy13 | -| generic.go:59:2:59:8 | dummy14 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy14 | -| generic.go:60:2:60:8 | dummy15 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy15 | -| generic.go:61:2:61:8 | dummy17 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy17 | -| generic.go:62:2:62:8 | dummy18 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy18 | -| generic.go:63:2:63:8 | dummy19 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy19 | -| generic.go:64:2:64:8 | dummy20 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | MyInterface | dummy20 | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i6 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i8 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i9 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i14 | String | -| interface.go:30:2:30:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i15 | String | -| interface.go:37:2:37:7 | String | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i7 | String | -| interface.go:43:2:43:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i8 | StringA | -| interface.go:43:2:43:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i14 | StringA | -| interface.go:49:2:49:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i9 | StringB | -| interface.go:49:2:49:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i15 | StringB | -| interface.go:92:2:92:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i17 | StringA | -| interface.go:97:2:97:8 | StringA | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i18 | StringA | -| interface.go:102:2:102:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i19 | StringB | -| interface.go:107:2:107:8 | StringB | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | i20 | StringB | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | base | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder2 | f | -| pkg1/embedding.go:10:13:10:13 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | ptrembedder | f | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | base | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder2 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder3 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder4 | g | -| pkg1/embedding.go:14:14:14:14 | g | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | ptrembedder | g | -| pkg1/embedding.go:30:18:30:18 | f | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | embedder3 | f | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | A | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AC | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AEmbedded | m | -| pkg1/interfaces.go:4:2:4:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AExtended | m | -| pkg1/interfaces.go:8:2:8:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | B | m | -| pkg1/interfaces.go:9:2:9:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | B | n | -| pkg1/interfaces.go:13:2:13:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AC | n | -| pkg1/interfaces.go:13:2:13:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | C | n | -| pkg1/interfaces.go:14:2:14:2 | o | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AC | o | -| pkg1/interfaces.go:14:2:14:2 | o | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | C | o | -| pkg1/interfaces.go:28:2:28:2 | n | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | AExtended | n | -| pkg1/interfaces.go:32:2:32:2 | m | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | A2 | m | -| pkg1/interfaces.go:36:2:36:9 | Exported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | MixedExportedAndNot | Exported | -| pkg1/interfaces.go:37:2:37:12 | notExported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | MixedExportedAndNot | notExported | -| pkg1/promotedStructs.go:8:12:8:18 | SMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | S | SMethod | -| pkg1/promotedStructs.go:8:12:8:18 | SMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedS | SMethod | -| pkg1/promotedStructs.go:17:13:17:19 | PMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | P | PMethod | -| pkg1/promotedStructs.go:17:13:17:19 | PMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | SEmbedP | PMethod | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | Foo | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T3 | half | -| pkg1/tst.go:35:16:35:19 | half | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | T4 | half | -| pkg2/tst.go:12:2:12:9 | Exported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | MixedExportedAndNot | Exported | -| pkg2/tst.go:13:2:13:12 | notExported | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | MixedExportedAndNot | notExported | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types | EmbedsNameClash | NCMethod | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1 | NameClash | NCMethod | -| pkg2/tst.go:20:20:20:27 | NCMethod | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2 | NameClash | NCMethod | +| generic.go:33:2:33:5 | GetT | codeql-go-types | GenericInterface | GetT | +| generic.go:48:2:48:6 | clone | codeql-go-types | MyInterface | clone | +| generic.go:49:2:49:7 | dummy1 | codeql-go-types | MyInterface | dummy1 | +| generic.go:50:2:50:7 | dummy2 | codeql-go-types | MyInterface | dummy2 | +| generic.go:51:2:51:7 | dummy3 | codeql-go-types | MyInterface | dummy3 | +| generic.go:52:2:52:7 | dummy4 | codeql-go-types | MyInterface | dummy4 | +| generic.go:53:2:53:7 | dummy5 | codeql-go-types | MyInterface | dummy5 | +| generic.go:54:2:54:7 | dummy6 | codeql-go-types | MyInterface | dummy6 | +| generic.go:55:2:55:7 | dummy7 | codeql-go-types | MyInterface | dummy7 | +| generic.go:56:2:56:8 | dummy11 | codeql-go-types | MyInterface | dummy11 | +| generic.go:57:2:57:8 | dummy12 | codeql-go-types | MyInterface | dummy12 | +| generic.go:58:2:58:8 | dummy13 | codeql-go-types | MyInterface | dummy13 | +| generic.go:59:2:59:8 | dummy14 | codeql-go-types | MyInterface | dummy14 | +| generic.go:60:2:60:8 | dummy15 | codeql-go-types | MyInterface | dummy15 | +| generic.go:61:2:61:8 | dummy17 | codeql-go-types | MyInterface | dummy17 | +| generic.go:62:2:62:8 | dummy18 | codeql-go-types | MyInterface | dummy18 | +| generic.go:63:2:63:8 | dummy19 | codeql-go-types | MyInterface | dummy19 | +| generic.go:64:2:64:8 | dummy20 | codeql-go-types | MyInterface | dummy20 | +| interface.go:30:2:30:7 | String | codeql-go-types | i6 | String | +| interface.go:30:2:30:7 | String | codeql-go-types | i8 | String | +| interface.go:30:2:30:7 | String | codeql-go-types | i9 | String | +| interface.go:30:2:30:7 | String | codeql-go-types | i14 | String | +| interface.go:30:2:30:7 | String | codeql-go-types | i15 | String | +| interface.go:37:2:37:7 | String | codeql-go-types | i7 | String | +| interface.go:43:2:43:8 | StringA | codeql-go-types | i8 | StringA | +| interface.go:43:2:43:8 | StringA | codeql-go-types | i14 | StringA | +| interface.go:49:2:49:8 | StringB | codeql-go-types | i9 | StringB | +| interface.go:49:2:49:8 | StringB | codeql-go-types | i15 | StringB | +| interface.go:92:2:92:8 | StringA | codeql-go-types | i17 | StringA | +| interface.go:97:2:97:8 | StringA | codeql-go-types | i18 | StringA | +| interface.go:102:2:102:8 | StringB | codeql-go-types | i19 | StringB | +| interface.go:107:2:107:8 | StringB | codeql-go-types | i20 | StringB | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1 | base | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1 | embedder | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1 | embedder2 | f | +| pkg1/embedding.go:10:13:10:13 | f | codeql-go-types/pkg1 | ptrembedder | f | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | base | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | embedder | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | embedder2 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | embedder3 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | embedder4 | g | +| pkg1/embedding.go:14:14:14:14 | g | codeql-go-types/pkg1 | ptrembedder | g | +| pkg1/embedding.go:30:18:30:18 | f | codeql-go-types/pkg1 | embedder3 | f | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1 | A | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1 | AC | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1 | AEmbedded | m | +| pkg1/interfaces.go:4:2:4:2 | m | codeql-go-types/pkg1 | AExtended | m | +| pkg1/interfaces.go:8:2:8:2 | m | codeql-go-types/pkg1 | B | m | +| pkg1/interfaces.go:9:2:9:2 | n | codeql-go-types/pkg1 | B | n | +| pkg1/interfaces.go:13:2:13:2 | n | codeql-go-types/pkg1 | AC | n | +| pkg1/interfaces.go:13:2:13:2 | n | codeql-go-types/pkg1 | C | n | +| pkg1/interfaces.go:14:2:14:2 | o | codeql-go-types/pkg1 | AC | o | +| pkg1/interfaces.go:14:2:14:2 | o | codeql-go-types/pkg1 | C | o | +| pkg1/interfaces.go:28:2:28:2 | n | codeql-go-types/pkg1 | AExtended | n | +| pkg1/interfaces.go:32:2:32:2 | m | codeql-go-types/pkg1 | A2 | m | +| pkg1/interfaces.go:36:2:36:9 | Exported | codeql-go-types/pkg1 | MixedExportedAndNot | Exported | +| pkg1/interfaces.go:37:2:37:12 | notExported | codeql-go-types/pkg1 | MixedExportedAndNot | notExported | +| pkg1/promotedStructs.go:8:12:8:18 | SMethod | codeql-go-types/pkg1 | S | SMethod | +| pkg1/promotedStructs.go:8:12:8:18 | SMethod | codeql-go-types/pkg1 | SEmbedS | SMethod | +| pkg1/promotedStructs.go:17:13:17:19 | PMethod | codeql-go-types/pkg1 | P | PMethod | +| pkg1/promotedStructs.go:17:13:17:19 | PMethod | codeql-go-types/pkg1 | SEmbedP | PMethod | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1 | Foo | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1 | T | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1 | T3 | half | +| pkg1/tst.go:35:16:35:19 | half | codeql-go-types/pkg1 | T4 | half | +| pkg2/tst.go:12:2:12:9 | Exported | codeql-go-types/pkg2 | MixedExportedAndNot | Exported | +| pkg2/tst.go:13:2:13:12 | notExported | codeql-go-types/pkg2 | MixedExportedAndNot | notExported | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types | EmbedsNameClash | NCMethod | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types/pkg1 | NameClash | NCMethod | +| pkg2/tst.go:20:20:20:27 | NCMethod | codeql-go-types/pkg2 | NameClash | NCMethod | diff --git a/go/ql/test/library-tests/semmle/go/Types/QualifiedNames.expected b/go/ql/test/library-tests/semmle/go/Types/QualifiedNames.expected index dd6e9021a4f..ef350d71e76 100644 --- a/go/ql/test/library-tests/semmle/go/Types/QualifiedNames.expected +++ b/go/ql/test/library-tests/semmle/go/Types/QualifiedNames.expected @@ -1,111 +1,112 @@ -| aliases.go:19:6:19:7 | S3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S3 | -| cyclic.go:3:6:3:6 | s | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.s | -| cyclic.go:7:6:7:6 | t | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.t | -| cyclic.go:12:6:12:6 | u | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.u | -| cyclic.go:16:6:16:6 | v | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.v | -| depth.go:5:6:5:6 | a | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.a | -| depth.go:10:6:10:6 | b | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.b | -| depth.go:14:6:14:6 | c | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.c | -| depth.go:18:6:18:6 | d | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.d | -| embedded.go:3:6:3:8 | Baz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.Baz | -| embedded.go:7:6:7:8 | Qux | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.Qux | -| embedded.go:11:6:11:14 | EmbedsBaz | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsBaz | -| generic.go:3:6:3:19 | GenericStruct1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct1 | -| generic.go:11:6:11:27 | CircularGenericStruct1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.CircularGenericStruct1 | -| generic.go:15:6:15:31 | UsesCircularGenericStruct1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.UsesCircularGenericStruct1 | -| generic.go:19:6:19:19 | GenericStruct2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct2 | -| generic.go:24:6:24:20 | GenericStruct2b | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericStruct2b | -| generic.go:28:6:28:27 | CircularGenericStruct2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.CircularGenericStruct2 | -| generic.go:32:6:32:21 | GenericInterface | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericInterface | -| generic.go:36:6:36:17 | GenericArray | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericArray | -| generic.go:37:6:37:19 | GenericPointer | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericPointer | -| generic.go:38:6:38:17 | GenericSlice | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericSlice | -| generic.go:39:6:39:16 | GenericMap1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericMap1 | -| generic.go:40:6:40:16 | GenericMap2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericMap2 | -| generic.go:41:6:41:19 | GenericChannel | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericChannel | -| generic.go:42:6:42:14 | MyMapType | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyMapType | -| generic.go:43:6:43:17 | GenericNamed | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericNamed | -| generic.go:44:6:44:16 | MyFuncType1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyFuncType1 | -| generic.go:45:6:45:16 | MyFuncType2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyFuncType2 | -| generic.go:47:6:47:16 | MyInterface | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.MyInterface | -| generic.go:67:6:67:22 | HasBlankTypeParam | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.HasBlankTypeParam | -| generic.go:68:6:68:23 | HasBlankTypeParams | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.HasBlankTypeParams | -| generic.go:84:6:84:21 | GenericSignature | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.GenericSignature | -| interface.go:3:6:3:7 | i0 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i0 | -| interface.go:5:6:5:7 | i1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i1 | -| interface.go:9:6:9:7 | i2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i2 | -| interface.go:13:6:13:7 | i3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i3 | -| interface.go:18:6:18:7 | i4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i4 | -| interface.go:23:6:23:7 | i5 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i5 | -| interface.go:28:6:28:7 | i6 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i6 | -| interface.go:34:6:34:7 | i7 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i7 | -| interface.go:41:6:41:7 | i8 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i8 | -| interface.go:47:6:47:7 | i9 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i9 | -| interface.go:52:6:52:8 | i10 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i10 | -| interface.go:57:6:57:8 | i11 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i11 | -| interface.go:63:6:63:8 | i12 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i12 | -| interface.go:69:6:69:8 | i13 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i13 | -| interface.go:75:6:75:8 | i14 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i14 | -| interface.go:81:6:81:8 | i15 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i15 | -| interface.go:87:6:87:8 | i16 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i16 | -| interface.go:91:6:91:8 | i17 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i17 | -| interface.go:95:6:95:8 | i18 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i18 | -| interface.go:101:6:101:8 | i19 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i19 | -| interface.go:105:6:105:8 | i20 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.i20 | -| interface.go:114:6:114:19 | testComparable | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable | -| interface.go:115:6:115:20 | testComparable0 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable0 | -| interface.go:116:6:116:20 | testComparable1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable1 | -| interface.go:117:6:117:20 | testComparable2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable2 | -| interface.go:118:6:118:20 | testComparable3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable3 | -| interface.go:119:6:119:20 | testComparable4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable4 | -| interface.go:120:6:120:20 | testComparable5 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable5 | -| interface.go:121:6:121:20 | testComparable6 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable6 | -| interface.go:122:6:122:20 | testComparable7 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable7 | -| interface.go:123:6:123:20 | testComparable8 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable8 | -| interface.go:124:6:124:20 | testComparable9 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable9 | -| interface.go:125:6:125:21 | testComparable10 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable10 | -| interface.go:126:6:126:21 | testComparable11 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable11 | -| interface.go:127:6:127:21 | testComparable12 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable12 | -| interface.go:128:6:128:21 | testComparable13 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable13 | -| interface.go:129:6:129:21 | testComparable14 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable14 | -| interface.go:130:6:130:21 | testComparable15 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable15 | -| interface.go:131:6:131:21 | testComparable16 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable16 | -| interface.go:132:6:132:21 | testComparable17 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable17 | -| interface.go:133:6:133:21 | testComparable18 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable18 | -| interface.go:134:6:134:21 | testComparable19 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable19 | -| interface.go:135:6:135:21 | testComparable20 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable20 | -| interface.go:136:6:136:21 | testComparable21 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable21 | -| interface.go:137:6:137:21 | testComparable22 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable22 | -| interface.go:138:6:138:21 | testComparable23 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.testComparable23 | -| main.go:17:6:17:20 | EmbedsNameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.EmbedsNameClash | -| pkg1/embedding.go:8:6:8:9 | base | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.base | -| pkg1/embedding.go:19:6:19:13 | embedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder | -| pkg1/embedding.go:22:6:22:16 | ptrembedder | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.ptrembedder | -| pkg1/embedding.go:25:6:25:14 | embedder2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder2 | -| pkg1/embedding.go:28:6:28:14 | embedder3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder3 | -| pkg1/embedding.go:35:6:35:14 | embedder4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.embedder4 | -| pkg1/interfaces.go:3:6:3:6 | A | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.A | -| pkg1/interfaces.go:7:6:7:6 | B | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.B | -| pkg1/interfaces.go:12:6:12:6 | C | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.C | -| pkg1/interfaces.go:17:6:17:14 | AEmbedded | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AEmbedded | -| pkg1/interfaces.go:21:6:21:7 | AC | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AC | -| pkg1/interfaces.go:26:6:26:14 | AExtended | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.AExtended | -| pkg1/interfaces.go:31:6:31:7 | A2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.A2 | -| pkg1/interfaces.go:35:6:35:24 | MixedExportedAndNot | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.MixedExportedAndNot | -| pkg1/promotedStructs.go:4:6:4:6 | S | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.S | -| pkg1/promotedStructs.go:13:6:13:6 | P | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.P | -| pkg1/promotedStructs.go:22:6:22:12 | SEmbedS | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedS | -| pkg1/promotedStructs.go:25:6:25:12 | SEmbedP | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.SEmbedP | -| pkg1/tst.go:5:6:5:6 | T | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T | -| pkg1/tst.go:11:6:11:7 | T2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T2 | -| pkg1/tst.go:16:6:16:7 | T3 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T3 | -| pkg1/tst.go:21:6:21:7 | T4 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.T4 | -| pkg1/tst.go:26:6:26:8 | Foo | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Foo | -| pkg1/tst.go:31:6:31:8 | Bar | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.Bar | -| pkg1/tst.go:61:6:61:14 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1.NameClash | -| pkg2/tst.go:3:6:3:6 | T | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.T | -| pkg2/tst.go:7:6:7:6 | G | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.G | -| pkg2/tst.go:11:6:11:24 | MixedExportedAndNot | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.MixedExportedAndNot | -| pkg2/tst.go:16:6:16:14 | NameClash | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2.NameClash | -| struct_tags.go:3:6:3:7 | S1 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S1 | -| struct_tags.go:8:6:8:7 | S2 | github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types.S2 | +| aliases.go:19:6:19:7 | S3 | codeql-go-types.S3 | +| aliases.go:29:6:29:11 | MyType | codeql-go-types.MyType | +| cyclic.go:3:6:3:6 | s | codeql-go-types.s | +| cyclic.go:7:6:7:6 | t | codeql-go-types.t | +| cyclic.go:12:6:12:6 | u | codeql-go-types.u | +| cyclic.go:16:6:16:6 | v | codeql-go-types.v | +| depth.go:5:6:5:6 | a | codeql-go-types.a | +| depth.go:10:6:10:6 | b | codeql-go-types.b | +| depth.go:14:6:14:6 | c | codeql-go-types.c | +| depth.go:18:6:18:6 | d | codeql-go-types.d | +| embedded.go:3:6:3:8 | Baz | codeql-go-types.Baz | +| embedded.go:7:6:7:8 | Qux | codeql-go-types.Qux | +| embedded.go:11:6:11:14 | EmbedsBaz | codeql-go-types.EmbedsBaz | +| generic.go:3:6:3:19 | GenericStruct1 | codeql-go-types.GenericStruct1 | +| generic.go:11:6:11:27 | CircularGenericStruct1 | codeql-go-types.CircularGenericStruct1 | +| generic.go:15:6:15:31 | UsesCircularGenericStruct1 | codeql-go-types.UsesCircularGenericStruct1 | +| generic.go:19:6:19:19 | GenericStruct2 | codeql-go-types.GenericStruct2 | +| generic.go:24:6:24:20 | GenericStruct2b | codeql-go-types.GenericStruct2b | +| generic.go:28:6:28:27 | CircularGenericStruct2 | codeql-go-types.CircularGenericStruct2 | +| generic.go:32:6:32:21 | GenericInterface | codeql-go-types.GenericInterface | +| generic.go:36:6:36:17 | GenericArray | codeql-go-types.GenericArray | +| generic.go:37:6:37:19 | GenericPointer | codeql-go-types.GenericPointer | +| generic.go:38:6:38:17 | GenericSlice | codeql-go-types.GenericSlice | +| generic.go:39:6:39:16 | GenericMap1 | codeql-go-types.GenericMap1 | +| generic.go:40:6:40:16 | GenericMap2 | codeql-go-types.GenericMap2 | +| generic.go:41:6:41:19 | GenericChannel | codeql-go-types.GenericChannel | +| generic.go:42:6:42:14 | MyMapType | codeql-go-types.MyMapType | +| generic.go:43:6:43:19 | GenericDefined | codeql-go-types.GenericDefined | +| generic.go:44:6:44:16 | MyFuncType1 | codeql-go-types.MyFuncType1 | +| generic.go:45:6:45:16 | MyFuncType2 | codeql-go-types.MyFuncType2 | +| generic.go:47:6:47:16 | MyInterface | codeql-go-types.MyInterface | +| generic.go:67:6:67:22 | HasBlankTypeParam | codeql-go-types.HasBlankTypeParam | +| generic.go:68:6:68:23 | HasBlankTypeParams | codeql-go-types.HasBlankTypeParams | +| generic.go:84:6:84:21 | GenericSignature | codeql-go-types.GenericSignature | +| interface.go:3:6:3:7 | i0 | codeql-go-types.i0 | +| interface.go:5:6:5:7 | i1 | codeql-go-types.i1 | +| interface.go:9:6:9:7 | i2 | codeql-go-types.i2 | +| interface.go:13:6:13:7 | i3 | codeql-go-types.i3 | +| interface.go:18:6:18:7 | i4 | codeql-go-types.i4 | +| interface.go:23:6:23:7 | i5 | codeql-go-types.i5 | +| interface.go:28:6:28:7 | i6 | codeql-go-types.i6 | +| interface.go:34:6:34:7 | i7 | codeql-go-types.i7 | +| interface.go:41:6:41:7 | i8 | codeql-go-types.i8 | +| interface.go:47:6:47:7 | i9 | codeql-go-types.i9 | +| interface.go:52:6:52:8 | i10 | codeql-go-types.i10 | +| interface.go:57:6:57:8 | i11 | codeql-go-types.i11 | +| interface.go:63:6:63:8 | i12 | codeql-go-types.i12 | +| interface.go:69:6:69:8 | i13 | codeql-go-types.i13 | +| interface.go:75:6:75:8 | i14 | codeql-go-types.i14 | +| interface.go:81:6:81:8 | i15 | codeql-go-types.i15 | +| interface.go:87:6:87:8 | i16 | codeql-go-types.i16 | +| interface.go:91:6:91:8 | i17 | codeql-go-types.i17 | +| interface.go:95:6:95:8 | i18 | codeql-go-types.i18 | +| interface.go:101:6:101:8 | i19 | codeql-go-types.i19 | +| interface.go:105:6:105:8 | i20 | codeql-go-types.i20 | +| interface.go:114:6:114:19 | testComparable | codeql-go-types.testComparable | +| interface.go:115:6:115:20 | testComparable0 | codeql-go-types.testComparable0 | +| interface.go:116:6:116:20 | testComparable1 | codeql-go-types.testComparable1 | +| interface.go:117:6:117:20 | testComparable2 | codeql-go-types.testComparable2 | +| interface.go:118:6:118:20 | testComparable3 | codeql-go-types.testComparable3 | +| interface.go:119:6:119:20 | testComparable4 | codeql-go-types.testComparable4 | +| interface.go:120:6:120:20 | testComparable5 | codeql-go-types.testComparable5 | +| interface.go:121:6:121:20 | testComparable6 | codeql-go-types.testComparable6 | +| interface.go:122:6:122:20 | testComparable7 | codeql-go-types.testComparable7 | +| interface.go:123:6:123:20 | testComparable8 | codeql-go-types.testComparable8 | +| interface.go:124:6:124:20 | testComparable9 | codeql-go-types.testComparable9 | +| interface.go:125:6:125:21 | testComparable10 | codeql-go-types.testComparable10 | +| interface.go:126:6:126:21 | testComparable11 | codeql-go-types.testComparable11 | +| interface.go:127:6:127:21 | testComparable12 | codeql-go-types.testComparable12 | +| interface.go:128:6:128:21 | testComparable13 | codeql-go-types.testComparable13 | +| interface.go:129:6:129:21 | testComparable14 | codeql-go-types.testComparable14 | +| interface.go:130:6:130:21 | testComparable15 | codeql-go-types.testComparable15 | +| interface.go:131:6:131:21 | testComparable16 | codeql-go-types.testComparable16 | +| interface.go:132:6:132:21 | testComparable17 | codeql-go-types.testComparable17 | +| interface.go:133:6:133:21 | testComparable18 | codeql-go-types.testComparable18 | +| interface.go:134:6:134:21 | testComparable19 | codeql-go-types.testComparable19 | +| interface.go:135:6:135:21 | testComparable20 | codeql-go-types.testComparable20 | +| interface.go:136:6:136:21 | testComparable21 | codeql-go-types.testComparable21 | +| interface.go:137:6:137:21 | testComparable22 | codeql-go-types.testComparable22 | +| interface.go:138:6:138:21 | testComparable23 | codeql-go-types.testComparable23 | +| main.go:17:6:17:20 | EmbedsNameClash | codeql-go-types.EmbedsNameClash | +| pkg1/embedding.go:8:6:8:9 | base | codeql-go-types/pkg1.base | +| pkg1/embedding.go:19:6:19:13 | embedder | codeql-go-types/pkg1.embedder | +| pkg1/embedding.go:22:6:22:16 | ptrembedder | codeql-go-types/pkg1.ptrembedder | +| pkg1/embedding.go:25:6:25:14 | embedder2 | codeql-go-types/pkg1.embedder2 | +| pkg1/embedding.go:28:6:28:14 | embedder3 | codeql-go-types/pkg1.embedder3 | +| pkg1/embedding.go:35:6:35:14 | embedder4 | codeql-go-types/pkg1.embedder4 | +| pkg1/interfaces.go:3:6:3:6 | A | codeql-go-types/pkg1.A | +| pkg1/interfaces.go:7:6:7:6 | B | codeql-go-types/pkg1.B | +| pkg1/interfaces.go:12:6:12:6 | C | codeql-go-types/pkg1.C | +| pkg1/interfaces.go:17:6:17:14 | AEmbedded | codeql-go-types/pkg1.AEmbedded | +| pkg1/interfaces.go:21:6:21:7 | AC | codeql-go-types/pkg1.AC | +| pkg1/interfaces.go:26:6:26:14 | AExtended | codeql-go-types/pkg1.AExtended | +| pkg1/interfaces.go:31:6:31:7 | A2 | codeql-go-types/pkg1.A2 | +| pkg1/interfaces.go:35:6:35:24 | MixedExportedAndNot | codeql-go-types/pkg1.MixedExportedAndNot | +| pkg1/promotedStructs.go:4:6:4:6 | S | codeql-go-types/pkg1.S | +| pkg1/promotedStructs.go:13:6:13:6 | P | codeql-go-types/pkg1.P | +| pkg1/promotedStructs.go:22:6:22:12 | SEmbedS | codeql-go-types/pkg1.SEmbedS | +| pkg1/promotedStructs.go:25:6:25:12 | SEmbedP | codeql-go-types/pkg1.SEmbedP | +| pkg1/tst.go:5:6:5:6 | T | codeql-go-types/pkg1.T | +| pkg1/tst.go:11:6:11:7 | T2 | codeql-go-types/pkg1.T2 | +| pkg1/tst.go:16:6:16:7 | T3 | codeql-go-types/pkg1.T3 | +| pkg1/tst.go:21:6:21:7 | T4 | codeql-go-types/pkg1.T4 | +| pkg1/tst.go:26:6:26:8 | Foo | codeql-go-types/pkg1.Foo | +| pkg1/tst.go:31:6:31:8 | Bar | codeql-go-types/pkg1.Bar | +| pkg1/tst.go:61:6:61:14 | NameClash | codeql-go-types/pkg1.NameClash | +| pkg2/tst.go:3:6:3:6 | T | codeql-go-types/pkg2.T | +| pkg2/tst.go:7:6:7:6 | G | codeql-go-types/pkg2.G | +| pkg2/tst.go:11:6:11:24 | MixedExportedAndNot | codeql-go-types/pkg2.MixedExportedAndNot | +| pkg2/tst.go:16:6:16:14 | NameClash | codeql-go-types/pkg2.NameClash | +| struct_tags.go:3:6:3:7 | S1 | codeql-go-types.S1 | +| struct_tags.go:8:6:8:7 | S2 | codeql-go-types.S2 | diff --git a/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumParameter.expected b/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumParameter.expected index 5831152884b..5c8d39df5ec 100644 --- a/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumParameter.expected +++ b/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumParameter.expected @@ -1,6 +1,7 @@ | aliases.go:10:1:12:1 | function declaration | 1 | | aliases.go:14:1:16:1 | function declaration | 1 | | aliases.go:25:1:27:1 | function declaration | 1 | +| aliases.go:34:1:38:1 | function declaration | 1 | | depth.go:22:1:25:1 | function declaration | 0 | | generic.go:70:1:72:1 | function declaration | 1 | | generic.go:74:1:80:1 | function declaration | 1 | diff --git a/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumResult.expected b/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumResult.expected index 960a272f73c..a5e71b7f4d9 100644 --- a/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumResult.expected +++ b/go/ql/test/library-tests/semmle/go/Types/SignatureType_getNumResult.expected @@ -1,6 +1,7 @@ | aliases.go:10:1:12:1 | function declaration | 1 | | aliases.go:14:1:16:1 | function declaration | 1 | | aliases.go:25:1:27:1 | function declaration | 1 | +| aliases.go:34:1:38:1 | function declaration | 1 | | depth.go:22:1:25:1 | function declaration | 0 | | generic.go:70:1:72:1 | function declaration | 1 | | generic.go:74:1:80:1 | function declaration | 0 | diff --git a/go/ql/test/library-tests/semmle/go/Types/StructFields.expected b/go/ql/test/library-tests/semmle/go/Types/StructFields.expected index 1757e0cdaf9..42138b47cbc 100644 --- a/go/ql/test/library-tests/semmle/go/Types/StructFields.expected +++ b/go/ql/test/library-tests/semmle/go/Types/StructFields.expected @@ -1,6 +1,7 @@ | aliases.go:19:6:19:7 | S3 | aliases.go:6:18:6:37 | struct type | x | int | | aliases.go:19:6:19:7 | S3 | aliases.go:8:18:8:37 | struct type | x | int | | aliases.go:19:6:19:7 | S3 | aliases.go:19:9:19:23 | struct type | x | int | +| aliases.go:29:6:29:11 | MyType | aliases.go:29:26:29:44 | struct type | x | MyTypeT | | cyclic.go:3:6:3:6 | s | cyclic.go:3:8:5:1 | struct type | s | * s | | cyclic.go:7:6:7:6 | t | cyclic.go:7:8:10:1 | struct type | f | int | | cyclic.go:7:6:7:6 | t | cyclic.go:7:8:10:1 | struct type | t | t | diff --git a/go/ql/test/library-tests/semmle/go/Types/StructFields.ql b/go/ql/test/library-tests/semmle/go/Types/StructFields.ql index 0e0b93b230e..4509cd610f2 100644 --- a/go/ql/test/library-tests/semmle/go/Types/StructFields.ql +++ b/go/ql/test/library-tests/semmle/go/Types/StructFields.ql @@ -1,7 +1,7 @@ import go -from StructTypeExpr ste, NamedType named, string name, Type tp +from StructTypeExpr ste, DefinedType defined, string name, Type tp where - named.getUnderlyingType() = ste.getType() and + defined.getUnderlyingType() = ste.getType() and ste.getType().(StructType).hasField(name, tp) -select named, ste, name, tp.pp() +select defined, ste, name, tp.pp() diff --git a/go/ql/test/library-tests/semmle/go/Types/Types.expected b/go/ql/test/library-tests/semmle/go/Types/Types.expected index ab34dd4d8ee..e79906180bb 100644 --- a/go/ql/test/library-tests/semmle/go/Types/Types.expected +++ b/go/ql/test/library-tests/semmle/go/Types/Types.expected @@ -1,4 +1,5 @@ | aliases.go:19:6:19:7 | S3 | S3 | +| aliases.go:29:6:29:11 | MyType | MyType | | cyclic.go:3:6:3:6 | s | s | | cyclic.go:7:6:7:6 | t | t | | cyclic.go:12:6:12:6 | u | u | @@ -24,7 +25,7 @@ | generic.go:40:6:40:16 | GenericMap2 | GenericMap2 | | generic.go:41:6:41:19 | GenericChannel | GenericChannel | | generic.go:42:6:42:14 | MyMapType | MyMapType | -| generic.go:43:6:43:17 | GenericNamed | GenericNamed | +| generic.go:43:6:43:19 | GenericDefined | GenericDefined | | generic.go:44:6:44:16 | MyFuncType1 | MyFuncType1 | | generic.go:45:6:45:16 | MyFuncType2 | MyFuncType2 | | generic.go:47:6:47:16 | MyInterface | MyInterface | diff --git a/go/ql/test/library-tests/semmle/go/Types/aliases.go b/go/ql/test/library-tests/semmle/go/Types/aliases.go index 49f84658732..05827f8ef37 100644 --- a/go/ql/test/library-tests/semmle/go/Types/aliases.go +++ b/go/ql/test/library-tests/semmle/go/Types/aliases.go @@ -15,7 +15,7 @@ func G(Afs2 aliasesS2) int { return Afs2.x } -// This is a named type, not an alias +// This is a defined type, not an alias type S3 struct{ x int } // This is a type alias @@ -25,3 +25,14 @@ type T = S3 func H(Afs3 T) int { return Afs3.x } + +type MyType[MyTypeT any] struct{ x MyTypeT } + +// An alias with a type parameter - added in Go 1.24 +type MyTypeAlias[MyTypeAliasT any] = MyType[MyTypeAliasT] + +func useMyTypeAlias(a MyTypeAlias[string]) string { + b := MyTypeAlias[string]{x: "hello"} + a.x = b.x + return a.x +} diff --git a/go/ql/test/library-tests/semmle/go/Types/generic.go b/go/ql/test/library-tests/semmle/go/Types/generic.go index 66c739f7061..e4daba4551a 100644 --- a/go/ql/test/library-tests/semmle/go/Types/generic.go +++ b/go/ql/test/library-tests/semmle/go/Types/generic.go @@ -40,7 +40,7 @@ type GenericMap1[V any] map[string]V type GenericMap2[K comparable, V any] map[K]V type GenericChannel[T comparable] chan<- T type MyMapType map[string]int -type GenericNamed[T comparable] MyMapType +type GenericDefined[T comparable] MyMapType type MyFuncType1[T any] func(T) type MyFuncType2[T1 any, T2 any] func(T1) T2 @@ -59,7 +59,7 @@ type MyInterface[U comparable] interface { dummy14() GenericMap1[U] dummy15() GenericMap2[U, U] dummy17() GenericChannel[U] - dummy18() GenericNamed[U] + dummy18() GenericDefined[U] dummy19() MyFuncType1[U] dummy20() MyFuncType2[U, U] } diff --git a/go/ql/test/library-tests/semmle/go/Types/go.mod b/go/ql/test/library-tests/semmle/go/Types/go.mod new file mode 100644 index 00000000000..cb8e059d373 --- /dev/null +++ b/go/ql/test/library-tests/semmle/go/Types/go.mod @@ -0,0 +1,3 @@ +module codeql-go-types + +go 1.24 diff --git a/go/ql/test/library-tests/semmle/go/Types/main.go b/go/ql/test/library-tests/semmle/go/Types/main.go index de11cbd152f..f75e55694a8 100644 --- a/go/ql/test/library-tests/semmle/go/Types/main.go +++ b/go/ql/test/library-tests/semmle/go/Types/main.go @@ -3,7 +3,7 @@ package main import ( "regexp" - "github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1" + "codeql-go-types/pkg1" ) func test(r *regexp.Regexp) {} diff --git a/go/ql/test/library-tests/semmle/go/Types/pkg1/tst.go b/go/ql/test/library-tests/semmle/go/Types/pkg1/tst.go index 598e711ff2c..61a83f34496 100644 --- a/go/ql/test/library-tests/semmle/go/Types/pkg1/tst.go +++ b/go/ql/test/library-tests/semmle/go/Types/pkg1/tst.go @@ -1,6 +1,6 @@ package pkg1 -import "github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg2" +import "codeql-go-types/pkg2" type T struct { f int diff --git a/go/ql/test/library-tests/semmle/go/Types/promoted.go b/go/ql/test/library-tests/semmle/go/Types/promoted.go index 326b81084a7..962ff8f75d2 100644 --- a/go/ql/test/library-tests/semmle/go/Types/promoted.go +++ b/go/ql/test/library-tests/semmle/go/Types/promoted.go @@ -1,6 +1,6 @@ package main -import "github.com/github/codeql-go/ql/test/library-tests/semmle/go/Types/pkg1" +import "codeql-go-types/pkg1" // IMPORTANT: Make sure that *pkg1.SEmbedP is not referenced. diff --git a/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.expected b/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.expected index 530034fac91..f766a1a2db6 100644 --- a/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.expected +++ b/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.expected @@ -1,8 +1,36 @@ +#select +| test.go:81:13:81:29 | type conversion | test.go:80:13:80:16 | &... | test.go:81:13:81:29 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:80:13:80:16 | &... | stored value | +| test.go:82:13:82:43 | type conversion | test.go:80:13:80:16 | &... | test.go:82:13:82:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:80:13:80:16 | &... | stored value | +| test.go:86:13:86:30 | type conversion | test.go:85:22:85:26 | &... | test.go:86:13:86:30 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:85:22:85:26 | &... | stored value | +| test.go:90:13:90:30 | type conversion | test.go:89:21:89:25 | &... | test.go:90:13:90:30 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:89:21:89:25 | &... | stored value | +| test.go:95:13:95:37 | type conversion | test.go:95:20:95:36 | call to Value | test.go:95:13:95:37 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:95:20:95:36 | call to Value | stored value | +| test.go:96:13:96:49 | type conversion | test.go:96:20:96:39 | call to RawValue | test.go:96:13:96:49 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:96:20:96:39 | call to RawValue | stored value | +| test.go:97:13:97:38 | type conversion | test.go:97:20:97:37 | call to String | test.go:97:13:97:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:97:20:97:37 | call to String | stored value | +| test.go:98:13:98:37 | type conversion | test.go:98:20:98:36 | call to Value | test.go:98:13:98:37 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:98:20:98:36 | call to Value | stored value | +| test.go:99:13:99:49 | type conversion | test.go:99:20:99:39 | call to RawValue | test.go:99:13:99:49 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:99:20:99:39 | call to RawValue | stored value | +| test.go:100:13:100:38 | type conversion | test.go:100:20:100:37 | call to String | test.go:100:13:100:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:100:20:100:37 | call to String | stored value | +| test.go:101:13:101:38 | type conversion | test.go:101:20:101:37 | call to Value | test.go:101:13:101:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:101:20:101:37 | call to Value | stored value | +| test.go:102:13:102:50 | type conversion | test.go:102:20:102:40 | call to RawValue | test.go:102:13:102:50 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:102:20:102:40 | call to RawValue | stored value | +| test.go:103:13:103:39 | type conversion | test.go:103:20:103:38 | call to String | test.go:103:13:103:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:103:20:103:38 | call to String | stored value | +| test.go:110:13:110:33 | type conversion | test.go:109:9:109:13 | &... | test.go:110:13:110:33 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:109:9:109:13 | &... | stored value | +| test.go:114:13:114:29 | type conversion | test.go:113:9:113:12 | &... | test.go:114:13:114:29 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:113:9:113:12 | &... | stored value | +| test.go:118:13:118:48 | type conversion | test.go:117:12:117:19 | &... | test.go:118:13:118:48 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:117:12:117:19 | &... | stored value | +| test.go:122:13:122:43 | type conversion | test.go:121:16:121:24 | &... | test.go:122:13:122:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:121:16:121:24 | &... | stored value | +| test.go:126:13:126:39 | type conversion | test.go:125:16:125:23 | &... | test.go:126:13:126:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:125:16:125:23 | &... | stored value | +| test.go:130:13:130:47 | type conversion | test.go:129:15:129:24 | &... | test.go:130:13:130:47 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:129:15:129:24 | &... | stored value | +| test.go:134:13:134:38 | type conversion | test.go:133:18:133:30 | &... | test.go:134:13:134:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:133:18:133:30 | &... | stored value | +| test.go:141:13:141:48 | type conversion | test.go:140:12:140:19 | &... | test.go:141:13:141:48 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:140:12:140:19 | &... | stored value | +| test.go:145:13:145:43 | type conversion | test.go:144:16:144:24 | &... | test.go:145:13:145:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:144:16:144:24 | &... | stored value | +| test.go:149:13:149:39 | type conversion | test.go:148:16:148:23 | &... | test.go:149:13:149:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:148:16:148:23 | &... | stored value | +| test.go:153:13:153:47 | type conversion | test.go:152:15:152:24 | &... | test.go:153:13:153:47 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:152:15:152:24 | &... | stored value | +| test.go:157:13:157:38 | type conversion | test.go:156:18:156:30 | &... | test.go:157:13:157:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:156:18:156:30 | &... | stored value | +| test.go:161:13:161:28 | type conversion | test.go:160:14:160:22 | &... | test.go:161:13:161:28 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:160:14:160:22 | &... | stored value | +| test.go:165:13:165:32 | type conversion | test.go:164:15:164:24 | &... | test.go:165:13:165:32 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:164:15:164:24 | &... | stored value | edges -| test.go:80:13:80:16 | &... | test.go:81:13:81:29 | type conversion | provenance | Src:MaD:339 | -| test.go:80:13:80:16 | &... | test.go:82:13:82:43 | type conversion | provenance | Src:MaD:339 | -| test.go:85:22:85:26 | &... | test.go:86:13:86:30 | type conversion | provenance | Src:MaD:340 | -| test.go:89:21:89:25 | &... | test.go:90:13:90:30 | type conversion | provenance | Src:MaD:341 | +| test.go:80:13:80:16 | &... | test.go:81:13:81:29 | type conversion | provenance | Src:MaD:1 | +| test.go:80:13:80:16 | &... | test.go:82:13:82:43 | type conversion | provenance | Src:MaD:1 | +| test.go:85:22:85:26 | &... | test.go:86:13:86:30 | type conversion | provenance | Src:MaD:2 | +| test.go:89:21:89:25 | &... | test.go:90:13:90:30 | type conversion | provenance | Src:MaD:3 | | test.go:95:20:95:36 | call to Value | test.go:95:13:95:37 | type conversion | provenance | | | test.go:96:20:96:39 | call to RawValue | test.go:96:13:96:49 | type conversion | provenance | | | test.go:97:20:97:37 | call to String | test.go:97:13:97:38 | type conversion | provenance | | @@ -26,6 +54,10 @@ edges | test.go:156:18:156:30 | &... | test.go:157:13:157:38 | type conversion | provenance | | | test.go:160:14:160:22 | &... | test.go:161:13:161:28 | type conversion | provenance | | | test.go:164:15:164:24 | &... | test.go:165:13:165:32 | type conversion | provenance | | +models +| 1 | Source: group:beego-orm; Ormer; true; Read; ; ; Argument[0]; database; manual | +| 2 | Source: group:beego-orm; Ormer; true; ReadForUpdate; ; ; Argument[0]; database; manual | +| 3 | Source: group:beego-orm; Ormer; true; ReadOrCreate; ; ; Argument[0]; database; manual | nodes | test.go:80:13:80:16 | &... | semmle.label | &... | | test.go:81:13:81:29 | type conversion | semmle.label | type conversion | @@ -81,31 +113,3 @@ nodes | test.go:164:15:164:24 | &... | semmle.label | &... | | test.go:165:13:165:32 | type conversion | semmle.label | type conversion | subpaths -#select -| test.go:81:13:81:29 | type conversion | test.go:80:13:80:16 | &... | test.go:81:13:81:29 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:80:13:80:16 | &... | stored value | -| test.go:82:13:82:43 | type conversion | test.go:80:13:80:16 | &... | test.go:82:13:82:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:80:13:80:16 | &... | stored value | -| test.go:86:13:86:30 | type conversion | test.go:85:22:85:26 | &... | test.go:86:13:86:30 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:85:22:85:26 | &... | stored value | -| test.go:90:13:90:30 | type conversion | test.go:89:21:89:25 | &... | test.go:90:13:90:30 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:89:21:89:25 | &... | stored value | -| test.go:95:13:95:37 | type conversion | test.go:95:20:95:36 | call to Value | test.go:95:13:95:37 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:95:20:95:36 | call to Value | stored value | -| test.go:96:13:96:49 | type conversion | test.go:96:20:96:39 | call to RawValue | test.go:96:13:96:49 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:96:20:96:39 | call to RawValue | stored value | -| test.go:97:13:97:38 | type conversion | test.go:97:20:97:37 | call to String | test.go:97:13:97:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:97:20:97:37 | call to String | stored value | -| test.go:98:13:98:37 | type conversion | test.go:98:20:98:36 | call to Value | test.go:98:13:98:37 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:98:20:98:36 | call to Value | stored value | -| test.go:99:13:99:49 | type conversion | test.go:99:20:99:39 | call to RawValue | test.go:99:13:99:49 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:99:20:99:39 | call to RawValue | stored value | -| test.go:100:13:100:38 | type conversion | test.go:100:20:100:37 | call to String | test.go:100:13:100:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:100:20:100:37 | call to String | stored value | -| test.go:101:13:101:38 | type conversion | test.go:101:20:101:37 | call to Value | test.go:101:13:101:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:101:20:101:37 | call to Value | stored value | -| test.go:102:13:102:50 | type conversion | test.go:102:20:102:40 | call to RawValue | test.go:102:13:102:50 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:102:20:102:40 | call to RawValue | stored value | -| test.go:103:13:103:39 | type conversion | test.go:103:20:103:38 | call to String | test.go:103:13:103:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:103:20:103:38 | call to String | stored value | -| test.go:110:13:110:33 | type conversion | test.go:109:9:109:13 | &... | test.go:110:13:110:33 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:109:9:109:13 | &... | stored value | -| test.go:114:13:114:29 | type conversion | test.go:113:9:113:12 | &... | test.go:114:13:114:29 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:113:9:113:12 | &... | stored value | -| test.go:118:13:118:48 | type conversion | test.go:117:12:117:19 | &... | test.go:118:13:118:48 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:117:12:117:19 | &... | stored value | -| test.go:122:13:122:43 | type conversion | test.go:121:16:121:24 | &... | test.go:122:13:122:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:121:16:121:24 | &... | stored value | -| test.go:126:13:126:39 | type conversion | test.go:125:16:125:23 | &... | test.go:126:13:126:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:125:16:125:23 | &... | stored value | -| test.go:130:13:130:47 | type conversion | test.go:129:15:129:24 | &... | test.go:130:13:130:47 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:129:15:129:24 | &... | stored value | -| test.go:134:13:134:38 | type conversion | test.go:133:18:133:30 | &... | test.go:134:13:134:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:133:18:133:30 | &... | stored value | -| test.go:141:13:141:48 | type conversion | test.go:140:12:140:19 | &... | test.go:141:13:141:48 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:140:12:140:19 | &... | stored value | -| test.go:145:13:145:43 | type conversion | test.go:144:16:144:24 | &... | test.go:145:13:145:43 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:144:16:144:24 | &... | stored value | -| test.go:149:13:149:39 | type conversion | test.go:148:16:148:23 | &... | test.go:149:13:149:39 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:148:16:148:23 | &... | stored value | -| test.go:153:13:153:47 | type conversion | test.go:152:15:152:24 | &... | test.go:153:13:153:47 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:152:15:152:24 | &... | stored value | -| test.go:157:13:157:38 | type conversion | test.go:156:18:156:30 | &... | test.go:157:13:157:38 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:156:18:156:30 | &... | stored value | -| test.go:161:13:161:28 | type conversion | test.go:160:14:160:22 | &... | test.go:161:13:161:28 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:160:14:160:22 | &... | stored value | -| test.go:165:13:165:32 | type conversion | test.go:164:15:164:24 | &... | test.go:165:13:165:32 | type conversion | Stored cross-site scripting vulnerability due to $@. | test.go:164:15:164:24 | &... | stored value | diff --git a/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.qlref b/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.qlref index 1ab28863211..66b7d67dd8f 100644 --- a/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.qlref +++ b/go/ql/test/library-tests/semmle/go/frameworks/BeegoOrm/StoredXss.qlref @@ -1 +1,2 @@ -Security/CWE-079/StoredXss.ql +query: Security/CWE-079/StoredXss.ql +postprocess: utils/test/PrettyPrintModels.ql diff --git a/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Encoding.go b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Encoding.go index 838ab9ae001..3d6e38fce67 100644 --- a/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Encoding.go +++ b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Encoding.go @@ -1,5 +1,3 @@ -// Code generated by https://github.com/gagliardetto/codebox. DO NOT EDIT. - package main import "encoding" @@ -30,6 +28,34 @@ func TaintStepTest_EncodingTextUnmarshalerUnmarshalText_B0I0O0(sourceCQL interfa return intoTextUnmarshaler443 } +func TaintStepTest_EncodingBinaryAppenderAppendBinary_manual1(sourceCQL interface{}) interface{} { + fromBinaryAppender := sourceCQL.(encoding.BinaryAppender) + var arg0 []byte + intoByte, _ := fromBinaryAppender.AppendBinary(arg0) + return intoByte +} + +func TaintStepTest_EncodingBinaryAppenderAppendBinary_manual2(sourceCQL interface{}) interface{} { + var recv encoding.BinaryAppender + fromByteSlice := sourceCQL.([]byte) + intoByte, _ := recv.AppendBinary(fromByteSlice) + return intoByte +} + +func TaintStepTest_EncodingTextAppenderAppendText_manual1(sourceCQL interface{}) interface{} { + fromTextAppender := sourceCQL.(encoding.TextAppender) + var arg0 []byte + intoByte, _ := fromTextAppender.AppendText(arg0) + return intoByte +} + +func TaintStepTest_EncodingTextAppenderAppendText_manual2(sourceCQL interface{}) interface{} { + var recv encoding.TextAppender + fromByteSlice := sourceCQL.([]byte) + intoByte, _ := recv.AppendText(fromByteSlice) + return intoByte +} + func RunAllTaints_Encoding() { { source := newSource(0) @@ -51,4 +77,24 @@ func RunAllTaints_Encoding() { out := TaintStepTest_EncodingTextUnmarshalerUnmarshalText_B0I0O0(source) sink(3, out) } + { + source := newSource(4) + out := TaintStepTest_EncodingBinaryAppenderAppendBinary_manual1(source) + sink(4, out) + } + { + source := newSource(5) + out := TaintStepTest_EncodingBinaryAppenderAppendBinary_manual2(source) + sink(5, out) + } + { + source := newSource(6) + out := TaintStepTest_EncodingTextAppenderAppendText_manual1(source) + sink(6, out) + } + { + source := newSource(7) + out := TaintStepTest_EncodingTextAppenderAppendText_manual2(source) + sink(7, out) + } } diff --git a/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Weak.go b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Weak.go new file mode 100644 index 00000000000..e10730ca7d1 --- /dev/null +++ b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/Weak.go @@ -0,0 +1,27 @@ +package main + +import "weak" + +func TaintStepTest_WeakMake_manual(sourceCQL interface{}) interface{} { + fromStringPointer := sourceCQL.(*string) + intoWeakPointer := weak.Make(fromStringPointer) + return intoWeakPointer +} +func TaintStepTest_WeakValue_manual(sourceCQL interface{}) interface{} { + fromWeakPointer := sourceCQL.(weak.Pointer[string]) + intoStringPointer := fromWeakPointer.Value() + return intoStringPointer +} + +func RunAllTaints_Weak() { + { + source := newSource(0) + out := TaintStepTest_WeakMake_manual(source) + sink(0, out) + } + { + source := newSource(1) + out := TaintStepTest_WeakValue_manual(source) + sink(1, out) + } +} diff --git a/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/go.mod b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/go.mod index 4168c0a398b..5ba39421f3b 100644 --- a/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/go.mod +++ b/go/ql/test/library-tests/semmle/go/frameworks/StdlibTaintFlow/go.mod @@ -1,6 +1,6 @@ module example.com/m -go 1.23 +go 1.24 require ( golang.org/x/net v0.0.0-20201010224723-4f7140c49acb diff --git a/go/ql/test/library-tests/semmle/go/frameworks/Twirp/tests.ql b/go/ql/test/library-tests/semmle/go/frameworks/Twirp/tests.ql index 563cb149a9a..5866b6ff3ed 100644 --- a/go/ql/test/library-tests/semmle/go/frameworks/Twirp/tests.ql +++ b/go/ql/test/library-tests/semmle/go/frameworks/Twirp/tests.ql @@ -54,7 +54,7 @@ query predicate passingPositiveTests(string res, string expectation, InlineTest exists(Twirp::ProtobufMessageType n | t.inType(n)) or expectation = "serviceInterface" and - exists(Twirp::ServiceInterfaceType n | t.inType(n.getNamedType())) + exists(Twirp::ServiceInterfaceType n | t.inType(n.getDefinedType())) or expectation = "serviceClient" and exists(Twirp::ServiceClientType n | t.inType(n)) @@ -90,7 +90,7 @@ query predicate failingPositiveTests(string res, string expectation, InlineTest not exists(Twirp::ProtobufMessageType n | t.inType(n)) or expectation = "serviceInterface" and - not exists(Twirp::ServiceInterfaceType n | t.inType(n.getNamedType())) + not exists(Twirp::ServiceInterfaceType n | t.inType(n.getDefinedType())) or expectation = "serviceClient" and not exists(Twirp::ServiceClientType n | t.inType(n)) diff --git a/go/ql/test/query-tests/Diagnostics/CONSISTENCY/UnexpectedFrontendErrors.expected b/go/ql/test/query-tests/Diagnostics/CONSISTENCY/UnexpectedFrontendErrors.expected index 19c2ad21db8..f0e0fb5cdeb 100644 --- a/go/ql/test/query-tests/Diagnostics/CONSISTENCY/UnexpectedFrontendErrors.expected +++ b/go/ql/test/query-tests/Diagnostics/CONSISTENCY/UnexpectedFrontendErrors.expected @@ -5,4 +5,4 @@ | bad.go:3:5:3:5 | expected 'IDENT', found newline | | bad.go:5:1:5:1 | expected ';', found wnvwun | | badimport.go:6:2:6:2 | invalid import path (invalid character U+007B '{') | -| type.go:11:9:11:9 | cannot use v (variable of type V) as T value in argument to takesT | +| type.go:11:9:11:9 | cannot use v (variable of int type V) as T value in argument to takesT | diff --git a/go/ql/test/query-tests/Diagnostics/ExtractionErrors.expected b/go/ql/test/query-tests/Diagnostics/ExtractionErrors.expected index c5afba4d05d..2360984e6af 100644 --- a/go/ql/test/query-tests/Diagnostics/ExtractionErrors.expected +++ b/go/ql/test/query-tests/Diagnostics/ExtractionErrors.expected @@ -1,5 +1,5 @@ | Extraction failed in badimport.go with error invalid import path (invalid character U+007B '{') | 2 | -| Extraction failed in type.go with error cannot use v (variable of type V) as T value in argument to takesT | 2 | +| Extraction failed in type.go with error cannot use v (variable of int type V) as T value in argument to takesT | 2 | | Extraction failed with error expected ';', found wnvwun | 2 | | Extraction failed with error expected 'IDENT', found newline | 2 | | Extraction failed with error expected 'package', found avvu | 2 | diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/MuxClean.go b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/MuxClean.go new file mode 100644 index 00000000000..a5af6de5580 --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/MuxClean.go @@ -0,0 +1,22 @@ +package main + +import ( + "io/ioutil" + "net/http" + "path/filepath" + + "github.com/gorilla/mux" +) + +// GOOD: Sanitized by Gorilla's cleaner +func GorillaHandler(w http.ResponseWriter, r *http.Request) { + not_tainted_path := mux.Vars(r)["id"] + data, _ := ioutil.ReadFile(filepath.Join("/home/user/", not_tainted_path)) + w.Write(data) +} + +func main() { + var router = mux.NewRouter() + router.SkipClean(false) + router.HandleFunc("/{category}", GorillaHandler) +} diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.expected b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.expected new file mode 100644 index 00000000000..e217064d1df --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.expected @@ -0,0 +1,4 @@ +edges +nodes +subpaths +#select diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.qlref b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.qlref new file mode 100644 index 00000000000..1e9166dd1ca --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/TaintedPath.qlref @@ -0,0 +1,2 @@ +query: Security/CWE-022/TaintedPath.ql +postprocess: utils/test//PrettyPrintModels.ql \ No newline at end of file diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/go.mod b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/go.mod new file mode 100644 index 00000000000..c173488c7c7 --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/go.mod @@ -0,0 +1,5 @@ +module codeql-go-tests/frameworks/Mux + +go 1.14 + +require github.com/gorilla/mux v1.7.4 diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/LICENSE b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/LICENSE new file mode 100644 index 00000000000..6903df6386e --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/stub.go b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/stub.go new file mode 100644 index 00000000000..62510300b2d --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/github.com/gorilla/mux/stub.go @@ -0,0 +1,252 @@ +// Code generated by depstubber. DO NOT EDIT. +// This is a simple stub for github.com/gorilla/mux, strictly for use in testing. + +// See the LICENSE file for information about the licensing of the original library. +// Source: github.com/gorilla/mux (exports: ; functions: Vars,NewRouter) + +// Package mux is a stub of github.com/gorilla/mux, generated by depstubber. +package mux + +import ( + http "net/http" + url "net/url" +) + +type BuildVarsFunc func(map[string]string) map[string]string + +type MatcherFunc func(*http.Request, *RouteMatch) bool + +func (_ MatcherFunc) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +type MiddlewareFunc func(http.Handler) http.Handler + +func (_ MiddlewareFunc) Middleware(_ http.Handler) http.Handler { + return nil +} + +func NewRouter() *Router { + return nil +} + +type Route struct{} + +func (_ *Route) BuildOnly() *Route { + return nil +} + +func (_ *Route) BuildVarsFunc(_ BuildVarsFunc) *Route { + return nil +} + +func (_ *Route) GetError() error { + return nil +} + +func (_ *Route) GetHandler() http.Handler { + return nil +} + +func (_ *Route) GetHostTemplate() (string, error) { + return "", nil +} + +func (_ *Route) GetMethods() ([]string, error) { + return nil, nil +} + +func (_ *Route) GetName() string { + return "" +} + +func (_ *Route) GetPathRegexp() (string, error) { + return "", nil +} + +func (_ *Route) GetPathTemplate() (string, error) { + return "", nil +} + +func (_ *Route) GetQueriesRegexp() ([]string, error) { + return nil, nil +} + +func (_ *Route) GetQueriesTemplates() ([]string, error) { + return nil, nil +} + +func (_ *Route) Handler(_ http.Handler) *Route { + return nil +} + +func (_ *Route) HandlerFunc(_ func(http.ResponseWriter, *http.Request)) *Route { + return nil +} + +func (_ *Route) Headers(_ ...string) *Route { + return nil +} + +func (_ *Route) HeadersRegexp(_ ...string) *Route { + return nil +} + +func (_ *Route) Host(_ string) *Route { + return nil +} + +func (_ *Route) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +func (_ *Route) MatcherFunc(_ MatcherFunc) *Route { + return nil +} + +func (_ *Route) Methods(_ ...string) *Route { + return nil +} + +func (_ *Route) Name(_ string) *Route { + return nil +} + +func (_ *Route) Path(_ string) *Route { + return nil +} + +func (_ *Route) PathPrefix(_ string) *Route { + return nil +} + +func (_ *Route) Queries(_ ...string) *Route { + return nil +} + +func (_ *Route) Schemes(_ ...string) *Route { + return nil +} + +func (_ *Route) SkipClean() bool { + return false +} + +func (_ *Route) Subrouter() *Router { + return nil +} + +func (_ *Route) URL(_ ...string) (*url.URL, error) { + return nil, nil +} + +func (_ *Route) URLHost(_ ...string) (*url.URL, error) { + return nil, nil +} + +func (_ *Route) URLPath(_ ...string) (*url.URL, error) { + return nil, nil +} + +type RouteMatch struct { + Route *Route + Handler http.Handler + Vars map[string]string + MatchErr error +} + +type Router struct { + NotFoundHandler http.Handler + MethodNotAllowedHandler http.Handler + KeepContext bool +} + +func (_ *Router) BuildVarsFunc(_ BuildVarsFunc) *Route { + return nil +} + +func (_ *Router) Get(_ string) *Route { + return nil +} + +func (_ *Router) GetRoute(_ string) *Route { + return nil +} + +func (_ *Router) Handle(_ string, _ http.Handler) *Route { + return nil +} + +func (_ *Router) HandleFunc(_ string, _ func(http.ResponseWriter, *http.Request)) *Route { + return nil +} + +func (_ *Router) Headers(_ ...string) *Route { + return nil +} + +func (_ *Router) Host(_ string) *Route { + return nil +} + +func (_ *Router) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +func (_ *Router) MatcherFunc(_ MatcherFunc) *Route { + return nil +} + +func (_ *Router) Methods(_ ...string) *Route { + return nil +} + +func (_ *Router) Name(_ string) *Route { + return nil +} + +func (_ *Router) NewRoute() *Route { + return nil +} + +func (_ *Router) Path(_ string) *Route { + return nil +} + +func (_ *Router) PathPrefix(_ string) *Route { + return nil +} + +func (_ *Router) Queries(_ ...string) *Route { + return nil +} + +func (_ *Router) Schemes(_ ...string) *Route { + return nil +} + +func (_ *Router) ServeHTTP(_ http.ResponseWriter, _ *http.Request) {} + +func (_ *Router) SkipClean(_ bool) *Router { + return nil +} + +func (_ *Router) StrictSlash(_ bool) *Router { + return nil +} + +func (_ *Router) Use(_ ...MiddlewareFunc) {} + +func (_ *Router) UseEncodedPath() *Router { + return nil +} + +func (_ *Router) Walk(_ WalkFunc) error { + return nil +} + +func Vars(_ *http.Request) map[string]string { + return nil +} + +type WalkFunc func(*Route, *Router, []*Route) error diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/modules.txt b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/modules.txt new file mode 100644 index 00000000000..d96be1fa71b --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxDefault/vendor/modules.txt @@ -0,0 +1,3 @@ +# github.com/gorilla/mux v1.7.4 +## explicit +github.com/gorilla/mux diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/MuxClean.go b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/MuxClean.go new file mode 100644 index 00000000000..cb3b5d2a7b8 --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/MuxClean.go @@ -0,0 +1,22 @@ +package main + +import ( + "io/ioutil" + "net/http" + "path/filepath" + + "github.com/gorilla/mux" +) + +// BAD: Gorilla's `Vars` is not a sanitizer as `Router.SkipClean` has been called +func GorillaHandler(w http.ResponseWriter, r *http.Request) { + not_tainted_path := mux.Vars(r)["id"] + data, _ := ioutil.ReadFile(filepath.Join("/home/user/", not_tainted_path)) + w.Write(data) +} + +func main() { + var router = mux.NewRouter() + router.SkipClean(true) + router.HandleFunc("/{category}", GorillaHandler) +} diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.expected b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.expected new file mode 100644 index 00000000000..0f16f75e713 --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.expected @@ -0,0 +1,13 @@ +#select +| MuxClean.go:14:29:14:74 | call to Join | MuxClean.go:13:22:13:32 | call to Vars | MuxClean.go:14:29:14:74 | call to Join | This path depends on a $@. | MuxClean.go:13:22:13:32 | call to Vars | user-provided value | +edges +| MuxClean.go:13:22:13:32 | call to Vars | MuxClean.go:14:58:14:73 | not_tainted_path | provenance | Src:MaD:2 | +| MuxClean.go:14:58:14:73 | not_tainted_path | MuxClean.go:14:29:14:74 | call to Join | provenance | FunctionModel Sink:MaD:1 | +models +| 1 | Sink: io/ioutil; ; false; ReadFile; ; ; Argument[0]; path-injection; manual | +| 2 | Source: github.com/gorilla/mux; ; false; Vars; ; ; ReturnValue; remote; manual | +nodes +| MuxClean.go:13:22:13:32 | call to Vars | semmle.label | call to Vars | +| MuxClean.go:14:29:14:74 | call to Join | semmle.label | call to Join | +| MuxClean.go:14:58:14:73 | not_tainted_path | semmle.label | not_tainted_path | +subpaths diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.qlref b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.qlref new file mode 100644 index 00000000000..1e9166dd1ca --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/TaintedPath.qlref @@ -0,0 +1,2 @@ +query: Security/CWE-022/TaintedPath.ql +postprocess: utils/test//PrettyPrintModels.ql \ No newline at end of file diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/go.mod b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/go.mod new file mode 100644 index 00000000000..c173488c7c7 --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/go.mod @@ -0,0 +1,5 @@ +module codeql-go-tests/frameworks/Mux + +go 1.14 + +require github.com/gorilla/mux v1.7.4 diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/LICENSE b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/LICENSE new file mode 100644 index 00000000000..6903df6386e --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012-2018 The Gorilla Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/stub.go b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/stub.go new file mode 100644 index 00000000000..62510300b2d --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/github.com/gorilla/mux/stub.go @@ -0,0 +1,252 @@ +// Code generated by depstubber. DO NOT EDIT. +// This is a simple stub for github.com/gorilla/mux, strictly for use in testing. + +// See the LICENSE file for information about the licensing of the original library. +// Source: github.com/gorilla/mux (exports: ; functions: Vars,NewRouter) + +// Package mux is a stub of github.com/gorilla/mux, generated by depstubber. +package mux + +import ( + http "net/http" + url "net/url" +) + +type BuildVarsFunc func(map[string]string) map[string]string + +type MatcherFunc func(*http.Request, *RouteMatch) bool + +func (_ MatcherFunc) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +type MiddlewareFunc func(http.Handler) http.Handler + +func (_ MiddlewareFunc) Middleware(_ http.Handler) http.Handler { + return nil +} + +func NewRouter() *Router { + return nil +} + +type Route struct{} + +func (_ *Route) BuildOnly() *Route { + return nil +} + +func (_ *Route) BuildVarsFunc(_ BuildVarsFunc) *Route { + return nil +} + +func (_ *Route) GetError() error { + return nil +} + +func (_ *Route) GetHandler() http.Handler { + return nil +} + +func (_ *Route) GetHostTemplate() (string, error) { + return "", nil +} + +func (_ *Route) GetMethods() ([]string, error) { + return nil, nil +} + +func (_ *Route) GetName() string { + return "" +} + +func (_ *Route) GetPathRegexp() (string, error) { + return "", nil +} + +func (_ *Route) GetPathTemplate() (string, error) { + return "", nil +} + +func (_ *Route) GetQueriesRegexp() ([]string, error) { + return nil, nil +} + +func (_ *Route) GetQueriesTemplates() ([]string, error) { + return nil, nil +} + +func (_ *Route) Handler(_ http.Handler) *Route { + return nil +} + +func (_ *Route) HandlerFunc(_ func(http.ResponseWriter, *http.Request)) *Route { + return nil +} + +func (_ *Route) Headers(_ ...string) *Route { + return nil +} + +func (_ *Route) HeadersRegexp(_ ...string) *Route { + return nil +} + +func (_ *Route) Host(_ string) *Route { + return nil +} + +func (_ *Route) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +func (_ *Route) MatcherFunc(_ MatcherFunc) *Route { + return nil +} + +func (_ *Route) Methods(_ ...string) *Route { + return nil +} + +func (_ *Route) Name(_ string) *Route { + return nil +} + +func (_ *Route) Path(_ string) *Route { + return nil +} + +func (_ *Route) PathPrefix(_ string) *Route { + return nil +} + +func (_ *Route) Queries(_ ...string) *Route { + return nil +} + +func (_ *Route) Schemes(_ ...string) *Route { + return nil +} + +func (_ *Route) SkipClean() bool { + return false +} + +func (_ *Route) Subrouter() *Router { + return nil +} + +func (_ *Route) URL(_ ...string) (*url.URL, error) { + return nil, nil +} + +func (_ *Route) URLHost(_ ...string) (*url.URL, error) { + return nil, nil +} + +func (_ *Route) URLPath(_ ...string) (*url.URL, error) { + return nil, nil +} + +type RouteMatch struct { + Route *Route + Handler http.Handler + Vars map[string]string + MatchErr error +} + +type Router struct { + NotFoundHandler http.Handler + MethodNotAllowedHandler http.Handler + KeepContext bool +} + +func (_ *Router) BuildVarsFunc(_ BuildVarsFunc) *Route { + return nil +} + +func (_ *Router) Get(_ string) *Route { + return nil +} + +func (_ *Router) GetRoute(_ string) *Route { + return nil +} + +func (_ *Router) Handle(_ string, _ http.Handler) *Route { + return nil +} + +func (_ *Router) HandleFunc(_ string, _ func(http.ResponseWriter, *http.Request)) *Route { + return nil +} + +func (_ *Router) Headers(_ ...string) *Route { + return nil +} + +func (_ *Router) Host(_ string) *Route { + return nil +} + +func (_ *Router) Match(_ *http.Request, _ *RouteMatch) bool { + return false +} + +func (_ *Router) MatcherFunc(_ MatcherFunc) *Route { + return nil +} + +func (_ *Router) Methods(_ ...string) *Route { + return nil +} + +func (_ *Router) Name(_ string) *Route { + return nil +} + +func (_ *Router) NewRoute() *Route { + return nil +} + +func (_ *Router) Path(_ string) *Route { + return nil +} + +func (_ *Router) PathPrefix(_ string) *Route { + return nil +} + +func (_ *Router) Queries(_ ...string) *Route { + return nil +} + +func (_ *Router) Schemes(_ ...string) *Route { + return nil +} + +func (_ *Router) ServeHTTP(_ http.ResponseWriter, _ *http.Request) {} + +func (_ *Router) SkipClean(_ bool) *Router { + return nil +} + +func (_ *Router) StrictSlash(_ bool) *Router { + return nil +} + +func (_ *Router) Use(_ ...MiddlewareFunc) {} + +func (_ *Router) UseEncodedPath() *Router { + return nil +} + +func (_ *Router) Walk(_ WalkFunc) error { + return nil +} + +func Vars(_ *http.Request) map[string]string { + return nil +} + +type WalkFunc func(*Route, *Router, []*Route) error diff --git a/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/modules.txt b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/modules.txt new file mode 100644 index 00000000000..d96be1fa71b --- /dev/null +++ b/go/ql/test/query-tests/Security/CWE-022/GorillaMuxSkipClean/vendor/modules.txt @@ -0,0 +1,3 @@ +# github.com/gorilla/mux v1.7.4 +## explicit +github.com/gorilla/mux diff --git a/java/documentation/library-coverage/coverage.csv b/java/documentation/library-coverage/coverage.csv index 2f320721865..fc3620ca4bc 100644 --- a/java/documentation/library-coverage/coverage.csv +++ b/java/documentation/library-coverage/coverage.csv @@ -79,7 +79,7 @@ jakarta.xml.bind.attachment,,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2, java.applet,,,11,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,11, java.awt,1,,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,,,,,,,,,,3 java.beans,,,177,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,82,95 -java.io,66,1,226,,,,,,,,,22,,,,,,,,,,,,,,,44,,,,,,,,,,,,,,,,,,,,,,1,,203,23 +java.io,66,1,225,,,,,,,,,22,,,,,,,,,,,,,,,44,,,,,,,,,,,,,,,,,,,,,,1,,202,23 java.lang,38,3,783,,13,,,,,,1,,,,,,,,,,,,8,,,,11,,,4,,,1,,,,,,,,,,,,,,,3,,,506,277 java.math,,,9,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,9 java.net,23,3,347,,,,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,21,,,,,,,,,,,,,,3,248,99 diff --git a/java/documentation/library-coverage/coverage.rst b/java/documentation/library-coverage/coverage.rst index 89f4700e987..3851cb04166 100644 --- a/java/documentation/library-coverage/coverage.rst +++ b/java/documentation/library-coverage/coverage.rst @@ -18,10 +18,10 @@ Java framework & library support `Google Guava `_,``com.google.common.*``,,730,43,9,,,,, JBoss Logging,``org.jboss.logging``,,,324,,,,,, `JSON-java `_,``org.json``,,236,,,,,,, - Java Standard Library,``java.*``,10,4622,259,99,,9,,,26 + Java Standard Library,``java.*``,10,4621,259,99,,9,,,26 Java extensions,"``javax.*``, ``jakarta.*``",69,4159,90,10,4,2,1,1,4 Kotlin Standard Library,``kotlin*``,,1849,16,14,,,,,2 `Spring `_,``org.springframework.*``,38,486,143,26,,28,14,,35 Others,"``actions.osgi``, ``antlr``, ``ch.ethz.ssh2``, ``cn.hutool.core.codec``, ``com.alibaba.druid.sql``, ``com.alibaba.fastjson2``, ``com.amazonaws.auth``, ``com.auth0.jwt.algorithms``, ``com.azure.identity``, ``com.esotericsoftware.kryo.io``, ``com.esotericsoftware.kryo5.io``, ``com.fasterxml.jackson.core``, ``com.fasterxml.jackson.databind``, ``com.google.gson``, ``com.hubspot.jinjava``, ``com.jcraft.jsch``, ``com.microsoft.sqlserver.jdbc``, ``com.mitchellbosecke.pebble``, ``com.mongodb``, ``com.opensymphony.xwork2``, ``com.rabbitmq.client``, ``com.sshtools.j2ssh.authentication``, ``com.sun.crypto.provider``, ``com.sun.jndi.ldap``, ``com.sun.net.httpserver``, ``com.sun.net.ssl``, ``com.sun.rowset``, ``com.sun.security.auth.module``, ``com.sun.security.ntlm``, ``com.sun.security.sasl.digest``, ``com.thoughtworks.xstream``, ``com.trilead.ssh2``, ``com.unboundid.ldap.sdk``, ``com.zaxxer.hikari``, ``flexjson``, ``freemarker.cache``, ``freemarker.template``, ``groovy.lang``, ``groovy.text``, ``groovy.util``, ``hudson``, ``io.jsonwebtoken``, ``io.netty.bootstrap``, ``io.netty.buffer``, ``io.netty.channel``, ``io.netty.handler.codec``, ``io.netty.handler.ssl``, ``io.netty.handler.stream``, ``io.netty.resolver``, ``io.netty.util``, ``io.undertow.server.handlers.resource``, ``javafx.scene.web``, ``jenkins``, ``jodd.json``, ``liquibase.database.jvm``, ``liquibase.statement.core``, ``net.lingala.zip4j``, ``net.schmizz.sshj``, ``net.sf.json``, ``net.sf.saxon.s9api``, ``ognl``, ``okhttp3``, ``org.acegisecurity``, ``org.antlr.runtime``, ``org.apache.commons.codec``, ``org.apache.commons.compress.archivers.tar``, ``org.apache.commons.exec``, ``org.apache.commons.httpclient.util``, ``org.apache.commons.jelly``, ``org.apache.commons.jexl2``, ``org.apache.commons.jexl3``, ``org.apache.commons.lang``, ``org.apache.commons.logging``, ``org.apache.commons.net``, ``org.apache.commons.ognl``, ``org.apache.cxf.catalog``, ``org.apache.cxf.common.classloader``, ``org.apache.cxf.common.jaxb``, ``org.apache.cxf.common.logging``, ``org.apache.cxf.configuration.jsse``, ``org.apache.cxf.helpers``, ``org.apache.cxf.resource``, ``org.apache.cxf.staxutils``, ``org.apache.cxf.tools.corba.utils``, ``org.apache.cxf.tools.util``, ``org.apache.cxf.transform``, ``org.apache.directory.ldap.client.api``, ``org.apache.hadoop.fs``, ``org.apache.hadoop.hive.metastore``, ``org.apache.hadoop.hive.ql.exec``, ``org.apache.hadoop.hive.ql.metadata``, ``org.apache.hc.client5.http.async.methods``, ``org.apache.hc.client5.http.classic.methods``, ``org.apache.hc.client5.http.fluent``, ``org.apache.hive.hcatalog.templeton``, ``org.apache.ibatis.jdbc``, ``org.apache.ibatis.mapping``, ``org.apache.log4j``, ``org.apache.shiro.authc``, ``org.apache.shiro.codec``, ``org.apache.shiro.jndi``, ``org.apache.shiro.mgt``, ``org.apache.sshd.client.session``, ``org.apache.struts.beanvalidation.validation.interceptor``, ``org.apache.struts2``, ``org.apache.tools.ant``, ``org.apache.tools.zip``, ``org.apache.velocity.app``, ``org.apache.velocity.runtime``, ``org.codehaus.cargo.container.installer``, ``org.codehaus.groovy.control``, ``org.dom4j``, ``org.eclipse.jetty.client``, ``org.fusesource.leveldbjni``, ``org.geogebra.web.full.main``, ``org.gradle.api.file``, ``org.hibernate``, ``org.influxdb``, ``org.jboss.vfs``, ``org.jdbi.v3.core``, ``org.jenkins.ui.icon``, ``org.jenkins.ui.symbol``, ``org.jooq``, ``org.keycloak.models.map.storage``, ``org.kohsuke.stapler``, ``org.lastaflute.web``, ``org.mvel2``, ``org.openjdk.jmh.runner.options``, ``org.owasp.esapi``, ``org.pac4j.jwt.config.encryption``, ``org.pac4j.jwt.config.signature``, ``org.scijava.log``, ``org.slf4j``, ``org.thymeleaf``, ``org.xml.sax``, ``org.xmlpull.v1``, ``org.yaml.snakeyaml``, ``play.libs.ws``, ``play.mvc``, ``ratpack.core.form``, ``ratpack.core.handling``, ``ratpack.core.http``, ``ratpack.exec``, ``ratpack.form``, ``ratpack.func``, ``ratpack.handling``, ``ratpack.http``, ``ratpack.util``, ``retrofit2``, ``software.amazon.awssdk.transfer.s3.model``, ``sun.jvmstat.perfdata.monitor.protocol.local``, ``sun.jvmstat.perfdata.monitor.protocol.rmi``, ``sun.misc``, ``sun.net.ftp``, ``sun.net.www.protocol.http``, ``sun.security.acl``, ``sun.security.jgss.krb5``, ``sun.security.krb5``, ``sun.security.pkcs``, ``sun.security.pkcs11``, ``sun.security.provider``, ``sun.security.ssl``, ``sun.security.x509``, ``sun.tools.jconsole``",133,10525,908,140,6,22,18,,208 - Totals,,312,26329,2635,404,16,128,33,1,409 + Totals,,312,26328,2635,404,16,128,33,1,409 diff --git a/java/ql/lib/CHANGELOG.md b/java/ql/lib/CHANGELOG.md index 5bc77cfcdf5..b7ef02c4149 100644 --- a/java/ql/lib/CHANGELOG.md +++ b/java/ql/lib/CHANGELOG.md @@ -1,3 +1,7 @@ +## 7.0.1 + +No user-facing changes. + ## 7.0.0 ### Breaking Changes diff --git a/java/ql/lib/change-notes/2025-01-16-file-constructor-sanitizer.md b/java/ql/lib/change-notes/2025-01-16-file-constructor-sanitizer.md new file mode 100644 index 00000000000..8296f447e24 --- /dev/null +++ b/java/ql/lib/change-notes/2025-01-16-file-constructor-sanitizer.md @@ -0,0 +1,4 @@ +--- +category: minorAnalysis +--- +* Added a path injection sanitizer for the `child` argument of a `java.io.File` constructor if that argument does not contain path traversal sequences. diff --git a/java/ql/lib/change-notes/released/7.0.1.md b/java/ql/lib/change-notes/released/7.0.1.md new file mode 100644 index 00000000000..b5ef70820b2 --- /dev/null +++ b/java/ql/lib/change-notes/released/7.0.1.md @@ -0,0 +1,3 @@ +## 7.0.1 + +No user-facing changes. diff --git a/java/ql/lib/codeql-pack.release.yml b/java/ql/lib/codeql-pack.release.yml index e0db21c7869..a18747dd3a7 100644 --- a/java/ql/lib/codeql-pack.release.yml +++ b/java/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 7.0.0 +lastReleaseVersion: 7.0.1 diff --git a/java/ql/lib/ext/java.io.model.yml b/java/ql/lib/ext/java.io.model.yml index e408d1dd58f..3582e2b78ac 100644 --- a/java/ql/lib/ext/java.io.model.yml +++ b/java/ql/lib/ext/java.io.model.yml @@ -88,7 +88,10 @@ extensions: - ["java.io", "DataInput", True, "readUTF", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"] - ["java.io", "DataInputStream", False, "DataInputStream", "", "", "Argument[0]", "Argument[this]", "taint", "manual"] - ["java.io", "File", False, "File", "", "", "Argument[0]", "Argument[this]", "taint", "manual"] - - ["java.io", "File", False, "File", "", "", "Argument[1]", "Argument[this]", "taint", "manual"] + # We model this taint step in QL as `FileConstructorChildArgumentStep` in the `PathSanitizer` library + # since we need to sanitize the use of this argument but not later uses of the same SSA variable, + # which is not currently possible in Java with a standard sanitizer due to use-use flow. + # - ["java.io", "File", False, "File", "", "", "Argument[1]", "Argument[this]", "taint", "manual"] - ["java.io", "File", True, "getAbsoluteFile", "", "", "Argument[this]", "ReturnValue", "taint", "manual"] - ["java.io", "File", True, "getAbsolutePath", "", "", "Argument[this]", "ReturnValue", "taint", "manual"] - ["java.io", "File", True, "getCanonicalFile", "", "", "Argument[this]", "ReturnValue", "taint", "manual"] diff --git a/java/ql/lib/qlpack.yml b/java/ql/lib/qlpack.yml index 7f5ba7b3c1d..d0085155128 100644 --- a/java/ql/lib/qlpack.yml +++ b/java/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/java-all -version: 7.0.1-dev +version: 7.0.2-dev groups: java dbscheme: config/semmlecode.dbscheme extractor: java diff --git a/java/ql/lib/semmle/code/java/dataflow/FlowSteps.qll b/java/ql/lib/semmle/code/java/dataflow/FlowSteps.qll index c931817e00b..d081a6289ec 100644 --- a/java/ql/lib/semmle/code/java/dataflow/FlowSteps.qll +++ b/java/ql/lib/semmle/code/java/dataflow/FlowSteps.qll @@ -29,6 +29,7 @@ private module Frameworks { private import semmle.code.java.frameworks.ratpack.RatpackExec private import semmle.code.java.frameworks.stapler.Stapler private import semmle.code.java.security.ListOfConstantsSanitizer + private import semmle.code.java.security.PathSanitizer } /** diff --git a/java/ql/lib/semmle/code/java/dataflow/Nullness.qll b/java/ql/lib/semmle/code/java/dataflow/Nullness.qll index 618716629b1..17f1b4ae702 100644 --- a/java/ql/lib/semmle/code/java/dataflow/Nullness.qll +++ b/java/ql/lib/semmle/code/java/dataflow/Nullness.qll @@ -463,6 +463,21 @@ private predicate interestingCond(SsaSourceVariable npecand, ConditionBlock cond not cond.getCondition().(Expr).getAChildExpr*() = npecand.getAnAccess() } +pragma[nomagic] +private ConditionBlock ssaIntegerGuard(SsaVariable v, boolean branch, int k, boolean is_k) { + result.getCondition() = integerGuard(v.getAUse(), branch, k, is_k) +} + +pragma[nomagic] +private ConditionBlock ssaIntBoundGuard(SsaVariable v, boolean branch_with_lower_bound_k, int k) { + result.getCondition() = intBoundGuard(v.getAUse(), branch_with_lower_bound_k, k) +} + +pragma[nomagic] +private ConditionBlock ssaEnumConstEquality(SsaVariable v, boolean polarity, EnumConstant c) { + result.getCondition() = enumConstEquality(v.getAUse(), polarity, c) +} + /** A pair of correlated conditions for a given NPE candidate. */ private predicate correlatedConditions( SsaSourceVariable npecand, ConditionBlock cond1, ConditionBlock cond2, boolean inverted @@ -485,25 +500,23 @@ private predicate correlatedConditions( inverted = branch1.booleanXor(branch2) ) or - exists(SsaVariable v, VarRead rv1, VarRead rv2, int k, boolean branch1, boolean branch2 | - rv1 = v.getAUse() and - rv2 = v.getAUse() and - cond1.getCondition() = integerGuard(rv1, branch1, k, true) and - cond1.getCondition() = integerGuard(rv1, branch1.booleanNot(), k, false) and - cond2.getCondition() = integerGuard(rv2, branch2, k, true) and - cond2.getCondition() = integerGuard(rv2, branch2.booleanNot(), k, false) and + exists(SsaVariable v, int k, boolean branch1, boolean branch2 | + cond1 = ssaIntegerGuard(v, branch1, k, true) and + cond1 = ssaIntegerGuard(v, branch1.booleanNot(), k, false) and + cond2 = ssaIntegerGuard(v, branch2, k, true) and + cond2 = ssaIntegerGuard(v, branch2.booleanNot(), k, false) and inverted = branch1.booleanXor(branch2) ) or exists(SsaVariable v, int k, boolean branch1, boolean branch2 | - cond1.getCondition() = intBoundGuard(v.getAUse(), branch1, k) and - cond2.getCondition() = intBoundGuard(v.getAUse(), branch2, k) and + cond1 = ssaIntBoundGuard(v, branch1, k) and + cond2 = ssaIntBoundGuard(v, branch2, k) and inverted = branch1.booleanXor(branch2) ) or exists(SsaVariable v, EnumConstant c, boolean pol1, boolean pol2 | - cond1.getCondition() = enumConstEquality(v.getAUse(), pol1, c) and - cond2.getCondition() = enumConstEquality(v.getAUse(), pol2, c) and + cond1 = ssaEnumConstEquality(v, pol1, c) and + cond2 = ssaEnumConstEquality(v, pol2, c) and inverted = pol1.booleanXor(pol2) ) or diff --git a/java/ql/lib/semmle/code/java/dataflow/SSA.qll b/java/ql/lib/semmle/code/java/dataflow/SSA.qll index ce58e7d58dc..680088b7c55 100644 --- a/java/ql/lib/semmle/code/java/dataflow/SSA.qll +++ b/java/ql/lib/semmle/code/java/dataflow/SSA.qll @@ -12,31 +12,7 @@ */ import java -private import semmle.code.java.dispatch.VirtualDispatch -private import semmle.code.java.dispatch.WrappedInvocation - -private predicate fieldAccessInCallable(FieldAccess fa, Field f, Callable c) { - f = fa.getField() and - c = fa.getEnclosingCallable() -} - -cached -private newtype TSsaSourceVariable = - TLocalVar(Callable c, LocalScopeVariable v) { - c = v.getCallable() or c = v.getAnAccess().getEnclosingCallable() - } or - TPlainField(Callable c, Field f) { - exists(FieldRead fr | - fieldAccessInCallable(fr, f, c) and - (fr.isOwnFieldAccess() or f.isStatic()) - ) - } or - TEnclosingField(Callable c, Field f, RefType t) { - exists(FieldRead fr | fieldAccessInCallable(fr, f, c) and fr.isEnclosingFieldAccess(t)) - } or - TQualifiedField(Callable c, SsaSourceVariable q, InstanceField f) { - exists(FieldRead fr | fieldAccessInCallable(fr, f, c) and fr.getQualifier() = q.getAnAccess()) - } +private import internal.SsaImpl /** * A fully qualified variable in the context of a `Callable` in which it is @@ -160,776 +136,23 @@ class SsaSourceField extends SsaSourceVariable { } } -private module TrackedVariablesImpl { - /** Gets the number of accesses of `f`. */ - private int numberOfAccesses(SsaSourceField f) { - result = strictcount(FieldAccess fa | fa = f.getAnAccess()) - } - - /** Holds if `f` is accessed inside a loop. */ - private predicate loopAccessed(SsaSourceField f) { - exists(LoopStmt l, FieldRead fr | fr = f.getAnAccess() | - l.getBody() = fr.getEnclosingStmt().getEnclosingStmt*() or - l.getCondition() = fr.getParent*() or - l.(ForStmt).getAnUpdate() = fr.getParent*() - ) - } - - /** Holds if `f` is accessed more than once or inside a loop. */ - private predicate multiAccessed(SsaSourceField f) { loopAccessed(f) or 1 < numberOfAccesses(f) } - - /** - * Holds if `f` is a field that is interesting as a basis for SSA. - * - * - A field that is read twice is interesting as we want to know whether the - * reads refer to the same value. - * - A field that is both written and read is interesting as we want to know - * whether the read might get the written value. - * - A field that is read in a loop is interesting as we want to know whether - * the value is the same in different iterations (that is, whether the SSA - * definition can be placed outside the loop). - * - A volatile field is never interesting, since all reads must reread from - * memory and we are forced to assume that the value can change at any point. - */ - cached - predicate trackField(SsaSourceField f) { multiAccessed(f) and not f.isVolatile() } - - /** - * The variables that form the basis of the non-trivial SSA construction. - * Fields that aren't tracked get a trivial SSA construction (a definition - * prior to every read). - */ - class TrackedVar extends SsaSourceVariable { - TrackedVar() { - this = TLocalVar(_, _) or - trackField(this) - } - } - - class TrackedField extends TrackedVar, SsaSourceField { } -} - -private import TrackedVariablesImpl - -cached -private module SsaImpl { - /** Gets the destination variable of an update of a tracked variable. */ - cached - TrackedVar getDestVar(VariableUpdate upd) { - result.getAnAccess() = upd.(Assignment).getDest() - or - exists(LocalVariableDecl v | v = upd.(LocalVariableDeclExpr).getVariable() | - result = TLocalVar(v.getCallable(), v) - ) - or - result.getAnAccess() = upd.(UnaryAssignExpr).getExpr() - } - - /** Holds if `n` must update the locally tracked variable `v`. */ - cached - predicate certainVariableUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { - exists(VariableUpdate a | a.getControlFlowNode() = n | getDestVar(a) = v) and - b.getNode(i) = n and - hasDominanceInformation(b) - or - certainVariableUpdate(v.getQualifier(), n, b, i) - } - - /** Gets the definition point of a nested class in the parent scope. */ - private ControlFlowNode parentDef(NestedClass nc) { - nc.(AnonymousClass).getClassInstanceExpr().getControlFlowNode() = result or - nc.(LocalClass).getLocalTypeDeclStmt().getControlFlowNode() = result - } - - /** - * Gets the enclosing type of a nested class. - * - * Differs from `RefType.getEnclosingType()` by including anonymous classes defined by lambdas. - */ - private RefType desugaredGetEnclosingType(NestedClass inner) { - exists(ControlFlowNode node | - node = parentDef(inner) and - node.getEnclosingCallable().getDeclaringType() = result - ) - } - - /** - * Gets the control flow node at which the variable is read to get the value for - * a `VarAccess` inside a closure. `capturedvar` is the variable in its defining - * scope, and `closurevar` is the variable in the closure. - */ - private ControlFlowNode captureNode(TrackedVar capturedvar, TrackedVar closurevar) { - exists( - LocalScopeVariable v, Callable inner, Callable outer, NestedClass innerclass, VarAccess va - | - va.getVariable() = v and - inner = va.getEnclosingCallable() and - outer = v.getCallable() and - inner != outer and - inner.getDeclaringType() = innerclass and - result = parentDef(desugaredGetEnclosingType*(innerclass)) and - result.getEnclosingStmt().getEnclosingCallable() = outer and - capturedvar = TLocalVar(outer, v) and - closurevar = TLocalVar(inner, v) - ) - } - - /** Holds if `VarAccess` `use` of `v` occurs in `b` at index `i`. */ - private predicate variableUse(TrackedVar v, VarRead use, BasicBlock b, int i) { - v.getAnAccess() = use and b.getNode(i) = use.getControlFlowNode() - } - - /** Holds if the value of `v` is captured in `b` at index `i`. */ - private predicate variableCapture( - TrackedVar capturedvar, TrackedVar closurevar, BasicBlock b, int i - ) { - b.getNode(i) = captureNode(capturedvar, closurevar) - } - - /** Holds if the value of `v` is read in `b` at index `i`. */ - private predicate variableUseOrCapture(TrackedVar v, BasicBlock b, int i) { - variableUse(v, _, b, i) or variableCapture(v, _, b, i) - } - - /* - * Liveness analysis to restrict the size of the SSA representation. - */ - - private predicate liveAtEntry(TrackedVar v, BasicBlock b) { - exists(int i | variableUseOrCapture(v, b, i) | - not exists(int j | certainVariableUpdate(v, _, b, j) | j < i) - ) - or - liveAtExit(v, b) and not certainVariableUpdate(v, _, b, _) - } - - private predicate liveAtExit(TrackedVar v, BasicBlock b) { liveAtEntry(v, b.getABBSuccessor()) } - - /* - * The SSA construction for a field `f` relies on implicit update nodes at - * every call site that conceivably could reach an update of the field. - * - * At a first approximation we need to find update paths of the form: - * Callable --(callEdge)-->* Callable(setter of f) - * - * This can be improved by excluding paths ending in: - * Constructor --(intraInstanceCallEdge)-->+ Method(setter of this.f) - * as these updates are guaranteed not to alias with the `f` under - * consideration. - * - * This set of paths can be expressed positively by noting that those - * that set `this.f` end in zero or more `intraInstanceCallEdge`s between - * methods, and before those is either the originating `Call` or a - * `crossInstanceCallEdge`. - */ - - /** - * Holds if `fw` is a field write that is not relevant as an implicit SSA - * update, since it is an initialization and therefore cannot alias. - */ - private predicate init(FieldWrite fw) { - fw.getEnclosingCallable() instanceof InitializerMethod - or - fw.getEnclosingCallable() instanceof Constructor and fw.isOwnFieldAccess() - or - exists(LocalVariableDecl v | - v.getAnAccess() = fw.getQualifier() and - forex(VariableAssign va | va.getDestVar() = v and exists(va.getSource()) | - va.getSource() instanceof ClassInstanceExpr - ) - ) - } - - /** - * Holds if `fw` is an update of `f` in `c` that is relevant for SSA construction. - */ - cached - predicate relevantFieldUpdate(Callable c, Field f, FieldWrite fw) { - fw = f.getAnAccess() and - not init(fw) and - fw.getEnclosingCallable() = c and - exists(TrackedField nf | nf.getField() = f) - } - - /** Holds if `c` can change the value of `this.f` and is relevant for SSA construction. */ - private predicate setsOwnField(Method c, Field f) { - exists(FieldWrite fw | relevantFieldUpdate(c, f, fw) and fw.isOwnFieldAccess()) - } - - /** - * Holds if `c` can change the value of `f` and is relevant for SSA - * construction excluding those cases covered by `setsOwnField`. - */ - private predicate setsOtherField(Callable c, Field f) { - exists(FieldWrite fw | relevantFieldUpdate(c, f, fw) and not fw.isOwnFieldAccess()) - } - - pragma[nomagic] - private predicate innerclassSupertypeStar(InnerClass t1, RefType t2) { - t1.getASourceSupertype*().getSourceDeclaration() = t2 - } - - /** - * Holds if `(c1,m2)` is a call edge to a method that does not change the value - * of `this`. - * - * Constructor-to-constructor calls can also be intra-instance, but are not - * included, as this does not affect whether a call chain ends in - * - * ``` - * Constructor --(intraInstanceCallEdge)-->+ Method(setter of this.f) - * ``` - */ - private predicate intraInstanceCallEdge(Callable c1, Method m2) { - exists(MethodCall ma, RefType t1 | - ma.getCaller() = c1 and - m2 = viableImpl_v2(ma) and - not m2.isStatic() and - ( - not exists(ma.getQualifier()) or - ma.getQualifier() instanceof ThisAccess or - ma.getQualifier() instanceof SuperAccess - ) and - c1.getDeclaringType() = t1 and - if t1 instanceof InnerClass - then - innerclassSupertypeStar(t1, ma.getCallee().getSourceDeclaration().getDeclaringType()) and - not exists(ma.getQualifier().(ThisAccess).getQualifier()) and - not exists(ma.getQualifier().(SuperAccess).getQualifier()) - else any() - ) - } - - private Callable tgt(Call c) { - result = viableImpl_v2(c) - or - result = getRunnerTarget(c) - or - c instanceof ConstructorCall and result = c.getCallee().getSourceDeclaration() - } - - /** Holds if `(c1,c2)` is an edge in the call graph. */ - private predicate callEdge(Callable c1, Callable c2) { - exists(Call c | c.getCaller() = c1 and c2 = tgt(c)) - } - - /** Holds if `(c1,c2)` is an edge in the call graph excluding `intraInstanceCallEdge`. */ - private predicate crossInstanceCallEdge(Callable c1, Callable c2) { - callEdge(c1, c2) and not intraInstanceCallEdge(c1, c2) - } - - /** - * Holds if `call` occurs in the same basic block, `b`, as `f` at index `i` and - * `f` has an update somewhere. - */ - private predicate updateCandidate(TrackedField f, Call call, BasicBlock b, int i) { - b.getNode(i).asCall() = call and - call.getEnclosingCallable() = f.getEnclosingCallable() and - relevantFieldUpdate(_, f.getField(), _) - } - - /** - * Holds if `rankix` is the rank of index `i` at which there is a use, a - * certain update, or a potential update of `f` in the basic block `b`. - * - * Basic block indices are translated to rank indices in order to skip - * irrelevant indices at which there is update or use when traversing - * basic blocks. - */ - private predicate callDefUseRank(TrackedField f, BasicBlock b, int rankix, int i) { - updateCandidate(f, _, b, _) and - i = - rank[rankix](int j | - certainVariableUpdate(f, _, b, j) or - variableUseOrCapture(f, b, j) or - updateCandidate(f, _, b, j) - ) - } - - /** - * Holds if `f` is live in `b` at index `i`. The rank of `i` is `rankix` as - * defined by `callDefUseRank`. - */ - private predicate liveAtRank(TrackedField f, BasicBlock b, int rankix, int i) { - callDefUseRank(f, b, rankix, i) and - ( - rankix = max(int rix | callDefUseRank(f, b, rix, _)) and liveAtExit(f, b) - or - variableUseOrCapture(f, b, i) - or - exists(int j | liveAtRank(f, b, rankix + 1, j) and not certainVariableUpdate(f, _, b, j)) - ) - } - - /** - * Holds if `call` is relevant as a potential update of `f`. This requires the - * existence of an update to `f` somewhere and that `f` is live at `call`. - */ - private predicate relevantCall(Call call, TrackedField f) { - exists(BasicBlock b, int i | - updateCandidate(f, call, b, i) and - liveAtRank(f, b, _, i) - ) - } - - private predicate source(Call call, TrackedField f, Field field, Callable c, boolean fresh) { - relevantCall(call, f) and - field = f.getField() and - c = tgt(call) and - if c instanceof Constructor then fresh = true else fresh = false - } - - /** - * A callable in a potential call-chain between a source that cares about the - * value of some field `f` and a sink that may overwrite `f`. The boolean - * `fresh` indicates whether the instance `this` in `c` has been freshly - * allocated along the call-chain. - */ - private newtype TCallableNode = - MkCallableNode(Callable c, boolean fresh) { source(_, _, _, c, fresh) or edge(_, c, fresh) } - - private predicate edge(TCallableNode n, Callable c2, boolean f2) { - exists(Callable c1, boolean f1 | n = MkCallableNode(c1, f1) | - intraInstanceCallEdge(c1, c2) and f2 = f1 - or - crossInstanceCallEdge(c1, c2) and - if c2 instanceof Constructor then f2 = true else f2 = false - ) - } - - private predicate edge(TCallableNode n1, TCallableNode n2) { - exists(Callable c2, boolean f2 | - edge(n1, c2, f2) and - n2 = MkCallableNode(c2, f2) - ) - } - - pragma[noinline] - private predicate source(Call call, TrackedField f, Field field, TCallableNode n) { - exists(Callable c, boolean fresh | - source(call, f, field, c, fresh) and - n = MkCallableNode(c, fresh) - ) - } - - private predicate sink(Callable c, Field f, TCallableNode n) { - setsOwnField(c, f) and n = MkCallableNode(c, false) - or - setsOtherField(c, f) and n = MkCallableNode(c, _) - } - - private predicate prunedNode(TCallableNode n) { - sink(_, _, n) - or - exists(TCallableNode mid | edge(n, mid) and prunedNode(mid)) - } - - private predicate prunedEdge(TCallableNode n1, TCallableNode n2) { - prunedNode(n1) and - prunedNode(n2) and - edge(n1, n2) - } - - private predicate edgePlus(TCallableNode c1, TCallableNode c2) = fastTC(prunedEdge/2)(c1, c2) - - /** - * Holds if there exists a call-chain originating in `call` that can update `f` on some instance - * where `f` and `call` share the same enclosing callable in which a - * `FieldRead` of `f` is reachable from `call`. - */ - pragma[noopt] - cached - predicate updatesNamedField(Call call, TrackedField f, Callable setter) { - exists(TCallableNode src, TCallableNode sink, Field field | - source(call, f, field, src) and - sink(setter, field, sink) and - (src = sink or edgePlus(src, sink)) - ) - } - - /** Holds if `n` might update the locally tracked variable `v`. */ - cached - predicate uncertainVariableUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { - exists(Call c | c = n.asCall() | updatesNamedField(c, v, _)) and - b.getNode(i) = n and - hasDominanceInformation(b) - or - uncertainVariableUpdate(v.getQualifier(), n, b, i) - } - - /** Holds if `n` updates the locally tracked variable `v`. */ - private predicate variableUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { - certainVariableUpdate(v, n, b, i) or uncertainVariableUpdate(v, n, b, i) - } - - /** Holds if a phi node for `v` is needed at the beginning of basic block `b`. */ - cached - predicate phiNode(TrackedVar v, BasicBlock b) { - liveAtEntry(v, b) and - exists(BasicBlock def | dominanceFrontier(def, b) | - variableUpdate(v, _, def, _) or phiNode(v, def) - ) - } - - /** Holds if `v` has an implicit definition at the entry, `b`, of the callable. */ - cached - predicate hasEntryDef(TrackedVar v, BasicBlock b) { - exists(LocalScopeVariable l, Callable c | - v = TLocalVar(c, l) and c.getBody().getControlFlowNode() = b - | - l instanceof Parameter or - l.getCallable() != c - ) - or - v instanceof SsaSourceField and - v.getEnclosingCallable().getBody().getControlFlowNode() = b and - liveAtEntry(v, b) - } - - /** - * The construction of SSA form ensures that each use of a variable is - * dominated by its definition. A definition of an SSA variable therefore - * reaches a `ControlFlowNode` if it is the _closest_ SSA variable definition - * that dominates the node. If two definitions dominate a node then one must - * dominate the other, so therefore the definition of _closest_ is given by the - * dominator tree. Thus, reaching definitions can be calculated in terms of - * dominance. - */ - cached - module SsaDefReaches { - /** - * Holds if `rankix` is the rank the index `i` at which there is an SSA definition or use of - * `v` in the basic block `b`. - * - * Basic block indices are translated to rank indices in order to skip - * irrelevant indices at which there is no definition or use when traversing - * basic blocks. - */ - private predicate defUseRank(TrackedVar v, BasicBlock b, int rankix, int i) { - i = - rank[rankix](int j | - any(TrackedSsaDef def).definesAt(v, b, j) or variableUseOrCapture(v, b, j) - ) - } - - /** Gets the maximum rank index for the given variable and basic block. */ - private int lastRank(TrackedVar v, BasicBlock b) { - result = max(int rankix | defUseRank(v, b, rankix, _)) - } - - /** Holds if a definition of an SSA variable occurs at the specified rank index in basic block `b`. */ - private predicate ssaDefRank(TrackedVar v, TrackedSsaDef def, BasicBlock b, int rankix) { - exists(int i | - def.definesAt(v, b, i) and - defUseRank(v, b, rankix, i) - ) - } - - /** Holds if the SSA definition reaches the rank index `rankix` in its own basic block `b`. */ - private predicate ssaDefReachesRank(TrackedVar v, TrackedSsaDef def, BasicBlock b, int rankix) { - ssaDefRank(v, def, b, rankix) - or - ssaDefReachesRank(v, def, b, rankix - 1) and - rankix <= lastRank(v, b) and - not ssaDefRank(v, _, b, rankix) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches the end of a basic block `b`, at - * which point it is still live, without crossing another SSA definition of `v`. - */ - cached - predicate ssaDefReachesEndOfBlock(TrackedVar v, TrackedSsaDef def, BasicBlock b) { - liveAtExit(v, b) and - ( - ssaDefReachesRank(v, def, b, lastRank(v, b)) - or - exists(BasicBlock idom | - bbIDominates(pragma[only_bind_into](idom), b) and // It is sufficient to traverse the dominator graph, cf. discussion above. - ssaDefReachesEndOfBlock(v, def, idom) and - not any(TrackedSsaDef other).definesAt(v, b, _) - ) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches `use` in the same basic block - * without crossing another SSA definition of `v`. - */ - private predicate ssaDefReachesUseWithinBlock(TrackedVar v, TrackedSsaDef def, VarRead use) { - exists(BasicBlock b, int rankix, int i | - ssaDefReachesRank(v, def, b, rankix) and - defUseRank(v, b, rankix, i) and - variableUse(v, use, b, i) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches `use` without crossing another - * SSA definition of `v`. - */ - cached - predicate ssaDefReachesUse(TrackedVar v, TrackedSsaDef def, VarRead use) { - ssaDefReachesUseWithinBlock(v, def, use) - or - exists(BasicBlock b | - variableUse(v, use, b, _) and - ssaDefReachesEndOfBlock(v, def, b.getABBPredecessor()) and - not ssaDefReachesUseWithinBlock(v, _, use) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches the capture point of - * `closurevar` in the same basic block without crossing another SSA - * definition of `v`. - */ - private predicate ssaDefReachesCaptureWithinBlock( - TrackedVar v, TrackedSsaDef def, TrackedVar closurevar - ) { - exists(BasicBlock b, int rankix, int i | - ssaDefReachesRank(v, def, b, rankix) and - defUseRank(v, b, rankix, i) and - variableCapture(v, closurevar, b, i) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches capture point of - * `closurevar` without crossing another SSA definition of `v`. - */ - cached - predicate ssaDefReachesCapture(TrackedVar v, TrackedSsaDef def, TrackedVar closurevar) { - ssaDefReachesCaptureWithinBlock(v, def, closurevar) - or - exists(BasicBlock b | - variableCapture(v, closurevar, b, _) and - ssaDefReachesEndOfBlock(v, def, b.getABBPredecessor()) and - not ssaDefReachesCaptureWithinBlock(v, _, closurevar) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches `redef` in the same basic block - * without crossing another SSA definition of `v`. - */ - private predicate ssaDefReachesUncertainDefWithinBlock( - TrackedVar v, TrackedSsaDef def, SsaUncertainImplicitUpdate redef - ) { - exists(BasicBlock b, int rankix, int i | - ssaDefReachesRank(v, def, b, rankix) and - defUseRank(v, b, rankix + 1, i) and - redef.(TrackedSsaDef).definesAt(v, b, i) - ) - } - - /** - * Holds if the SSA definition of `v` at `def` reaches `redef` without crossing another - * SSA definition of `v`. - */ - cached - predicate ssaDefReachesUncertainDef( - TrackedVar v, TrackedSsaDef def, SsaUncertainImplicitUpdate redef - ) { - ssaDefReachesUncertainDefWithinBlock(v, def, redef) - or - exists(BasicBlock b | - redef.(TrackedSsaDef).definesAt(v, b, _) and - ssaDefReachesEndOfBlock(v, def, b.getABBPredecessor()) and - not ssaDefReachesUncertainDefWithinBlock(v, _, redef) - ) - } - } - - private module AdjacentUsesImpl { - /** - * Holds if `rankix` is the rank the index `i` at which there is an SSA definition or explicit use of - * `v` in the basic block `b`. - */ - private predicate defUseRank(TrackedVar v, BasicBlock b, int rankix, int i) { - i = rank[rankix](int j | any(TrackedSsaDef def).definesAt(v, b, j) or variableUse(v, _, b, j)) - } - - /** Gets the maximum rank index for the given variable and basic block. */ - private int lastRank(TrackedVar v, BasicBlock b) { - result = max(int rankix | defUseRank(v, b, rankix, _)) - } - - /** Holds if `v` is defined or used in `b`. */ - private predicate varOccursInBlock(TrackedVar v, BasicBlock b) { defUseRank(v, b, _, _) } - - /** Holds if `v` occurs in `b` or one of `b`'s transitive successors. */ - private predicate blockPrecedesVar(TrackedVar v, BasicBlock b) { - varOccursInBlock(v, b) - or - ssaDefReachesEndOfBlock(v, _, b) - } - - /** - * Holds if `b2` is a transitive successor of `b1` and `v` occurs in `b1` and - * in `b2` or one of its transitive successors but not in any block on the path - * between `b1` and `b2`. - */ - private predicate varBlockReaches(TrackedVar v, BasicBlock b1, BasicBlock b2) { - varOccursInBlock(v, b1) and - pragma[only_bind_into](b2) = b1.getABBSuccessor() and - blockPrecedesVar(v, b2) - or - exists(BasicBlock mid | - varBlockReaches(v, b1, mid) and - pragma[only_bind_into](b2) = mid.getABBSuccessor() and - not varOccursInBlock(v, mid) and - blockPrecedesVar(v, b2) - ) - } - - /** - * Holds if `b2` is a transitive successor of `b1` and `v` occurs in `b1` and - * `b2` but not in any block on the path between `b1` and `b2`. - */ - private predicate varBlockStep(TrackedVar v, BasicBlock b1, BasicBlock b2) { - varBlockReaches(v, b1, b2) and - varOccursInBlock(v, b2) - } - - /** - * Holds if `v` occurs at index `i1` in `b1` and at index `i2` in `b2` and - * there is a path between them without any occurrence of `v`. - */ - pragma[nomagic] - predicate adjacentVarRefs(TrackedVar v, BasicBlock b1, int i1, BasicBlock b2, int i2) { - exists(int rankix | - b1 = b2 and - defUseRank(v, b1, rankix, i1) and - defUseRank(v, b2, rankix + 1, i2) - ) - or - defUseRank(v, b1, lastRank(v, b1), i1) and - varBlockStep(v, b1, b2) and - defUseRank(v, b2, 1, i2) - } - } - - private import AdjacentUsesImpl - - /** - * Holds if the value defined at `def` can reach `use` without passing through - * any other uses, but possibly through phi nodes and uncertain implicit updates. - */ - cached - predicate firstUse(TrackedSsaDef def, VarRead use) { - exists(TrackedVar v, BasicBlock b1, int i1, BasicBlock b2, int i2 | - adjacentVarRefs(v, b1, i1, b2, i2) and - def.definesAt(v, b1, i1) and - variableUse(v, use, b2, i2) - ) - or - exists(TrackedVar v, TrackedSsaDef redef, BasicBlock b1, int i1, BasicBlock b2, int i2 | - redef instanceof SsaUncertainImplicitUpdate or redef instanceof SsaPhiNode - | - adjacentVarRefs(v, b1, i1, b2, i2) and - def.definesAt(v, b1, i1) and - redef.definesAt(v, b2, i2) and - firstUse(redef, use) - ) - } - - cached - module SsaPublic { - /** - * Holds if `use1` and `use2` form an adjacent use-use-pair of the same SSA - * variable, that is, the value read in `use1` can reach `use2` without passing - * through any other use or any SSA definition of the variable. - */ - cached - predicate adjacentUseUseSameVar(VarRead use1, VarRead use2) { - exists(TrackedVar v, BasicBlock b1, int i1, BasicBlock b2, int i2 | - adjacentVarRefs(v, b1, i1, b2, i2) and - variableUse(v, use1, b1, i1) and - variableUse(v, use2, b2, i2) - ) - } - - /** - * Holds if `use1` and `use2` form an adjacent use-use-pair of the same - * `SsaSourceVariable`, that is, the value read in `use1` can reach `use2` - * without passing through any other use or any SSA definition of the variable - * except for phi nodes and uncertain implicit updates. - */ - cached - predicate adjacentUseUse(VarRead use1, VarRead use2) { - adjacentUseUseSameVar(use1, use2) - or - exists(TrackedVar v, TrackedSsaDef def, BasicBlock b1, int i1, BasicBlock b2, int i2 | - adjacentVarRefs(v, b1, i1, b2, i2) and - variableUse(v, use1, b1, i1) and - def.definesAt(v, b2, i2) and - firstUse(def, use2) and - (def instanceof SsaUncertainImplicitUpdate or def instanceof SsaPhiNode) - ) - } - } -} - -private import SsaImpl -private import SsaDefReaches -import SsaPublic - -cached -private newtype TSsaVariable = - TSsaPhiNode(TrackedVar v, BasicBlock b) { phiNode(v, b) } or - TSsaCertainUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { - certainVariableUpdate(v, n, b, i) - } or - TSsaUncertainUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { - uncertainVariableUpdate(v, n, b, i) - } or - TSsaEntryDef(TrackedVar v, BasicBlock b) { hasEntryDef(v, b) } or - TSsaUntracked(SsaSourceField nf, ControlFlowNode n) { - n = nf.getAnAccess().(FieldRead).getControlFlowNode() and not trackField(nf) - } - -/** - * An SSA definition excluding those variables that use a trivial SSA construction. - */ -private class TrackedSsaDef extends SsaVariable { - TrackedSsaDef() { not this = TSsaUntracked(_, _) } - - /** - * Holds if this SSA definition occurs at the specified position. - * Phi nodes are placed at index -1. - */ - predicate definesAt(TrackedVar v, BasicBlock b, int i) { - this = TSsaPhiNode(v, b) and i = -1 - or - this = TSsaCertainUpdate(v, _, b, i) - or - this = TSsaUncertainUpdate(v, _, b, i) - or - this = TSsaEntryDef(v, b) and i = 0 - } -} - /** * An SSA variable. */ -class SsaVariable extends TSsaVariable { +class SsaVariable extends Definition { /** Gets the SSA source variable underlying this SSA variable. */ - SsaSourceVariable getSourceVariable() { - this = TSsaPhiNode(result, _) or - this = TSsaCertainUpdate(result, _, _, _) or - this = TSsaUncertainUpdate(result, _, _, _) or - this = TSsaEntryDef(result, _) or - this = TSsaUntracked(result, _) - } + SsaSourceVariable getSourceVariable() { result = super.getSourceVariable() } /** Gets the `ControlFlowNode` at which this SSA variable is defined. */ + pragma[nomagic] ControlFlowNode getCfgNode() { - this = TSsaPhiNode(_, result) or - this = TSsaCertainUpdate(_, result, _, _) or - this = TSsaUncertainUpdate(_, result, _, _) or - this = TSsaEntryDef(_, result) or - this = TSsaUntracked(_, result) + exists(BasicBlock bb, int i, int j | + this.definesAt(_, bb, i) and + // untracked definitions are inserted just before reads + (if this instanceof UntrackedDef then j = i + 1 else j = i) and + // phi nodes are inserted at position `-1` + result = bb.getNode(0.maximum(j)) + ) } /** Gets a textual representation of this SSA variable. */ @@ -939,13 +162,10 @@ class SsaVariable extends TSsaVariable { Location getLocation() { result = this.getCfgNode().getLocation() } /** Gets the `BasicBlock` in which this SSA variable is defined. */ - BasicBlock getBasicBlock() { result = this.getCfgNode().getBasicBlock() } + BasicBlock getBasicBlock() { result = super.getBasicBlock() } /** Gets an access of this SSA variable. */ - VarRead getAUse() { - ssaDefReachesUse(_, this, result) or - this = TSsaUntracked(_, result.getControlFlowNode()) - } + VarRead getAUse() { result = getAUse(this) } /** * Gets an access of the SSA source variable underlying this SSA variable @@ -956,13 +176,10 @@ class SsaVariable extends TSsaVariable { * Subsequent uses can be found by following the steps defined by * `adjacentUseUse`. */ - VarRead getAFirstUse() { - firstUse(this, result) or - this = TSsaUntracked(_, result.getControlFlowNode()) - } + VarRead getAFirstUse() { firstUse(this, result) } /** Holds if this SSA variable is live at the end of `b`. */ - predicate isLiveAtEndOfBlock(BasicBlock b) { ssaDefReachesEndOfBlock(_, this, b) } + predicate isLiveAtEndOfBlock(BasicBlock b) { ssaDefReachesEndOfBlock(b, this) } /** * Gets an SSA variable whose value can flow to this one in one step. This @@ -982,29 +199,20 @@ class SsaVariable extends TSsaVariable { } /** An SSA variable that either explicitly or implicitly updates the variable. */ -class SsaUpdate extends SsaVariable { - SsaUpdate() { - this = TSsaCertainUpdate(_, _, _, _) or - this = TSsaUncertainUpdate(_, _, _, _) or - this = TSsaUntracked(_, _) - } +class SsaUpdate extends SsaVariable instanceof WriteDefinition { + SsaUpdate() { not this instanceof SsaImplicitInit } } /** An SSA variable that is defined by a `VariableUpdate`. */ -class SsaExplicitUpdate extends SsaUpdate, TSsaCertainUpdate { - SsaExplicitUpdate() { - exists(VariableUpdate upd | - upd.getControlFlowNode() = this.getCfgNode() and getDestVar(upd) = this.getSourceVariable() - ) - } +class SsaExplicitUpdate extends SsaUpdate { + private VariableUpdate upd; + + SsaExplicitUpdate() { ssaExplicitUpdate(this, upd) } override string toString() { result = "SSA def(" + this.getSourceVariable() + ")" } /** Gets the `VariableUpdate` defining the SSA variable. */ - VariableUpdate getDefiningExpr() { - result.getControlFlowNode() = this.getCfgNode() and - getDestVar(result) = this.getSourceVariable() - } + VariableUpdate getDefiningExpr() { result = upd } } /** @@ -1020,13 +228,28 @@ class SsaImplicitUpdate extends SsaUpdate { result = "SSA impl upd[" + this.getKind() + "](" + this.getSourceVariable() + ")" } + private predicate hasExplicitQualifierUpdate() { + exists(SsaUpdate qdef, BasicBlock bb, int i | + qdef.definesAt(this.getSourceVariable().getQualifier(), bb, i) and + this.definesAt(_, bb, i) and + not qdef instanceof SsaUncertainImplicitUpdate + ) + } + + private predicate hasImplicitQualifierUpdate() { + exists(SsaUncertainImplicitUpdate qdef, BasicBlock bb, int i | + qdef.definesAt(this.getSourceVariable().getQualifier(), bb, i) and + this.definesAt(_, bb, i) + ) + } + private string getKind() { - this = TSsaUntracked(_, _) and result = "untracked" + this instanceof UntrackedDef and result = "untracked" or - certainVariableUpdate(this.getSourceVariable().getQualifier(), this.getCfgNode(), _, _) and + this.hasExplicitQualifierUpdate() and result = "explicit qualifier" or - if uncertainVariableUpdate(this.getSourceVariable().getQualifier(), this.getCfgNode(), _, _) + if this.hasImplicitQualifierUpdate() then if exists(this.getANonLocalUpdate()) then result = "nonlocal + nonlocal qualifier" @@ -1041,9 +264,8 @@ class SsaImplicitUpdate extends SsaUpdate { */ FieldWrite getANonLocalUpdate() { exists(SsaSourceField f, Callable setter | - f = this.getSourceVariable() and relevantFieldUpdate(setter, f.getField(), result) and - updatesNamedField(this.getCfgNode().asCall(), f, setter) + defUpdatesNamedField(this, f, setter) ) } @@ -1055,9 +277,11 @@ class SsaImplicitUpdate extends SsaUpdate { * of its qualifiers is volatile. */ predicate assignsUnknownValue() { - this = TSsaUntracked(_, _) or - certainVariableUpdate(this.getSourceVariable().getQualifier(), this.getCfgNode(), _, _) or - uncertainVariableUpdate(this.getSourceVariable().getQualifier(), this.getCfgNode(), _, _) + this instanceof UntrackedDef + or + this.hasExplicitQualifierUpdate() + or + this.hasImplicitQualifierUpdate() } } @@ -1066,25 +290,27 @@ class SsaImplicitUpdate extends SsaUpdate { * This is a `Call` that might reach a non-local update of the field or one of * its qualifiers. */ -class SsaUncertainImplicitUpdate extends SsaImplicitUpdate, TSsaUncertainUpdate { +class SsaUncertainImplicitUpdate extends SsaImplicitUpdate { + SsaUncertainImplicitUpdate() { ssaUncertainImplicitUpdate(this) } + /** * Gets the immediately preceding definition. Since this update is uncertain * the value from the preceding definition might still be valid. */ - SsaVariable getPriorDef() { ssaDefReachesUncertainDef(_, result, this) } + SsaVariable getPriorDef() { ssaDefReachesUncertainDef(result, this) } } /** * An SSA variable that is defined by its initial value in the callable. This * includes initial values of parameters, fields, and closure variables. */ -class SsaImplicitInit extends SsaVariable, TSsaEntryDef { +class SsaImplicitInit extends SsaVariable instanceof WriteDefinition { + SsaImplicitInit() { ssaImplicitInit(this) } + override string toString() { result = "SSA init(" + this.getSourceVariable() + ")" } /** Holds if this is a closure variable that captures the value of `capturedvar`. */ - predicate captures(SsaVariable capturedvar) { - ssaDefReachesCapture(_, capturedvar, this.getSourceVariable()) - } + predicate captures(SsaVariable capturedvar) { captures(this, capturedvar) } /** * Holds if the SSA variable is a parameter defined by its initial value in the callable. @@ -1096,23 +322,15 @@ class SsaImplicitInit extends SsaVariable, TSsaEntryDef { } /** An SSA phi node. */ -class SsaPhiNode extends SsaVariable, TSsaPhiNode { +class SsaPhiNode extends SsaVariable instanceof PhiNode { override string toString() { result = "SSA phi(" + this.getSourceVariable() + ")" } /** Gets an input to the phi node defining the SSA variable. */ - SsaVariable getAPhiInput() { - exists(BasicBlock phiPred, TrackedVar v | - v = this.getSourceVariable() and - this.getCfgNode().(BasicBlock).getABBPredecessor() = phiPred and - ssaDefReachesEndOfBlock(v, result, phiPred) - ) - } + SsaVariable getAPhiInput() { this.hasInputFromBlock(result, _) } /** Holds if `inp` is an input to the phi node along the edge originating in `bb`. */ predicate hasInputFromBlock(SsaVariable inp, BasicBlock bb) { - this.getAPhiInput() = inp and - this.getBasicBlock().getABBPredecessor() = bb and - inp.isLiveAtEndOfBlock(bb) + phiHasInputFromBlock(this, inp, bb) } } @@ -1137,3 +355,5 @@ Expr sameValue(SsaVariable v, VarAccess va) { or result.(RefTypeCastingExpr).getExpr() = sameValue(v, va) } + +import SsaPublic diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/BaseSSA.qll b/java/ql/lib/semmle/code/java/dataflow/internal/BaseSSA.qll index 073d87d9744..cf62fed552b 100644 --- a/java/ql/lib/semmle/code/java/dataflow/internal/BaseSSA.qll +++ b/java/ql/lib/semmle/code/java/dataflow/internal/BaseSSA.qll @@ -57,7 +57,7 @@ class BaseSsaSourceVariable extends TBaseSsaSourceVariable { } cached -private module SsaImpl { +private module BaseSsaImpl { /** Gets the destination variable of an update of a tracked variable. */ cached BaseSsaSourceVariable getDestVar(VariableUpdate upd) { @@ -440,7 +440,7 @@ private module SsaImpl { } } -private import SsaImpl +private import BaseSsaImpl private import SsaDefReaches import SsaPublic diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll index bf867d21d3c..df9a487a2c1 100644 --- a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll +++ b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowNodes.qll @@ -10,6 +10,8 @@ private import FlowSummaryImpl as FlowSummaryImpl private import DataFlowImplCommon as DataFlowImplCommon private import semmle.code.java.controlflow.Guards private import semmle.code.java.dataflow.RangeUtils +private import semmle.code.java.dataflow.SSA +private import SsaImpl as SsaImpl /** Gets a string for approximating the name of a field. */ string approximateFieldContent(FieldContent fc) { result = fc.getField().getName().prefix(1) } @@ -21,8 +23,34 @@ private predicate deadcode(Expr e) { ) } +module SsaFlow { + module Impl = SsaImpl::DataFlowIntegration; + + Impl::Node asNode(Node n) { + n = TSsaNode(result) + or + result.(Impl::ExprNode).getExpr() = n.asExpr() + or + result.(Impl::ExprPostUpdateNode).getExpr() = n.(PostUpdateNode).getPreUpdateNode().asExpr() + or + TExplicitParameterNode(result.(Impl::ParameterNode).getParameter()) = n + } + + predicate localFlowStep( + SsaImpl::Impl::DefinitionExt def, Node nodeFrom, Node nodeTo, boolean isUseStep + ) { + Impl::localFlowStep(def, asNode(nodeFrom), asNode(nodeTo), isUseStep) + } + + predicate localMustFlowStep(SsaImpl::Impl::DefinitionExt def, Node nodeFrom, Node nodeTo) { + Impl::localMustFlowStep(def, asNode(nodeFrom), asNode(nodeTo)) + } +} + cached private module Cached { + private import semmle.code.java.controlflow.internal.GuardsLogic as GuardsLogic + cached newtype TNode = TExprNode(Expr e) { @@ -31,6 +59,7 @@ private module Cached { not e.getType() instanceof VoidType and not e.getParent*() instanceof Annotation } or + TSsaNode(SsaFlow::Impl::SsaNode node) or TExplicitParameterNode(Parameter p) { exists(p.getCallable().getBody()) } or TImplicitVarargsArray(Call c) { c.getCallee().isVarargs() and @@ -137,6 +166,8 @@ module Public { result = this.(FieldValueNode).getField().getType() or result instanceof TypeObject and this instanceof AdditionalNode + or + result = this.(SsaNode).getDefinitionExt().getSourceVariable().getType() } /** Gets the callable in which this node occurs. */ @@ -358,6 +389,18 @@ module Public { private import Public +class SsaNode extends Node, TSsaNode { + private SsaFlow::Impl::SsaNode node; + + SsaNode() { this = TSsaNode(node) } + + SsaImpl::Impl::DefinitionExt getDefinitionExt() { result = node.getDefinitionExt() } + + override Location getLocation() { result = node.getLocation() } + + override string toString() { result = node.toString() } +} + private class NewExpr extends PostUpdateNode, TExprNode { NewExpr() { exists(ClassInstanceExpr cie | this = TExprNode(cie)) } @@ -398,7 +441,8 @@ module Private { result.asSummarizedCallable() = n.(FlowSummaryNode).getSummarizedCallable() or result.asCallable() = n.(CaptureNode).getSynthesizedCaptureNode().getEnclosingCallable() or result.asFieldScope() = n.(FieldValueNode).getField() or - result.asCallable() = any(Expr e | n.(AdditionalNode).nodeAt(e, _)).getEnclosingCallable() + result.asCallable() = any(Expr e | n.(AdditionalNode).nodeAt(e, _)).getEnclosingCallable() or + result.asCallable() = n.(SsaNode).getDefinitionExt().getBasicBlock().getEnclosingCallable() } /** Holds if `p` is a `ParameterNode` of `c` with position `pos`. */ diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowPrivate.qll b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowPrivate.qll index 704e5714784..d1df53a8a85 100644 --- a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowPrivate.qll +++ b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowPrivate.qll @@ -581,7 +581,11 @@ predicate forceHighPrecision(Content c) { } /** Holds if `n` should be hidden from path explanations. */ -predicate nodeIsHidden(Node n) { n instanceof FlowSummaryNode } +predicate nodeIsHidden(Node n) { + n instanceof FlowSummaryNode + or + n instanceof SsaNode +} class LambdaCallKind = Method; // the "apply" method in the functional interface diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowUtil.qll b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowUtil.qll index c66af2c78c5..cc03f227151 100644 --- a/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowUtil.qll +++ b/java/ql/lib/semmle/code/java/dataflow/internal/DataFlowUtil.qll @@ -10,6 +10,7 @@ private import semmle.code.java.dataflow.ExternalFlow private import semmle.code.java.dataflow.FlowSteps private import semmle.code.java.dataflow.FlowSummary private import semmle.code.java.dataflow.InstanceAccess +private import semmle.code.java.dataflow.internal.SsaImpl as SsaImpl private import FlowSummaryImpl as FlowSummaryImpl private import TaintTrackingUtil as TaintTrackingUtil private import DataFlowNodes @@ -101,6 +102,10 @@ predicate hasNonlocalValue(FieldRead fr) { ) } +private predicate capturedVariableRead(Node n) { + n.asExpr().(VarRead).getVariable() instanceof CapturedVariable +} + cached private module Cached { /** @@ -110,7 +115,7 @@ private module Cached { predicate localFlowStep(Node node1, Node node2) { simpleLocalFlowStep0(node1, node2, _) or - adjacentUseUse(node1.asExpr(), node2.asExpr()) + SsaFlow::localFlowStep(_, node1, node2, _) or // Simple flow through library code is included in the exposed local // step relation, even though flow is technically inter-procedural @@ -127,6 +132,20 @@ private module Cached { predicate simpleLocalFlowStep(Node node1, Node node2, string model) { simpleLocalFlowStep0(node1, node2, model) or + exists(boolean isUseStep | + SsaFlow::localFlowStep(_, node1, node2, isUseStep) and + not capturedVariableRead(node2) and + model = "" + | + isUseStep = false + or + isUseStep = true and + not exists(FieldRead fr | + hasNonlocalValue(fr) and fr.getField().isStatic() and fr = node1.asExpr() + ) and + not FlowSummaryImpl::Private::Steps::prohibitsUseUseFlow(node1, _) + ) + or any(AdditionalValueStep a).step(node1, node2) and pragma[only_bind_out](node1.getEnclosingCallable()) = pragma[only_bind_out](node2.getEnclosingCallable()) and @@ -149,14 +168,7 @@ predicate localMustFlowStep(Node node1, Node node2) { node2.(ImplicitInstanceAccess).getInstanceAccess().(OwnInstanceAccess).getEnclosingCallable() ) or - exists(SsaImplicitInit init | - init.isParameterDefinition(node1.asParameter()) and init.getAUse() = node2.asExpr() - ) - or - exists(SsaExplicitUpdate upd | - upd.getDefiningExpr().(VariableAssign).getSource() = node1.asExpr() and - upd.getAUse() = node2.asExpr() - ) + SsaFlow::localMustFlowStep(_, node1, node2) or node2.asExpr().(CastingExpr).getExpr() = node1.asExpr() or @@ -168,10 +180,6 @@ predicate localMustFlowStep(Node node1, Node node2) { import Cached -private predicate capturedVariableRead(Node n) { - n.asExpr().(VarRead).getVariable() instanceof CapturedVariable -} - /** * Holds if there is a data flow step from `e1` to `e2` that only steps from * child to parent in the AST. @@ -213,34 +221,8 @@ predicate simpleAstFlowStep(Expr e1, Expr e2) { private predicate simpleLocalFlowStep0(Node node1, Node node2, string model) { ( TaintTrackingUtil::forceCachingInSameStage() and - // Variable flow steps through adjacent def-use and use-use pairs. - exists(SsaExplicitUpdate upd | - upd.getDefiningExpr().(VariableAssign).getSource() = node1.asExpr() or - upd.getDefiningExpr().(AssignOp) = node1.asExpr() or - upd.getDefiningExpr().(RecordBindingVariableExpr) = node1.asExpr() - | - node2.asExpr() = upd.getAFirstUse() and - not capturedVariableRead(node2) - ) - or - exists(SsaImplicitInit init | - init.isParameterDefinition(node1.asParameter()) and - node2.asExpr() = init.getAFirstUse() and - not capturedVariableRead(node2) - ) - or - adjacentUseUse(node1.asExpr(), node2.asExpr()) and - not exists(FieldRead fr | - hasNonlocalValue(fr) and fr.getField().isStatic() and fr = node1.asExpr() - ) and - not FlowSummaryImpl::Private::Steps::prohibitsUseUseFlow(node1, _) and - not capturedVariableRead(node2) - or ThisFlow::adjacentThisRefs(node1, node2) or - adjacentUseUse(node1.(PostUpdateNode).getPreUpdateNode().asExpr(), node2.asExpr()) and - not capturedVariableRead(node2) - or ThisFlow::adjacentThisRefs(node1.(PostUpdateNode).getPreUpdateNode(), node2) or simpleAstFlowStep(node1.asExpr(), node2.asExpr()) @@ -404,11 +386,7 @@ signature predicate guardChecksSig(Guard g, Expr e, boolean branch); module BarrierGuard { /** Gets a node that is safely guarded by the given guard check. */ Node getABarrierNode() { - exists(Guard g, SsaVariable v, boolean branch, VarRead use | - guardChecks(g, v.getAUse(), branch) and - use = v.getAUse() and - g.controls(use.getBasicBlock(), branch) and - result.asExpr() = use - ) + SsaFlow::asNode(result) = + SsaImpl::DataFlowIntegration::BarrierGuard::getABarrierNode() } } diff --git a/java/ql/lib/semmle/code/java/dataflow/internal/SsaImpl.qll b/java/ql/lib/semmle/code/java/dataflow/internal/SsaImpl.qll new file mode 100644 index 00000000000..bcc68cfd873 --- /dev/null +++ b/java/ql/lib/semmle/code/java/dataflow/internal/SsaImpl.qll @@ -0,0 +1,746 @@ +import java +private import codeql.ssa.Ssa as SsaImplCommon +private import semmle.code.java.dataflow.SSA +private import semmle.code.java.dispatch.VirtualDispatch +private import semmle.code.java.dispatch.WrappedInvocation +private import semmle.code.java.controlflow.Guards as Guards + +predicate fieldAccessInCallable(FieldAccess fa, Field f, Callable c) { + f = fa.getField() and + c = fa.getEnclosingCallable() +} + +cached +newtype TSsaSourceVariable = + TLocalVar(Callable c, LocalScopeVariable v) { + c = v.getCallable() or c = v.getAnAccess().getEnclosingCallable() + } or + TPlainField(Callable c, Field f) { + exists(FieldRead fr | + fieldAccessInCallable(fr, f, c) and + (fr.isOwnFieldAccess() or f.isStatic()) + ) + } or + TEnclosingField(Callable c, Field f, RefType t) { + exists(FieldRead fr | fieldAccessInCallable(fr, f, c) and fr.isEnclosingFieldAccess(t)) + } or + TQualifiedField(Callable c, SsaSourceVariable q, InstanceField f) { + exists(FieldRead fr | fieldAccessInCallable(fr, f, c) and fr.getQualifier() = q.getAnAccess()) + } + +private module TrackedVariablesImpl { + /** Gets the number of accesses of `f`. */ + private int numberOfAccesses(SsaSourceField f) { + result = strictcount(FieldAccess fa | fa = f.getAnAccess()) + } + + /** Holds if `f` is accessed inside a loop. */ + private predicate loopAccessed(SsaSourceField f) { + exists(LoopStmt l, FieldRead fr | fr = f.getAnAccess() | + l.getBody() = fr.getEnclosingStmt().getEnclosingStmt*() or + l.getCondition() = fr.getParent*() or + l.(ForStmt).getAnUpdate() = fr.getParent*() + ) + } + + /** Holds if `f` is accessed more than once or inside a loop. */ + private predicate multiAccessed(SsaSourceField f) { loopAccessed(f) or 1 < numberOfAccesses(f) } + + /** + * Holds if `f` is a field that is interesting as a basis for SSA. + * + * - A field that is read twice is interesting as we want to know whether the + * reads refer to the same value. + * - A field that is both written and read is interesting as we want to know + * whether the read might get the written value. + * - A field that is read in a loop is interesting as we want to know whether + * the value is the same in different iterations (that is, whether the SSA + * definition can be placed outside the loop). + * - A volatile field is never interesting, since all reads must reread from + * memory and we are forced to assume that the value can change at any point. + */ + cached + predicate trackField(SsaSourceField f) { multiAccessed(f) and not f.isVolatile() } + + /** + * The variables that form the basis of the non-trivial SSA construction. + * Fields that aren't tracked get a trivial SSA construction (a definition + * prior to every read). + */ + class TrackedVar extends SsaSourceVariable { + TrackedVar() { + this = TLocalVar(_, _) or + trackField(this) + } + } + + class TrackedField extends TrackedVar, SsaSourceField { } +} + +private import TrackedVariablesImpl + +private predicate untrackedFieldWrite(BasicBlock bb, int i, SsaSourceVariable v) { + v = + any(SsaSourceField nf | + bb.getNode(i + 1) = nf.getAnAccess().(FieldRead).getControlFlowNode() and not trackField(nf) + ) +} + +/** Gets the definition point of a nested class in the parent scope. */ +private ControlFlowNode parentDef(NestedClass nc) { + nc.(AnonymousClass).getClassInstanceExpr().getControlFlowNode() = result or + nc.(LocalClass).getLocalTypeDeclStmt().getControlFlowNode() = result +} + +/** + * Gets the enclosing type of a nested class. + * + * Differs from `RefType.getEnclosingType()` by including anonymous classes defined by lambdas. + */ +private RefType desugaredGetEnclosingType(NestedClass inner) { + exists(ControlFlowNode node | + node = parentDef(inner) and + node.getEnclosingCallable().getDeclaringType() = result + ) +} + +/** + * Gets the control flow node at which the variable is read to get the value for + * a `VarAccess` inside a closure. `capturedvar` is the variable in its defining + * scope, and `closurevar` is the variable in the closure. + */ +private ControlFlowNode captureNode(TrackedVar capturedvar, TrackedVar closurevar) { + exists( + LocalScopeVariable v, Callable inner, Callable outer, NestedClass innerclass, VarAccess va + | + va.getVariable() = v and + inner = va.getEnclosingCallable() and + outer = v.getCallable() and + inner != outer and + inner.getDeclaringType() = innerclass and + result = parentDef(desugaredGetEnclosingType*(innerclass)) and + result.getEnclosingStmt().getEnclosingCallable() = outer and + capturedvar = TLocalVar(outer, v) and + closurevar = TLocalVar(inner, v) + ) +} + +/** Holds if the value of `v` is captured in `b` at index `i`. */ +private predicate variableCapture(TrackedVar capturedvar, TrackedVar closurevar, BasicBlock b, int i) { + b.getNode(i) = captureNode(capturedvar, closurevar) +} + +/** Holds if `n` must update the locally tracked variable `v`. */ +pragma[nomagic] +private predicate certainVariableUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { + exists(VariableUpdate a | a.getControlFlowNode() = n | getDestVar(a) = v) and + b.getNode(i) = n and + hasDominanceInformation(b) + or + certainVariableUpdate(v.getQualifier(), n, b, i) +} + +/** Holds if `v` has an implicit definition at the entry, `b`, of the callable. */ +pragma[nomagic] +private predicate hasEntryDef(TrackedVar v, BasicBlock b) { + exists(LocalScopeVariable l, Callable c | + v = TLocalVar(c, l) and c.getBody().getControlFlowNode() = b + | + l instanceof Parameter or + l.getCallable() != c + ) + or + v instanceof SsaSourceField and v.getEnclosingCallable().getBody().getControlFlowNode() = b +} + +/** Holds if `n` might update the locally tracked variable `v`. */ +pragma[nomagic] +private predicate uncertainVariableUpdate(TrackedVar v, ControlFlowNode n, BasicBlock b, int i) { + exists(Call c | c = n.asCall() | updatesNamedField(c, v, _)) and + b.getNode(i) = n and + hasDominanceInformation(b) + or + uncertainVariableUpdate(v.getQualifier(), n, b, i) +} + +private module SsaInput implements SsaImplCommon::InputSig { + private import java as J + private import semmle.code.java.controlflow.Dominance as Dom + + class BasicBlock = J::BasicBlock; + + class ControlFlowNode = J::ControlFlowNode; + + BasicBlock getImmediateBasicBlockDominator(BasicBlock bb) { Dom::bbIDominates(result, bb) } + + BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getABBSuccessor() } + + class SourceVariable = SsaSourceVariable; + + /** + * Holds if the `i`th node of basic block `bb` is a (potential) write to source + * variable `v`. The Boolean `certain` indicates whether the write is certain. + * + * This includes implicit writes via calls. + */ + predicate variableWrite(BasicBlock bb, int i, SourceVariable v, boolean certain) { + certainVariableUpdate(v, _, bb, i) and + certain = true + or + untrackedFieldWrite(bb, i, v) and + certain = true + or + hasEntryDef(v, bb) and + i = 0 and + certain = true + or + uncertainVariableUpdate(v, _, bb, i) and + certain = false + } + + /** + * Holds if the `i`th of basic block `bb` reads source variable `v`. + * + * This includes implicit reads via calls. + */ + predicate variableRead(BasicBlock bb, int i, SourceVariable v, boolean certain) { + exists(VarRead use | + v.getAnAccess() = use and bb.getNode(i) = use.getControlFlowNode() and certain = true + ) + or + variableCapture(v, _, bb, i) and + certain = false + } +} + +import SsaImplCommon::Make as Impl + +final class Definition = Impl::Definition; + +final class WriteDefinition = Impl::WriteDefinition; + +final class UncertainWriteDefinition = Impl::UncertainWriteDefinition; + +final class PhiNode = Impl::PhiNode; + +class UntrackedDef extends Definition { + private VarRead read; + + UntrackedDef() { ssaUntrackedDef(this, read) } + + string toString() { result = read.toString() } + + Location getLocation() { result = read.getLocation() } +} + +cached +private module Cached { + /** Gets the destination variable of an update of a tracked variable. */ + cached + TrackedVar getDestVar(VariableUpdate upd) { + result.getAnAccess() = upd.(Assignment).getDest() + or + exists(LocalVariableDecl v | v = upd.(LocalVariableDeclExpr).getVariable() | + result = TLocalVar(v.getCallable(), v) + ) + or + result.getAnAccess() = upd.(UnaryAssignExpr).getExpr() + } + + cached + predicate ssaExplicitUpdate(SsaUpdate def, VariableUpdate upd) { + exists(SsaSourceVariable v, BasicBlock bb, int i | + def.definesAt(v, bb, i) and + certainVariableUpdate(v, upd.getControlFlowNode(), bb, i) and + getDestVar(upd) = def.getSourceVariable() + ) + } + + cached + predicate ssaUntrackedDef(Definition def, VarRead read) { + exists(SsaSourceVariable v, BasicBlock bb, int i | + def.definesAt(v, bb, i) and + untrackedFieldWrite(bb, i, v) and + read.getControlFlowNode() = bb.getNode(i + 1) + ) + } + + /* + * The SSA construction for a field `f` relies on implicit update nodes at + * every call site that conceivably could reach an update of the field. + * + * At a first approximation we need to find update paths of the form: + * Callable --(callEdge)-->* Callable(setter of f) + * + * This can be improved by excluding paths ending in: + * Constructor --(intraInstanceCallEdge)-->+ Method(setter of this.f) + * as these updates are guaranteed not to alias with the `f` under + * consideration. + * + * This set of paths can be expressed positively by noting that those + * that set `this.f` end in zero or more `intraInstanceCallEdge`s between + * methods, and before those is either the originating `Call` or a + * `crossInstanceCallEdge`. + */ + + /** + * Holds if `fw` is a field write that is not relevant as an implicit SSA + * update, since it is an initialization and therefore cannot alias. + */ + private predicate init(FieldWrite fw) { + fw.getEnclosingCallable() instanceof InitializerMethod + or + fw.getEnclosingCallable() instanceof Constructor and fw.isOwnFieldAccess() + or + exists(LocalVariableDecl v | + v.getAnAccess() = fw.getQualifier() and + forex(VariableAssign va | va.getDestVar() = v and exists(va.getSource()) | + va.getSource() instanceof ClassInstanceExpr + ) + ) + } + + /** + * Holds if `fw` is an update of `f` in `c` that is relevant for SSA construction. + */ + cached + predicate relevantFieldUpdate(Callable c, Field f, FieldWrite fw) { + fw = f.getAnAccess() and + not init(fw) and + fw.getEnclosingCallable() = c and + exists(TrackedField nf | nf.getField() = f) + } + + /** Holds if `c` can change the value of `this.f` and is relevant for SSA construction. */ + private predicate setsOwnField(Method c, Field f) { + exists(FieldWrite fw | relevantFieldUpdate(c, f, fw) and fw.isOwnFieldAccess()) + } + + /** + * Holds if `c` can change the value of `f` and is relevant for SSA + * construction excluding those cases covered by `setsOwnField`. + */ + private predicate setsOtherField(Callable c, Field f) { + exists(FieldWrite fw | relevantFieldUpdate(c, f, fw) and not fw.isOwnFieldAccess()) + } + + pragma[nomagic] + private predicate innerclassSupertypeStar(InnerClass t1, RefType t2) { + t1.getASourceSupertype*().getSourceDeclaration() = t2 + } + + /** + * Holds if `(c1,m2)` is a call edge to a method that does not change the value + * of `this`. + * + * Constructor-to-constructor calls can also be intra-instance, but are not + * included, as this does not affect whether a call chain ends in + * + * ``` + * Constructor --(intraInstanceCallEdge)-->+ Method(setter of this.f) + * ``` + */ + private predicate intraInstanceCallEdge(Callable c1, Method m2) { + exists(MethodCall ma, RefType t1 | + ma.getCaller() = c1 and + m2 = viableImpl_v2(ma) and + not m2.isStatic() and + ( + not exists(ma.getQualifier()) or + ma.getQualifier() instanceof ThisAccess or + ma.getQualifier() instanceof SuperAccess + ) and + c1.getDeclaringType() = t1 and + if t1 instanceof InnerClass + then + innerclassSupertypeStar(t1, ma.getCallee().getSourceDeclaration().getDeclaringType()) and + not exists(ma.getQualifier().(ThisAccess).getQualifier()) and + not exists(ma.getQualifier().(SuperAccess).getQualifier()) + else any() + ) + } + + private Callable tgt(Call c) { + result = viableImpl_v2(c) + or + result = getRunnerTarget(c) + or + c instanceof ConstructorCall and result = c.getCallee().getSourceDeclaration() + } + + /** Holds if `(c1,c2)` is an edge in the call graph. */ + private predicate callEdge(Callable c1, Callable c2) { + exists(Call c | c.getCaller() = c1 and c2 = tgt(c)) + } + + /** Holds if `(c1,c2)` is an edge in the call graph excluding `intraInstanceCallEdge`. */ + private predicate crossInstanceCallEdge(Callable c1, Callable c2) { + callEdge(c1, c2) and not intraInstanceCallEdge(c1, c2) + } + + /** + * Holds if `call` is relevant as a potential update of `f`. This requires the + * existence of an update to `f` somewhere. + */ + private predicate relevantCall(Call call, TrackedField f) { + call.getEnclosingCallable() = f.getEnclosingCallable() and + relevantFieldUpdate(_, f.getField(), _) + } + + private predicate source(Call call, TrackedField f, Field field, Callable c, boolean fresh) { + relevantCall(call, f) and + field = f.getField() and + c = tgt(call) and + if c instanceof Constructor then fresh = true else fresh = false + } + + /** + * A callable in a potential call-chain between a source that cares about the + * value of some field `f` and a sink that may overwrite `f`. The boolean + * `fresh` indicates whether the instance `this` in `c` has been freshly + * allocated along the call-chain. + */ + private newtype TCallableNode = + MkCallableNode(Callable c, boolean fresh) { source(_, _, _, c, fresh) or edge(_, c, fresh) } + + private predicate edge(TCallableNode n, Callable c2, boolean f2) { + exists(Callable c1, boolean f1 | n = MkCallableNode(c1, f1) | + intraInstanceCallEdge(c1, c2) and f2 = f1 + or + crossInstanceCallEdge(c1, c2) and + if c2 instanceof Constructor then f2 = true else f2 = false + ) + } + + private predicate edge(TCallableNode n1, TCallableNode n2) { + exists(Callable c2, boolean f2 | + edge(n1, c2, f2) and + n2 = MkCallableNode(c2, f2) + ) + } + + pragma[noinline] + private predicate source(Call call, TrackedField f, Field field, TCallableNode n) { + exists(Callable c, boolean fresh | + source(call, f, field, c, fresh) and + n = MkCallableNode(c, fresh) + ) + } + + private predicate sink(Callable c, Field f, TCallableNode n) { + setsOwnField(c, f) and n = MkCallableNode(c, false) + or + setsOtherField(c, f) and n = MkCallableNode(c, _) + } + + private predicate prunedNode(TCallableNode n) { + sink(_, _, n) + or + exists(TCallableNode mid | edge(n, mid) and prunedNode(mid)) + } + + private predicate prunedEdge(TCallableNode n1, TCallableNode n2) { + prunedNode(n1) and + prunedNode(n2) and + edge(n1, n2) + } + + private predicate edgePlus(TCallableNode c1, TCallableNode c2) = fastTC(prunedEdge/2)(c1, c2) + + /** + * Holds if there exists a call-chain originating in `call` that can update `f` on some instance + * where `f` and `call` share the same enclosing callable in which a + * `FieldRead` of `f` is reachable from `call`. + */ + pragma[noopt] + private predicate updatesNamedFieldImpl(Call call, TrackedField f, Callable setter) { + exists(TCallableNode src, TCallableNode sink, Field field | + source(call, f, field, src) and + sink(setter, field, sink) and + (src = sink or edgePlus(src, sink)) + ) + } + + bindingset[call, f] + pragma[inline_late] + private predicate updatesNamedField0(Call call, TrackedField f, Callable setter) { + updatesNamedField(call, f, setter) + } + + cached + predicate defUpdatesNamedField(SsaImplicitUpdate def, TrackedField f, Callable setter) { + f = def.getSourceVariable() and + updatesNamedField0(def.getCfgNode().asCall(), f, setter) + } + + cached + predicate ssaUncertainImplicitUpdate(SsaImplicitUpdate def) { + exists(SsaSourceVariable v, BasicBlock bb, int i | + def.definesAt(v, bb, i) and + uncertainVariableUpdate(v, _, bb, i) + ) + } + + cached + predicate ssaImplicitInit(WriteDefinition def) { + exists(SsaSourceVariable v, BasicBlock bb, int i | + def.definesAt(v, bb, i) and + hasEntryDef(v, bb) and + i = 0 + ) + } + + pragma[nomagic] + private predicate captureDefReaches(Definition def, SsaInput::BasicBlock bb2, int i2) { + variableCapture(def.getSourceVariable(), _, _, _) and + exists(SsaInput::BasicBlock bb1, int i1 | + Impl::adjacentDefRead(def, bb1, i1, bb2, i2) and + def.definesAt(_, bb1, i1) + ) + or + exists(SsaInput::BasicBlock bb3, int i3 | + captureDefReaches(def, bb3, i3) and + SsaInput::variableRead(bb3, i3, _, _) and + Impl::adjacentDefRead(def, bb3, i3, bb2, i2) + ) + } + + /** Holds if `init` is a closure variable that captures the value of `capturedvar`. */ + cached + predicate captures(SsaImplicitInit init, SsaVariable capturedvar) { + exists(BasicBlock bb, int i | + captureDefReaches(capturedvar, bb, i) and + variableCapture(capturedvar.getSourceVariable(), init.getSourceVariable(), bb, i) + ) + } + + /** + * Holds if the SSA definition of `v` at `def` reaches `redef` without crossing another + * SSA definition of `v`. + */ + cached + predicate ssaDefReachesUncertainDef(TrackedSsaDef def, SsaUncertainImplicitUpdate redef) { + Impl::uncertainWriteDefinitionInput(redef, def) + } + + pragma[nomagic] + private predicate defReaches(Definition def, DataFlowIntegration::Node node) { + exists(DataFlowIntegration::SsaDefinitionExtNode nodeFrom | + nodeFrom.getDefinitionExt() = def and + DataFlowIntegrationImpl::localFlowStep(_, nodeFrom, node, false) + ) + or + exists(DataFlowIntegration::Node mid | + defReaches(def, mid) and + DataFlowIntegrationImpl::localFlowStep(_, mid, node, _) + | + // flow into phi input node + mid instanceof DataFlowIntegration::SsaInputNode + or + // flow into definition + mid instanceof DataFlowIntegration::SsaDefinitionExtNode + ) + } + + /** + * Holds if the value defined at `def` can reach `use` without passing through + * any other uses, but possibly through phi nodes and uncertain implicit updates. + */ + cached + predicate firstUse(Definition def, VarRead use) { + exists(DataFlowIntegration::ExprNode nodeTo | + nodeTo.getExpr() = use and + defReaches(def, nodeTo) + ) + } + + cached + VarRead getAUse(Definition def) { + exists(SsaSourceVariable v, BasicBlock bb, int i | + Impl::ssaDefReachesRead(v, def, bb, i) and + result.getControlFlowNode() = bb.getNode(i) and + result = v.getAnAccess() + ) + } + + cached + predicate ssaDefReachesEndOfBlock(BasicBlock bb, Definition def) { + Impl::ssaDefReachesEndOfBlock(bb, def, _) + } + + cached + predicate phiHasInputFromBlock(PhiNode phi, Definition inp, BasicBlock bb) { + Impl::phiHasInputFromBlock(phi, inp, bb) + } + + cached + module DataFlowIntegration { + import DataFlowIntegrationImpl + + cached + predicate localFlowStep(Impl::DefinitionExt def, Node nodeFrom, Node nodeTo, boolean isUseStep) { + not def instanceof UntrackedDef and + DataFlowIntegrationImpl::localFlowStep(def, nodeFrom, nodeTo, isUseStep) + } + + cached + predicate localMustFlowStep(Impl::DefinitionExt def, Node nodeFrom, Node nodeTo) { + not def instanceof UntrackedDef and + DataFlowIntegrationImpl::localMustFlowStep(def, nodeFrom, nodeTo) + } + + signature predicate guardChecksSig(Guards::Guard g, Expr e, boolean branch); + + cached // nothing is actually cached + module BarrierGuard { + private predicate guardChecksAdjTypes( + DataFlowIntegrationInput::Guard g, DataFlowIntegrationInput::Expr e, boolean branch + ) { + guardChecks(g, e, branch) + } + + private Node getABarrierNodeImpl() { + result = DataFlowIntegrationImpl::BarrierGuard::getABarrierNode() + } + + predicate getABarrierNode = getABarrierNodeImpl/0; + } + } + + cached + module SsaPublic { + pragma[nomagic] + private predicate useReaches(VarRead use, DataFlowIntegration::Node node, boolean sameVar) { + exists(DataFlowIntegration::ExprNode nodeFrom | + nodeFrom.getExpr() = use and + DataFlowIntegration::localFlowStep(_, nodeFrom, node, true) and + sameVar = true + ) + or + exists(DataFlowIntegration::Node mid, boolean sameVarMid | + useReaches(use, mid, sameVarMid) and + DataFlowIntegration::localFlowStep(_, mid, node, _) + | + exists(Impl::DefinitionExt def | + // flow into definition + def = mid.(DataFlowIntegration::SsaDefinitionExtNode).getDefinitionExt() + or + // flow into phi input node + def = mid.(DataFlowIntegration::SsaInputNode).getDefinitionExt() + | + if def instanceof Impl::PhiReadNode then sameVar = sameVarMid else sameVar = false + ) + ) + } + + /** + * Holds if `use1` and `use2` form an adjacent use-use-pair of the same SSA + * variable, that is, the value read in `use1` can reach `use2` without passing + * through any other use or any SSA definition of the variable. + */ + cached + predicate adjacentUseUseSameVar(VarRead use1, VarRead use2) { + exists(DataFlowIntegration::ExprNode nodeTo | + nodeTo.getExpr() = use2 and + useReaches(use1, nodeTo, true) + ) + } + + /** + * Holds if `use1` and `use2` form an adjacent use-use-pair of the same + * `SsaSourceVariable`, that is, the value read in `use1` can reach `use2` + * without passing through any other use or any SSA definition of the variable + * except for phi nodes and uncertain implicit updates. + */ + cached + predicate adjacentUseUse(VarRead use1, VarRead use2) { + exists(DataFlowIntegration::ExprNode nodeTo | + nodeTo.getExpr() = use2 and + useReaches(use1, nodeTo, _) + ) + } + } + + /** + * Provides internal implementation predicates that are not cached and should not + * be used outside of this file. + */ + cached // needed to avoid compilation error; has no actual effect + module Internal { + predicate updatesNamedField = updatesNamedFieldImpl/3; // use alias to avoid caching + } +} + +import Cached +private import Internal + +/** + * An SSA definition excluding those variables that use a trivial SSA construction. + */ +private class TrackedSsaDef extends Definition { + TrackedSsaDef() { not this.getSourceVariable() = any(SsaSourceField f | not trackField(f)) } + + /** + * Holds if this SSA definition occurs at the specified position. + * Phi nodes are placed at index -1. + */ + predicate definesAt(TrackedVar v, BasicBlock b, int i) { super.definesAt(v, b, i) } +} + +private module DataFlowIntegrationInput implements Impl::DataFlowIntegrationInputSig { + private import java as J + + class Expr instanceof J::Expr { + string toString() { result = super.toString() } + + Location getLocation() { result = super.getLocation() } + + predicate hasCfgNode(BasicBlock bb, int i) { + super.getControlFlowNode() = bb.(J::BasicBlock).getNode(i) + } + } + + Expr getARead(Definition def) { result = getAUse(def) } + + class Parameter = J::Parameter; + + predicate ssaDefAssigns(Impl::WriteDefinition def, Expr value) { + exists(VariableUpdate upd | upd = def.(SsaExplicitUpdate).getDefiningExpr() | + value = upd.(VariableAssign).getSource() or + value = upd.(AssignOp) or + value = upd.(RecordBindingVariableExpr) + ) + } + + predicate ssaDefInitializesParam(Impl::WriteDefinition def, Parameter p) { + def.(SsaImplicitInit).getSourceVariable() = + any(SsaSourceVariable v | + v.getVariable() = p and + v.getEnclosingCallable() = p.getCallable() + ) + } + + predicate allowFlowIntoUncertainDef(UncertainWriteDefinition def) { + def instanceof SsaUncertainImplicitUpdate + } + + class Guard extends Guards::Guard { + predicate hasCfgNode(BasicBlock bb, int i) { + this = bb.getNode(i).asExpr() + or + this = bb.getNode(i).asStmt() + } + } + + /** Holds if the guard `guard` controls block `bb` upon evaluating to `branch`. */ + predicate guardControlsBlock(Guard guard, BasicBlock bb, boolean branch) { + guard.controls(bb, branch) + } + + /** Gets an immediate conditional successor of basic block `bb`, if any. */ + BasicBlock getAConditionalBasicBlockSuccessor(BasicBlock bb, boolean branch) { + result = bb.(Guards::ConditionBlock).getTestSuccessor(branch) + } +} + +private module DataFlowIntegrationImpl = Impl::DataFlowIntegration; diff --git a/java/ql/lib/semmle/code/java/frameworks/Jdbc.qll b/java/ql/lib/semmle/code/java/frameworks/Jdbc.qll index 2723f3f05f5..37be7dcf09a 100644 --- a/java/ql/lib/semmle/code/java/frameworks/Jdbc.qll +++ b/java/ql/lib/semmle/code/java/frameworks/Jdbc.qll @@ -34,3 +34,19 @@ class ResultSetGetStringMethod extends Method { this.getReturnType() instanceof TypeString } } + +/** A method with the name `executeUpdate` declared in `java.sql.PreparedStatement`. */ +class PreparedStatementExecuteUpdateMethod extends Method { + PreparedStatementExecuteUpdateMethod() { + this.getDeclaringType() instanceof TypePreparedStatement and + this.hasName("executeUpdate") + } +} + +/** A method with the name `executeLargeUpdate` declared in `java.sql.PreparedStatement`. */ +class PreparedStatementExecuteLargeUpdateMethod extends Method { + PreparedStatementExecuteLargeUpdateMethod() { + this.getDeclaringType() instanceof TypePreparedStatement and + this.hasName("executeLargeUpdate") + } +} diff --git a/java/ql/lib/semmle/code/java/frameworks/MyBatis.qll b/java/ql/lib/semmle/code/java/frameworks/MyBatis.qll index 01c8b829de6..c7fc09a33b4 100644 --- a/java/ql/lib/semmle/code/java/frameworks/MyBatis.qll +++ b/java/ql/lib/semmle/code/java/frameworks/MyBatis.qll @@ -128,3 +128,114 @@ private class MyBatisProviderStep extends TaintTracking::AdditionalValueStep { ) } } + +/** + * A MyBatis Mapper XML file. + */ +class MyBatisMapperXmlFile extends XmlFile { + MyBatisMapperXmlFile() { + count(XmlElement e | e = this.getAChild()) = 1 and + this.getAChild().getName() = "mapper" + } +} + +/** + * An XML element in a `MyBatisMapperXMLFile`. + */ +class MyBatisMapperXmlElement extends XmlElement { + MyBatisMapperXmlElement() { this.getFile() instanceof MyBatisMapperXmlFile } + + /** + * Gets the value for this element, with leading and trailing whitespace trimmed. + */ + string getValue() { result = this.allCharactersString().trim() } + + /** + * Gets the reference type bound to MyBatis Mapper XML File. + */ + RefType getNamespaceRefType() { + result.getQualifiedName() = this.getAttribute("namespace").getValue() + } +} + +/** + * An MyBatis Mapper sql operation element. + */ +abstract class MyBatisMapperSqlOperation extends MyBatisMapperXmlElement { + /** + * Gets the value of the `id` attribute of MyBatis Mapper sql operation element. + */ + string getId() { result = this.getAttribute("id").getValue() } + + /** + * Gets the `` element in a `MyBatisMapperSqlOperation`. + */ + MyBatisMapperInclude getInclude() { result = this.getAChild*() } + + /** + * Gets the method bound to MyBatis Mapper XML File. + */ + Method getMapperMethod() { + result.getName() = this.getId() and + result.getDeclaringType() = this.getParent().(MyBatisMapperXmlElement).getNamespaceRefType() + } +} + +/** + * A `` element in a `MyBatisMapperSqlOperation`. + */ +class MyBatisMapperInsert extends MyBatisMapperSqlOperation { + MyBatisMapperInsert() { this.getName() = "insert" } +} + +/** + * A `` element in a `MyBatisMapperSqlOperation`. + */ +class MyBatisMapperUpdate extends MyBatisMapperSqlOperation { + MyBatisMapperUpdate() { this.getName() = "update" } +} + +/** + * A `` element in a `MyBatisMapperSqlOperation`. + */ +class MyBatisMapperDelete extends MyBatisMapperSqlOperation { + MyBatisMapperDelete() { this.getName() = "delete" } +} + +/** + * A ` + + bindingset[loc] + private predicate parseLocationString( + string loc, string relativePath, int sl, int sc, int el, int ec + ) { + relativePath = loc.splitAt(":", 0) and + sl = loc.splitAt(":", 1).toInt() and + sc = loc.splitAt(":", 2).toInt() and + el = loc.splitAt(":", 3).toInt() and + ec = loc.splitAt(":", 4).toInt() + } + + pragma[nomagic] + private string getRelativePathTo(string absolutePath) { + exists(Input::Location loc | + loc.hasLocationInfo(absolutePath, _, _, _, _) and + parseLocationString(Input2::getRelativeUrl(loc), result, _, _, _, _) + ) + } + + private newtype TTestLocation = + MkInputLocation(Input::Location loc) or + MkResultLocation(string relativePath, int sl, int sc, int el, int ec) { + exists(string data | + queryResults(_, _, _, data) and + parseLocationString(data, relativePath, sl, sc, el, ec) and + not Input2::getRelativeUrl(_) = data // avoid duplicate locations + ) + } + + /** + * A location that is either an `Input::Location` or a location from an alert. + * + * We use this location type to support queries that select a location that does not correspond + * to an instance of `Input::Location`. + */ + abstract private class TestLocationImpl extends TTestLocation { + string getAbsoluteFile() { this.hasLocationInfo(result, _, _, _, _) } + + int getStartLine() { this.hasLocationInfo(_, result, _, _, _) } + + int getStartColumn() { this.hasLocationInfo(_, _, result, _, _) } + + int getEndLine() { this.hasLocationInfo(_, _, _, result, _) } + + int getEndColumn() { this.hasLocationInfo(_, _, _, _, result) } + + abstract string getRelativeUrl(); + + final string toString() { result = this.getRelativeUrl() } + + abstract predicate hasLocationInfo(string file, int sl, int sc, int el, int ec); + } + + private class LocationFromResult extends TestLocationImpl, MkResultLocation { + override string getRelativeUrl() { + exists(string file, int sl, int sc, int el, int ec | + this = MkResultLocation(file, sl, sc, el, ec) and + result = file + ":" + sl + ":" + sc + ":" + el + ":" + ec + ) + } + + override predicate hasLocationInfo(string file, int sl, int sc, int el, int ec) { + this = MkResultLocation(getRelativePathTo(file), sl, sc, el, ec) + } + } + + private class LocationFromInput extends TestLocationImpl, MkInputLocation { + private Input::Location loc; + + LocationFromInput() { this = MkInputLocation(loc) } + + override string getRelativeUrl() { result = Input2::getRelativeUrl(loc) } + + override predicate hasLocationInfo(string file, int sl, int sc, int el, int ec) { + loc.hasLocationInfo(file, sl, sc, el, ec) + } + } + + final class TestLocation = TestLocationImpl; + + module TestImpl2 implements InlineExpectationsTestSig { + final class Location = TestLocation; + + final private class ExpectationCommentFinal = Input::ExpectationComment; + + class ExpectationComment extends ExpectationCommentFinal { + Location getLocation() { result = MkInputLocation(super.getLocation()) } + } + } + + private import InlineExpectationsTest::Make /** Holds if the given locations refer to the same lines, but possibly with different column numbers. */ bindingset[loc1, loc2] pragma[inline_late] - private predicate sameLineInfo(Input::Location loc1, Input::Location loc2) { + private predicate sameLineInfo(TestLocation loc1, TestLocation loc2) { exists(string file, int line1, int line2 | loc1.hasLocationInfo(file, line1, _, line2, _) and loc2.hasLocationInfo(file, line1, _, line2, _) @@ -656,8 +747,8 @@ module TestPostProcessing { } pragma[nomagic] - private predicate mainQueryResult(int row, int column, Input::Location loc) { - queryResults(mainResultSet(), row, column, Input2::getRelativeUrl(loc)) + private predicate mainQueryResult(int row, int column, TestLocation loc) { + queryResults(mainResultSet(), row, column, loc.getRelativeUrl()) } /** @@ -668,7 +759,7 @@ module TestPostProcessing { */ private string getSourceTag(int row) { getQueryKind() = "path-problem" and - exists(Input::Location sourceLoc, Input::Location selectLoc | + exists(TestLocation sourceLoc, TestLocation selectLoc | mainQueryResult(row, 0, selectLoc) and mainQueryResult(row, 2, sourceLoc) and if sameLineInfo(selectLoc, sourceLoc) then result = "Alert" else result = "Source" @@ -733,7 +824,7 @@ module TestPostProcessing { } additional predicate hasPathProblemSource( - int row, Input::Location location, string element, string tag, string value + int row, TestLocation location, string element, string tag, string value ) { getQueryKind() = "path-problem" and mainQueryResult(row, 2, location) and @@ -742,7 +833,7 @@ module TestPostProcessing { value = "" } - predicate hasActualResult(Input::Location location, string element, string tag, string value) { + predicate hasActualResult(TestLocation location, string element, string tag, string value) { hasPathProblemSource(_, location, element, tag, value) } } @@ -770,7 +861,7 @@ module TestPostProcessing { private predicate hasPathProblemSource = PathProblemSourceTestInput::hasPathProblemSource/5; private predicate hasPathProblemSink( - int row, Input::Location location, string element, string tag + int row, TestLocation location, string element, string tag ) { getQueryKind() = "path-problem" and mainQueryResult(row, 4, location) and @@ -778,7 +869,7 @@ module TestPostProcessing { tag = getSinkTag(row) } - private predicate hasAlert(int row, Input::Location location, string element, string tag) { + private predicate hasAlert(int row, TestLocation location, string element, string tag) { getQueryKind() = ["problem", "path-problem"] and mainQueryResult(row, 0, location) and queryResults(mainResultSet(), row, 2, element) and @@ -793,7 +884,7 @@ module TestPostProcessing { * present). */ private string getValue(int row) { - exists(Input::Location location, string element, string tag, string val | + exists(TestLocation location, string element, string tag, string val | hasPathProblemSource(row, location, element, tag, val) and result = PathProblemSourceTest::getAMatchingExpectation(location, element, tag, val, false) @@ -801,7 +892,7 @@ module TestPostProcessing { ) } - predicate hasActualResult(Input::Location location, string element, string tag, string value) { + predicate hasActualResult(TestLocation location, string element, string tag, string value) { exists(int row | hasPathProblemSource(row, location, element, tag, _) or @@ -840,7 +931,7 @@ module TestPostProcessing { rankedTestFailures(row, f) and f = MkTestFailure(fl, message) | - column = 0 and data = Input2::getRelativeUrl(fl.getLocation()) + column = 0 and data = fl.getLocation().getRelativeUrl() or column = 1 and data = fl.toString() or diff --git a/shared/util/qlpack.yml b/shared/util/qlpack.yml index e2ddbb7374d..f2cf13e3f17 100644 --- a/shared/util/qlpack.yml +++ b/shared/util/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/util -version: 2.0.4-dev +version: 2.0.5-dev groups: shared library: true dependencies: null diff --git a/shared/xml/CHANGELOG.md b/shared/xml/CHANGELOG.md index d6297fd0036..77359b40c67 100644 --- a/shared/xml/CHANGELOG.md +++ b/shared/xml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/xml/change-notes/released/1.0.17.md b/shared/xml/change-notes/released/1.0.17.md new file mode 100644 index 00000000000..4180b2c20f2 --- /dev/null +++ b/shared/xml/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/xml/codeql-pack.release.yml b/shared/xml/codeql-pack.release.yml index 25c58f4113f..a88f1245e14 100644 --- a/shared/xml/codeql-pack.release.yml +++ b/shared/xml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/xml/qlpack.yml b/shared/xml/qlpack.yml index 552e89e1a6f..444e69d7b4f 100644 --- a/shared/xml/qlpack.yml +++ b/shared/xml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/xml -version: 1.0.17-dev +version: 1.0.18-dev groups: shared library: true dependencies: diff --git a/shared/yaml/CHANGELOG.md b/shared/yaml/CHANGELOG.md index 2aff18b9a3c..b20aa95a794 100644 --- a/shared/yaml/CHANGELOG.md +++ b/shared/yaml/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/shared/yaml/change-notes/released/1.0.17.md b/shared/yaml/change-notes/released/1.0.17.md new file mode 100644 index 00000000000..4180b2c20f2 --- /dev/null +++ b/shared/yaml/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/shared/yaml/codeql-pack.release.yml b/shared/yaml/codeql-pack.release.yml index 25c58f4113f..a88f1245e14 100644 --- a/shared/yaml/codeql-pack.release.yml +++ b/shared/yaml/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/shared/yaml/qlpack.yml b/shared/yaml/qlpack.yml index 5701451a376..2bc443d00f5 100644 --- a/shared/yaml/qlpack.yml +++ b/shared/yaml/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/yaml -version: 1.0.17-dev +version: 1.0.18-dev groups: shared library: true warnOnImplicitThis: true diff --git a/swift/ql/integration-tests/posix/hello-world/test.py b/swift/ql/integration-tests/posix/hello-world/test.py index c20dd20abd5..2b81f139383 100644 --- a/swift/ql/integration-tests/posix/hello-world/test.py +++ b/swift/ql/integration-tests/posix/hello-world/test.py @@ -1,6 +1,15 @@ +import pytest + import runs_on @runs_on.posix def test(codeql, swift): codeql.database.create(command="swift build") + +@runs_on.posix +@pytest.mark.ql_test(None) +def test_do_not_print_env(codeql, swift, check_env_not_dumped): + codeql.database.create(command="swift build", _env={ + "CODEQL_EXTRACTOR_SWIFT_LOG_LEVELS": "out:text:trace", + }) diff --git a/swift/ql/lib/CHANGELOG.md b/swift/ql/lib/CHANGELOG.md index d9a18cfabbf..c74bc7c586a 100644 --- a/swift/ql/lib/CHANGELOG.md +++ b/swift/ql/lib/CHANGELOG.md @@ -1,3 +1,11 @@ +## 4.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. + ## 4.0.0 ### Breaking Changes diff --git a/swift/ql/lib/change-notes/released/4.1.0.md b/swift/ql/lib/change-notes/released/4.1.0.md new file mode 100644 index 00000000000..1f497d8e465 --- /dev/null +++ b/swift/ql/lib/change-notes/released/4.1.0.md @@ -0,0 +1,7 @@ +## 4.1.0 + +### Deprecated APIs + +* The predicates `immediatelyControls` and `controls` on the `ConditionBlock` + class have been deprecated in favor of the newly added `dominatingEdge` + predicate. diff --git a/swift/ql/lib/codeql-pack.release.yml b/swift/ql/lib/codeql-pack.release.yml index 49fe3eef697..d5b1bf88d10 100644 --- a/swift/ql/lib/codeql-pack.release.yml +++ b/swift/ql/lib/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 4.0.0 +lastReleaseVersion: 4.1.0 diff --git a/swift/ql/lib/codeql/swift/controlflow/BasicBlocks.qll b/swift/ql/lib/codeql/swift/controlflow/BasicBlocks.qll index b0094045113..160903fd895 100644 --- a/swift/ql/lib/codeql/swift/controlflow/BasicBlocks.qll +++ b/swift/ql/lib/codeql/swift/controlflow/BasicBlocks.qll @@ -44,6 +44,10 @@ final class BasicBlock extends BasicBlocksImpl::BasicBlock { BasicBlock getImmediateDominator() { result = super.getImmediateDominator() } + predicate edgeDominates(BasicBlock dominated, SuccessorType s) { + super.edgeDominates(dominated, s) + } + predicate strictlyPostDominates(BasicBlock bb) { super.strictlyPostDominates(bb) } predicate postDominates(BasicBlock bb) { super.postDominates(bb) } @@ -84,21 +88,26 @@ class JoinBlockPredecessor extends BasicBlock, BasicBlocksImpl::JoinPredecessorB /** A basic block that terminates in a condition, splitting the subsequent control flow. */ final class ConditionBlock extends BasicBlock, BasicBlocksImpl::ConditionBasicBlock { /** + * DEPRECATED: Use `edgeDominates` instead. + * * Holds if basic block `succ` is immediately controlled by this basic * block with conditional value `s`. That is, `succ` is an immediate * successor of this block, and `succ` can only be reached from * the callable entry point by going via the `s` edge out of this basic block. */ - predicate immediatelyControls(BasicBlock succ, ConditionalSuccessor s) { - super.immediatelyControls(succ, s) + deprecated predicate immediatelyControls(BasicBlock succ, ConditionalSuccessor s) { + this.getASuccessor(s) = succ and + BasicBlocksImpl::dominatingEdge(this, succ) } /** + * DEPRECATED: Use `edgeDominates` instead. + * * Holds if basic block `controlled` is controlled by this basic block with * conditional value `s`. That is, `controlled` can only be reached from * the callable entry point by going via the `s` edge out of this basic block. */ - predicate controls(BasicBlock controlled, ConditionalSuccessor s) { - super.controls(controlled, s) + deprecated predicate controls(BasicBlock controlled, ConditionalSuccessor s) { + super.edgeDominates(controlled, s) } } diff --git a/swift/ql/lib/codeql/swift/dataflow/Ssa.qll b/swift/ql/lib/codeql/swift/dataflow/Ssa.qll index e8ad8cbdceb..94ba657e94d 100644 --- a/swift/ql/lib/codeql/swift/dataflow/Ssa.qll +++ b/swift/ql/lib/codeql/swift/dataflow/Ssa.qll @@ -21,8 +21,6 @@ module Ssa { BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() } - class ExitBasicBlock = BasicBlocks::ExitBasicBlock; - private newtype TSourceVariable = TNormalSourceVariable(VarDecl v) or TKeyPathSourceVariable(EntryNode entry) { entry.getScope() instanceof KeyPathExpr } diff --git a/swift/ql/lib/codeql/swift/security/PathInjectionExtensions.qll b/swift/ql/lib/codeql/swift/security/PathInjectionExtensions.qll index 541607aaa43..72608f50fe6 100644 --- a/swift/ql/lib/codeql/swift/security/PathInjectionExtensions.qll +++ b/swift/ql/lib/codeql/swift/security/PathInjectionExtensions.qll @@ -112,7 +112,7 @@ private class DefaultPathInjectionBarrier extends PathInjectionBarrier { bb.getANode().getNode().asAstNode().(IfStmt).getACondition() = getImmediateParent*(starts) and b.getValue() = true | - bb.controls(this.getCfgNode().getBasicBlock(), b) + bb.edgeDominates(this.getCfgNode().getBasicBlock(), b) ) ) } diff --git a/swift/ql/lib/qlpack.yml b/swift/ql/lib/qlpack.yml index 50c6a60e39e..665e977c878 100644 --- a/swift/ql/lib/qlpack.yml +++ b/swift/ql/lib/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-all -version: 4.0.1-dev +version: 4.1.1-dev groups: swift extractor: swift dbscheme: swift.dbscheme diff --git a/swift/ql/src/CHANGELOG.md b/swift/ql/src/CHANGELOG.md index 729baa54c4a..1c2d813af92 100644 --- a/swift/ql/src/CHANGELOG.md +++ b/swift/ql/src/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.17 + +No user-facing changes. + ## 1.0.16 No user-facing changes. diff --git a/swift/ql/src/change-notes/released/1.0.17.md b/swift/ql/src/change-notes/released/1.0.17.md new file mode 100644 index 00000000000..4180b2c20f2 --- /dev/null +++ b/swift/ql/src/change-notes/released/1.0.17.md @@ -0,0 +1,3 @@ +## 1.0.17 + +No user-facing changes. diff --git a/swift/ql/src/codeql-pack.release.yml b/swift/ql/src/codeql-pack.release.yml index 25c58f4113f..a88f1245e14 100644 --- a/swift/ql/src/codeql-pack.release.yml +++ b/swift/ql/src/codeql-pack.release.yml @@ -1,2 +1,2 @@ --- -lastReleaseVersion: 1.0.16 +lastReleaseVersion: 1.0.17 diff --git a/swift/ql/src/qlpack.yml b/swift/ql/src/qlpack.yml index 58a558cd2b9..2821816e7da 100644 --- a/swift/ql/src/qlpack.yml +++ b/swift/ql/src/qlpack.yml @@ -1,5 +1,5 @@ name: codeql/swift-queries -version: 1.0.17-dev +version: 1.0.18-dev groups: - swift - queries