mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
Merge branch 'main' into re-modeling
This commit is contained in:
4
cpp/ql/lib/change-notes/2023-11-08-strsafe-models.md
Normal file
4
cpp/ql/lib/change-notes/2023-11-08-strsafe-models.md
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: minorAnalysis
|
||||
---
|
||||
* Added models for the `sprintf` variants from the `StrSafe.h` header.
|
||||
@@ -632,20 +632,20 @@ predicate jumpStep(Node n1, Node n2) {
|
||||
v = globalUse.getVariable() and
|
||||
n1.(FinalGlobalValue).getGlobalUse() = globalUse
|
||||
|
|
||||
globalUse.getIndirectionIndex() = 1 and
|
||||
globalUse.getIndirection() = 1 and
|
||||
v = n2.asVariable()
|
||||
or
|
||||
v = n2.asIndirectVariable(globalUse.getIndirectionIndex())
|
||||
v = n2.asIndirectVariable(globalUse.getIndirection())
|
||||
)
|
||||
or
|
||||
exists(Ssa::GlobalDef globalDef |
|
||||
v = globalDef.getVariable() and
|
||||
n2.(InitialGlobalValue).getGlobalDef() = globalDef
|
||||
|
|
||||
globalDef.getIndirectionIndex() = 1 and
|
||||
globalDef.getIndirection() = 1 and
|
||||
v = n1.asVariable()
|
||||
or
|
||||
v = n1.asIndirectVariable(globalDef.getIndirectionIndex())
|
||||
v = n1.asIndirectVariable(globalDef.getIndirection())
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
@@ -113,22 +113,12 @@ private newtype TDefOrUseImpl =
|
||||
TGlobalUse(GlobalLikeVariable v, IRFunction f, int indirectionIndex) {
|
||||
// Represents a final "use" of a global variable to ensure that
|
||||
// the assignment to a global variable isn't ruled out as dead.
|
||||
exists(VariableAddressInstruction vai, int defIndex |
|
||||
vai.getEnclosingIRFunction() = f and
|
||||
vai.getAstVariable() = v and
|
||||
isDef(_, _, _, vai, _, defIndex) and
|
||||
indirectionIndex = [0 .. defIndex] + 1
|
||||
)
|
||||
isGlobalUse(v, f, _, indirectionIndex)
|
||||
} or
|
||||
TGlobalDefImpl(GlobalLikeVariable v, IRFunction f, int indirectionIndex) {
|
||||
// Represents the initial "definition" of a global variable when entering
|
||||
// a function body.
|
||||
exists(VariableAddressInstruction vai |
|
||||
vai.getEnclosingIRFunction() = f and
|
||||
vai.getAstVariable() = v and
|
||||
isUse(_, _, vai, _, indirectionIndex) and
|
||||
not isDef(_, _, vai.getAUse(), _, _, _)
|
||||
)
|
||||
isGlobalDefImpl(v, f, _, indirectionIndex)
|
||||
} or
|
||||
TIteratorDef(
|
||||
Operand iteratorDerefAddress, BaseSourceVariableInstruction container, int indirectionIndex
|
||||
@@ -150,6 +140,27 @@ private newtype TDefOrUseImpl =
|
||||
)
|
||||
}
|
||||
|
||||
private predicate isGlobalUse(
|
||||
GlobalLikeVariable v, IRFunction f, int indirection, int indirectionIndex
|
||||
) {
|
||||
exists(VariableAddressInstruction vai |
|
||||
vai.getEnclosingIRFunction() = f and
|
||||
vai.getAstVariable() = v and
|
||||
isDef(_, _, _, vai, indirection, indirectionIndex)
|
||||
)
|
||||
}
|
||||
|
||||
private predicate isGlobalDefImpl(
|
||||
GlobalLikeVariable v, IRFunction f, int indirection, int indirectionIndex
|
||||
) {
|
||||
exists(VariableAddressInstruction vai |
|
||||
vai.getEnclosingIRFunction() = f and
|
||||
vai.getAstVariable() = v and
|
||||
isUse(_, _, vai, indirection, indirectionIndex) and
|
||||
not isDef(_, _, _, vai, _, indirectionIndex)
|
||||
)
|
||||
}
|
||||
|
||||
private predicate unspecifiedTypeIsModifiableAt(Type unspecified, int indirectionIndex) {
|
||||
indirectionIndex = [1 .. getIndirectionForUnspecifiedType(unspecified).getNumberOfIndirections()] and
|
||||
exists(CppType cppType |
|
||||
@@ -438,7 +449,7 @@ class GlobalUse extends UseImpl, TGlobalUse {
|
||||
|
||||
override FinalGlobalValue getNode() { result.getGlobalUse() = this }
|
||||
|
||||
override int getIndirection() { result = ind + 1 }
|
||||
override int getIndirection() { isGlobalUse(global, f, result, ind) }
|
||||
|
||||
/** Gets the global variable associated with this use. */
|
||||
GlobalLikeVariable getVariable() { result = global }
|
||||
@@ -460,7 +471,9 @@ class GlobalUse extends UseImpl, TGlobalUse {
|
||||
)
|
||||
}
|
||||
|
||||
override SourceVariable getSourceVariable() { sourceVariableIsGlobal(result, global, f, ind) }
|
||||
override SourceVariable getSourceVariable() {
|
||||
sourceVariableIsGlobal(result, global, f, this.getIndirection())
|
||||
}
|
||||
|
||||
final override Cpp::Location getLocation() { result = f.getLocation() }
|
||||
|
||||
@@ -501,16 +514,18 @@ class GlobalDefImpl extends DefOrUseImpl, TGlobalDefImpl {
|
||||
|
||||
/** Gets the global variable associated with this definition. */
|
||||
override SourceVariable getSourceVariable() {
|
||||
sourceVariableIsGlobal(result, global, f, indirectionIndex)
|
||||
sourceVariableIsGlobal(result, global, f, this.getIndirection())
|
||||
}
|
||||
|
||||
int getIndirection() { result = indirectionIndex }
|
||||
|
||||
/**
|
||||
* Gets the type of this use after specifiers have been deeply stripped
|
||||
* and typedefs have been resolved.
|
||||
*/
|
||||
Type getUnspecifiedType() { result = global.getUnspecifiedType() }
|
||||
|
||||
override string toString() { result = "GlobalDef" }
|
||||
override string toString() { result = "Def of " + this.getSourceVariable() }
|
||||
|
||||
override Location getLocation() { result = f.getLocation() }
|
||||
|
||||
@@ -980,7 +995,7 @@ class GlobalDef extends TGlobalDef, SsaDefOrUse {
|
||||
final override Location getLocation() { result = global.getLocation() }
|
||||
|
||||
/** Gets a textual representation of this definition. */
|
||||
override string toString() { result = "GlobalDef" }
|
||||
override string toString() { result = global.toString() }
|
||||
|
||||
/**
|
||||
* Holds if this definition has index `index` in block `block`, and
|
||||
@@ -990,6 +1005,9 @@ class GlobalDef extends TGlobalDef, SsaDefOrUse {
|
||||
global.hasIndexInBlock(block, index, sv)
|
||||
}
|
||||
|
||||
/** Gets the indirection index of this definition. */
|
||||
int getIndirection() { result = global.getIndirection() }
|
||||
|
||||
/** Gets the indirection index of this definition. */
|
||||
int getIndirectionIndex() { result = global.getIndirectionIndex() }
|
||||
|
||||
|
||||
@@ -49,10 +49,11 @@ private class FgetsFunction extends DataFlowFunction, TaintFunction, ArrayFuncti
|
||||
}
|
||||
|
||||
override predicate hasRemoteFlowSource(FunctionOutput output, string description) {
|
||||
output.isParameterDeref(0) and
|
||||
description = "string read by " + this.getName()
|
||||
or
|
||||
output.isReturnValue() and
|
||||
(
|
||||
output.isParameterDeref(0) or
|
||||
output.isReturnValue() or
|
||||
output.isReturnValueDeref()
|
||||
) and
|
||||
description = "string read by " + this.getName()
|
||||
}
|
||||
|
||||
|
||||
@@ -147,19 +147,32 @@ private class SnprintfImpl extends Snprintf {
|
||||
|
||||
/**
|
||||
* The Microsoft `StringCchPrintf` function and variants.
|
||||
* See: https://learn.microsoft.com/en-us/windows/win32/api/strsafe/
|
||||
* and
|
||||
* https://learn.microsoft.com/en-us/previous-versions/windows/embedded/ms860435(v=msdn.10)
|
||||
*/
|
||||
private class StringCchPrintf extends FormattingFunction {
|
||||
StringCchPrintf() {
|
||||
this instanceof TopLevelFunction and
|
||||
this.hasGlobalName([
|
||||
"StringCchPrintf", "StringCchPrintfEx", "StringCchPrintf_l", "StringCchPrintf_lEx",
|
||||
"StringCbPrintf", "StringCbPrintfEx", "StringCbPrintf_l", "StringCbPrintf_lEx"
|
||||
]) and
|
||||
exists(string baseName |
|
||||
baseName in [
|
||||
"StringCchPrintf", //StringCchPrintf(pszDest, cchDest, pszFormat, ...)
|
||||
"StringCchPrintfEx", //StringCchPrintfEx(pszDest,cchDest, ppszDestEnd, pcchRemaining, dwFlags, pszFormat, ...)
|
||||
"StringCchPrintf_l", //StringCchPrintf_l(pszDest, cbDest, pszFormat, locale, ...)
|
||||
"StringCchPrintf_lEx", //StringCchPrintf_lEx(pszDest, cchDest, ppszDestEnd, pcchRemaining, dwFlags, pszFormat, locale, ...)
|
||||
"StringCbPrintf", //StringCbPrintf(pszDest, cbDest, pszFormat, ...)
|
||||
"StringCbPrintfEx", //StringCbPrintfEx(pszDest, cbDest, ppszDestEnd, pcbRemaining, dwFlags, pszFormat, ...)
|
||||
"StringCbPrintf_l", //StringCbPrintf_l(pszDest, cbDest, pszFormat, locale, ...)
|
||||
"StringCbPrintf_lEx" //StringCbPrintf_lEx(pszDest, cbDest, ppszDestEnd, pcbRemaining, dwFlags, pszFormat, locale, ...)
|
||||
]
|
||||
|
|
||||
this.hasGlobalName(baseName + ["", "A", "W"])
|
||||
) and
|
||||
not exists(this.getDefinition().getFile().getRelativePath())
|
||||
}
|
||||
|
||||
override int getFormatParameterIndex() {
|
||||
if this.getName().matches("%Ex") then result = 5 else result = 2
|
||||
if this.getName().matches("%Ex" + ["", "A", "W"]) then result = 5 else result = 2
|
||||
}
|
||||
|
||||
override int getOutputParameterIndex(boolean isStream) { result = 0 and isStream = false }
|
||||
|
||||
@@ -130,17 +130,7 @@ module SemanticExprConfig {
|
||||
|
||||
newtype TSsaVariable =
|
||||
TSsaInstruction(IR::Instruction instr) { instr.hasMemoryResult() } or
|
||||
TSsaOperand(IR::Operand op) { op.isDefinitionInexact() } or
|
||||
TSsaPointerArithmeticGuard(ValueNumber instr) {
|
||||
exists(Guard g, IR::Operand use |
|
||||
use = instr.getAUse() and use.getIRType() instanceof IR::IRAddressType
|
||||
|
|
||||
g.comparesLt(use, _, _, _, _) or
|
||||
g.comparesLt(_, use, _, _, _) or
|
||||
g.comparesEq(use, _, _, _, _) or
|
||||
g.comparesEq(_, use, _, _, _)
|
||||
)
|
||||
}
|
||||
TSsaOperand(IR::PhiInputOperand op) { op.isDefinitionInexact() }
|
||||
|
||||
class SsaVariable extends TSsaVariable {
|
||||
string toString() { none() }
|
||||
@@ -149,9 +139,7 @@ module SemanticExprConfig {
|
||||
|
||||
IR::Instruction asInstruction() { none() }
|
||||
|
||||
ValueNumber asPointerArithGuard() { none() }
|
||||
|
||||
IR::Operand asOperand() { none() }
|
||||
IR::PhiInputOperand asOperand() { none() }
|
||||
}
|
||||
|
||||
class SsaInstructionVariable extends SsaVariable, TSsaInstruction {
|
||||
@@ -166,20 +154,8 @@ module SemanticExprConfig {
|
||||
final override IR::Instruction asInstruction() { result = instr }
|
||||
}
|
||||
|
||||
class SsaPointerArithmeticGuard extends SsaVariable, TSsaPointerArithmeticGuard {
|
||||
ValueNumber vn;
|
||||
|
||||
SsaPointerArithmeticGuard() { this = TSsaPointerArithmeticGuard(vn) }
|
||||
|
||||
final override string toString() { result = vn.toString() }
|
||||
|
||||
final override Location getLocation() { result = vn.getLocation() }
|
||||
|
||||
final override ValueNumber asPointerArithGuard() { result = vn }
|
||||
}
|
||||
|
||||
class SsaOperand extends SsaVariable, TSsaOperand {
|
||||
IR::Operand op;
|
||||
IR::PhiInputOperand op;
|
||||
|
||||
SsaOperand() { this = TSsaOperand(op) }
|
||||
|
||||
@@ -187,7 +163,7 @@ module SemanticExprConfig {
|
||||
|
||||
final override Location getLocation() { result = op.getLocation() }
|
||||
|
||||
final override IR::Operand asOperand() { result = op }
|
||||
final override IR::PhiInputOperand asOperand() { result = op }
|
||||
}
|
||||
|
||||
predicate explicitUpdate(SsaVariable v, Expr sourceExpr) {
|
||||
@@ -210,97 +186,29 @@ module SemanticExprConfig {
|
||||
)
|
||||
}
|
||||
|
||||
Expr getAUse(SsaVariable v) {
|
||||
result.(IR::LoadInstruction).getSourceValue() = v.asInstruction()
|
||||
or
|
||||
result = v.asPointerArithGuard().getAnInstruction()
|
||||
}
|
||||
Expr getAUse(SsaVariable v) { result.(IR::LoadInstruction).getSourceValue() = v.asInstruction() }
|
||||
|
||||
SemType getSsaVariableType(SsaVariable v) {
|
||||
result = getSemanticType(v.asInstruction().getResultIRType())
|
||||
or
|
||||
result = getSemanticType(v.asOperand().getUse().getResultIRType())
|
||||
}
|
||||
|
||||
BasicBlock getSsaVariableBasicBlock(SsaVariable v) {
|
||||
result = v.asInstruction().getBlock()
|
||||
or
|
||||
result = v.asOperand().getUse().getBlock()
|
||||
result = v.asOperand().getAnyDef().getBlock()
|
||||
}
|
||||
|
||||
private newtype TReadPosition =
|
||||
TReadPositionBlock(IR::IRBlock block) or
|
||||
TReadPositionPhiInputEdge(IR::IRBlock pred, IR::IRBlock succ) {
|
||||
exists(IR::PhiInputOperand input |
|
||||
pred = input.getPredecessorBlock() and
|
||||
succ = input.getUse().getBlock()
|
||||
)
|
||||
}
|
||||
|
||||
class SsaReadPosition extends TReadPosition {
|
||||
string toString() { none() }
|
||||
|
||||
Location getLocation() { none() }
|
||||
|
||||
predicate hasRead(SsaVariable v) { none() }
|
||||
}
|
||||
|
||||
private class SsaReadPositionBlock extends SsaReadPosition, TReadPositionBlock {
|
||||
IR::IRBlock block;
|
||||
|
||||
SsaReadPositionBlock() { this = TReadPositionBlock(block) }
|
||||
|
||||
final override string toString() { result = block.toString() }
|
||||
|
||||
final override Location getLocation() { result = block.getLocation() }
|
||||
|
||||
final override predicate hasRead(SsaVariable v) {
|
||||
exists(IR::Operand operand |
|
||||
operand.getDef() = v.asInstruction() or
|
||||
operand.getDef() = v.asPointerArithGuard().getAnInstruction()
|
||||
|
|
||||
not operand instanceof IR::PhiInputOperand and
|
||||
operand.getUse().getBlock() = block
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
private class SsaReadPositionPhiInputEdge extends SsaReadPosition, TReadPositionPhiInputEdge {
|
||||
IR::IRBlock pred;
|
||||
IR::IRBlock succ;
|
||||
|
||||
SsaReadPositionPhiInputEdge() { this = TReadPositionPhiInputEdge(pred, succ) }
|
||||
|
||||
final override string toString() { result = pred.toString() + "->" + succ.toString() }
|
||||
|
||||
final override Location getLocation() { result = succ.getLocation() }
|
||||
|
||||
final override predicate hasRead(SsaVariable v) {
|
||||
exists(IR::PhiInputOperand operand |
|
||||
operand.getDef() = v.asInstruction() or
|
||||
operand.getDef() = v.asPointerArithGuard().getAnInstruction()
|
||||
|
|
||||
operand.getPredecessorBlock() = pred and
|
||||
operand.getUse().getBlock() = succ
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
predicate hasReadOfSsaVariable(SsaReadPosition pos, SsaVariable v) { pos.hasRead(v) }
|
||||
|
||||
predicate readBlock(SsaReadPosition pos, BasicBlock block) { pos = TReadPositionBlock(block) }
|
||||
|
||||
predicate phiInputEdge(SsaReadPosition pos, BasicBlock origBlock, BasicBlock phiBlock) {
|
||||
pos = TReadPositionPhiInputEdge(origBlock, phiBlock)
|
||||
}
|
||||
|
||||
predicate phiInput(SsaReadPosition pos, SsaVariable phi, SsaVariable input) {
|
||||
/** Holds if `inp` is an input to the phi node along the edge originating in `bb`. */
|
||||
predicate phiInputFromBlock(SsaVariable phi, SsaVariable inp, BasicBlock bb) {
|
||||
exists(IR::PhiInputOperand operand |
|
||||
pos = TReadPositionPhiInputEdge(operand.getPredecessorBlock(), operand.getUse().getBlock())
|
||||
|
|
||||
bb = operand.getPredecessorBlock() and
|
||||
phi.asInstruction() = operand.getUse() and
|
||||
(
|
||||
input.asInstruction() = operand.getDef()
|
||||
inp.asInstruction() = operand.getDef()
|
||||
or
|
||||
input.asOperand() = operand
|
||||
inp.asOperand() = operand
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
@@ -31,35 +31,8 @@ class SemSsaPhiNode extends SemSsaVariable {
|
||||
SemSsaPhiNode() { Specific::phi(this) }
|
||||
|
||||
final SemSsaVariable getAPhiInput() { result = Specific::getAPhiInput(this) }
|
||||
}
|
||||
|
||||
class SemSsaReadPosition instanceof Specific::SsaReadPosition {
|
||||
final string toString() { result = super.toString() }
|
||||
|
||||
final Specific::Location getLocation() { result = super.getLocation() }
|
||||
|
||||
final predicate hasReadOfVar(SemSsaVariable var) { Specific::hasReadOfSsaVariable(this, var) }
|
||||
}
|
||||
|
||||
class SemSsaReadPositionPhiInputEdge extends SemSsaReadPosition {
|
||||
SemBasicBlock origBlock;
|
||||
SemBasicBlock phiBlock;
|
||||
|
||||
SemSsaReadPositionPhiInputEdge() { Specific::phiInputEdge(this, origBlock, phiBlock) }
|
||||
|
||||
predicate phiInput(SemSsaPhiNode phi, SemSsaVariable inp) { Specific::phiInput(this, phi, inp) }
|
||||
|
||||
SemBasicBlock getOrigBlock() { result = origBlock }
|
||||
|
||||
SemBasicBlock getPhiBlock() { result = phiBlock }
|
||||
}
|
||||
|
||||
class SemSsaReadPositionBlock extends SemSsaReadPosition {
|
||||
SemBasicBlock block;
|
||||
|
||||
SemSsaReadPositionBlock() { Specific::readBlock(this, block) }
|
||||
|
||||
SemBasicBlock getBlock() { result = block }
|
||||
|
||||
SemExpr getAnExpr() { result = this.getBlock().getAnExpr() }
|
||||
|
||||
final predicate hasInputFromBlock(SemSsaVariable inp, SemBasicBlock bb) {
|
||||
Specific::phiInputFromBlock(this, inp, bb)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -74,6 +74,8 @@ module Sem implements Semantic {
|
||||
|
||||
BasicBlock getABasicBlockSuccessor(BasicBlock bb) { result = bb.getASuccessor() }
|
||||
|
||||
int getBlockId1(BasicBlock bb) { result = bb.getUniqueId() }
|
||||
|
||||
class Guard = SemGuard;
|
||||
|
||||
predicate implies_v2 = semImplies_v2/4;
|
||||
@@ -92,12 +94,6 @@ module Sem implements Semantic {
|
||||
|
||||
class SsaExplicitUpdate = SemSsaExplicitUpdate;
|
||||
|
||||
class SsaReadPosition = SemSsaReadPosition;
|
||||
|
||||
class SsaReadPositionPhiInputEdge = SemSsaReadPositionPhiInputEdge;
|
||||
|
||||
class SsaReadPositionBlock = SemSsaReadPositionBlock;
|
||||
|
||||
predicate conversionCannotOverflow(Type fromType, Type toType) {
|
||||
SemanticType::conversionCannotOverflow(fromType, toType)
|
||||
}
|
||||
|
||||
@@ -133,33 +133,4 @@ module RangeUtil<DeltaSig D, LangSig<Sem, D> Lang> implements UtilSig<Sem, D> {
|
||||
or
|
||||
not exists(Lang::getAlternateTypeForSsaVariable(var)) and result = var.getType()
|
||||
}
|
||||
|
||||
import Ranking
|
||||
}
|
||||
|
||||
import Ranking
|
||||
|
||||
module Ranking {
|
||||
/**
|
||||
* Holds if `rix` is the number of input edges to `phi`.
|
||||
*/
|
||||
predicate maxPhiInputRank(SemSsaPhiNode phi, int rix) {
|
||||
rix = max(int r | rankedPhiInput(phi, _, _, r))
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if `inp` is an input to `phi` along `edge` and this input has index `r`
|
||||
* in an arbitrary 1-based numbering of the input edges to `phi`.
|
||||
*/
|
||||
predicate rankedPhiInput(
|
||||
SemSsaPhiNode phi, SemSsaVariable inp, SemSsaReadPositionPhiInputEdge edge, int r
|
||||
) {
|
||||
edge.phiInput(phi, inp) and
|
||||
edge =
|
||||
rank[r](SemSsaReadPositionPhiInputEdge e |
|
||||
e.phiInput(phi, _)
|
||||
|
|
||||
e order by e.getOrigBlock().getUniqueId()
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
/** An SSA Phi definition, whose sign is the union of the signs of its inputs. */
|
||||
private class PhiSignDef extends FlowSignDef instanceof SemSsaPhiNode {
|
||||
final override Sign getSign() {
|
||||
exists(SemSsaVariable inp, SemSsaReadPositionPhiInputEdge edge |
|
||||
exists(SemSsaVariable inp, SsaReadPositionPhiInputEdge edge |
|
||||
edge.phiInput(this, inp) and
|
||||
result = semSsaSign(inp, edge)
|
||||
)
|
||||
@@ -170,11 +170,11 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
override Sign getSignRestriction() {
|
||||
// Propagate via SSA
|
||||
// Propagate the sign from the def of `v`, incorporating any inference from guards.
|
||||
result = semSsaSign(v, any(SemSsaReadPositionBlock bb | bb.getAnExpr() = this))
|
||||
result = semSsaSign(v, any(SsaReadPositionBlock bb | bb.getBlock().getAnExpr() = this))
|
||||
or
|
||||
// No block for this read. Just use the sign of the def.
|
||||
// REVIEW: How can this happen?
|
||||
not exists(SemSsaReadPositionBlock bb | bb.getAnExpr() = this) and
|
||||
not exists(SsaReadPositionBlock bb | bb.getBlock().getAnExpr() = this) and
|
||||
result = semSsaDefSign(v)
|
||||
}
|
||||
}
|
||||
@@ -290,7 +290,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* to only include bounds for which we might determine a sign.
|
||||
*/
|
||||
private predicate lowerBound(
|
||||
SemExpr lowerbound, SemSsaVariable v, SemSsaReadPosition pos, boolean isStrict
|
||||
SemExpr lowerbound, SemSsaVariable v, SsaReadPosition pos, boolean isStrict
|
||||
) {
|
||||
exists(boolean testIsTrue, SemRelationalExpr comp |
|
||||
pos.hasReadOfVar(v) and
|
||||
@@ -314,7 +314,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* to only include bounds for which we might determine a sign.
|
||||
*/
|
||||
private predicate upperBound(
|
||||
SemExpr upperbound, SemSsaVariable v, SemSsaReadPosition pos, boolean isStrict
|
||||
SemExpr upperbound, SemSsaVariable v, SsaReadPosition pos, boolean isStrict
|
||||
) {
|
||||
exists(boolean testIsTrue, SemRelationalExpr comp |
|
||||
pos.hasReadOfVar(v) and
|
||||
@@ -340,7 +340,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* - `isEq = true` : `v = eqbound`
|
||||
* - `isEq = false` : `v != eqbound`
|
||||
*/
|
||||
private predicate eqBound(SemExpr eqbound, SemSsaVariable v, SemSsaReadPosition pos, boolean isEq) {
|
||||
private predicate eqBound(SemExpr eqbound, SemSsaVariable v, SsaReadPosition pos, boolean isEq) {
|
||||
exists(SemGuard guard, boolean testIsTrue, boolean polarity, SemExpr e |
|
||||
pos.hasReadOfVar(pragma[only_bind_into](v)) and
|
||||
guardControlsSsaRead(guard, pragma[only_bind_into](pos), testIsTrue) and
|
||||
@@ -355,7 +355,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* Holds if `bound` is a bound for `v` at `pos` that needs to be positive in
|
||||
* order for `v` to be positive.
|
||||
*/
|
||||
private predicate posBound(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate posBound(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
upperBound(bound, v, pos, _) or
|
||||
eqBound(bound, v, pos, true)
|
||||
}
|
||||
@@ -364,7 +364,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* Holds if `bound` is a bound for `v` at `pos` that needs to be negative in
|
||||
* order for `v` to be negative.
|
||||
*/
|
||||
private predicate negBound(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate negBound(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
lowerBound(bound, v, pos, _) or
|
||||
eqBound(bound, v, pos, true)
|
||||
}
|
||||
@@ -373,24 +373,24 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* Holds if `bound` is a bound for `v` at `pos` that can restrict whether `v`
|
||||
* can be zero.
|
||||
*/
|
||||
private predicate zeroBound(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate zeroBound(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
lowerBound(bound, v, pos, _) or
|
||||
upperBound(bound, v, pos, _) or
|
||||
eqBound(bound, v, pos, _)
|
||||
}
|
||||
|
||||
/** Holds if `bound` allows `v` to be positive at `pos`. */
|
||||
private predicate posBoundOk(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate posBoundOk(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
posBound(bound, v, pos) and TPos() = semExprSign(bound)
|
||||
}
|
||||
|
||||
/** Holds if `bound` allows `v` to be negative at `pos`. */
|
||||
private predicate negBoundOk(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate negBoundOk(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
negBound(bound, v, pos) and TNeg() = semExprSign(bound)
|
||||
}
|
||||
|
||||
/** Holds if `bound` allows `v` to be zero at `pos`. */
|
||||
private predicate zeroBoundOk(SemExpr bound, SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private predicate zeroBoundOk(SemExpr bound, SemSsaVariable v, SsaReadPosition pos) {
|
||||
lowerBound(bound, v, pos, _) and TNeg() = semExprSign(bound)
|
||||
or
|
||||
lowerBound(bound, v, pos, false) and TZero() = semExprSign(bound)
|
||||
@@ -408,7 +408,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* Holds if there is a bound that might restrict whether `v` has the sign `s`
|
||||
* at `pos`.
|
||||
*/
|
||||
private predicate hasGuard(SemSsaVariable v, SemSsaReadPosition pos, Sign s) {
|
||||
private predicate hasGuard(SemSsaVariable v, SsaReadPosition pos, Sign s) {
|
||||
s = TPos() and posBound(_, v, pos)
|
||||
or
|
||||
s = TNeg() and negBound(_, v, pos)
|
||||
@@ -421,7 +421,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* might be ruled out by a guard.
|
||||
*/
|
||||
pragma[noinline]
|
||||
private Sign guardedSsaSign(SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private Sign guardedSsaSign(SemSsaVariable v, SsaReadPosition pos) {
|
||||
result = semSsaDefSign(v) and
|
||||
pos.hasReadOfVar(v) and
|
||||
hasGuard(v, pos, result)
|
||||
@@ -432,7 +432,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* can rule it out.
|
||||
*/
|
||||
pragma[noinline]
|
||||
private Sign unguardedSsaSign(SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private Sign unguardedSsaSign(SemSsaVariable v, SsaReadPosition pos) {
|
||||
result = semSsaDefSign(v) and
|
||||
pos.hasReadOfVar(v) and
|
||||
not hasGuard(v, pos, result)
|
||||
@@ -443,7 +443,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
* ruled out the sign but does not.
|
||||
* This does not check that the definition of `v` also allows the sign.
|
||||
*/
|
||||
private Sign guardedSsaSignOk(SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private Sign guardedSsaSignOk(SemSsaVariable v, SsaReadPosition pos) {
|
||||
result = TPos() and
|
||||
forex(SemExpr bound | posBound(bound, v, pos) | posBoundOk(bound, v, pos))
|
||||
or
|
||||
@@ -455,7 +455,7 @@ module SignAnalysis<DeltaSig D, UtilSig<Sem, D> Utils> {
|
||||
}
|
||||
|
||||
/** Gets a possible sign for `v` at `pos`. */
|
||||
private Sign semSsaSign(SemSsaVariable v, SemSsaReadPosition pos) {
|
||||
private Sign semSsaSign(SemSsaVariable v, SsaReadPosition pos) {
|
||||
result = unguardedSsaSign(v, pos)
|
||||
or
|
||||
result = guardedSsaSign(v, pos) and
|
||||
|
||||
@@ -15,9 +15,10 @@
|
||||
*/
|
||||
|
||||
import semmle.code.cpp.security.BufferWrite
|
||||
import semmle.code.cpp.security.Security
|
||||
import semmle.code.cpp.ir.dataflow.internal.DefaultTaintTrackingImpl
|
||||
import TaintedWithPath
|
||||
import semmle.code.cpp.security.FlowSources as FS
|
||||
import semmle.code.cpp.dataflow.new.TaintTracking
|
||||
import semmle.code.cpp.controlflow.IRGuards
|
||||
import Flow::PathGraph
|
||||
|
||||
/*
|
||||
* --- Summary of CWE-120 alerts ---
|
||||
@@ -47,15 +48,6 @@ predicate isUnboundedWrite(BufferWrite bw) {
|
||||
not exists(bw.getMaxData(_)) // and we can't deduce an upper bound to the amount copied
|
||||
}
|
||||
|
||||
/*
|
||||
* predicate isMaybeUnboundedWrite(BufferWrite bw)
|
||||
* {
|
||||
* not bw.hasExplicitLimit() // has no explicit size limit
|
||||
* and exists(bw.getMaxData()) // and we can deduce an upper bound to the amount copied
|
||||
* and (not exists(getBufferSize(bw.getDest(), _))) // but we can't work out the size of the destination to be sure
|
||||
* }
|
||||
*/
|
||||
|
||||
/**
|
||||
* Holds if `e` is a source buffer going into an unbounded write `bw` or a
|
||||
* qualifier of (a qualifier of ...) such a source.
|
||||
@@ -66,19 +58,43 @@ predicate unboundedWriteSource(Expr e, BufferWrite bw) {
|
||||
exists(FieldAccess fa | unboundedWriteSource(fa, bw) and e = fa.getQualifier())
|
||||
}
|
||||
|
||||
/*
|
||||
* --- user input reach ---
|
||||
*/
|
||||
predicate isSource(FS::FlowSource source, string sourceType) { source.getSourceType() = sourceType }
|
||||
|
||||
class Configuration extends TaintTrackingConfiguration {
|
||||
override predicate isSink(Element tainted) { unboundedWriteSource(tainted, _) }
|
||||
|
||||
override predicate taintThroughGlobals() { any() }
|
||||
predicate isSink(DataFlow::Node sink, BufferWrite bw) {
|
||||
unboundedWriteSource(sink.asIndirectExpr(), bw)
|
||||
or
|
||||
// `gets` and `scanf` reads from stdin so there's no real input.
|
||||
// The `BufferWrite` library models this as the call itself being
|
||||
// the source. In this case we mark the output argument as being
|
||||
// the sink so that we report a path where source = sink (because
|
||||
// the same output argument is also included in `isSource`).
|
||||
bw.getASource() = bw and
|
||||
unboundedWriteSource(sink.asDefiningArgument(), bw)
|
||||
}
|
||||
|
||||
/*
|
||||
* --- put it together ---
|
||||
*/
|
||||
predicate lessThanOrEqual(IRGuardCondition g, Expr e, boolean branch) {
|
||||
exists(Operand left |
|
||||
g.comparesLt(left, _, _, true, branch) or
|
||||
g.comparesEq(left, _, _, true, branch)
|
||||
|
|
||||
left.getDef().getUnconvertedResultExpression() = e
|
||||
)
|
||||
}
|
||||
|
||||
module Config implements DataFlow::ConfigSig {
|
||||
predicate isSource(DataFlow::Node source) { isSource(source, _) }
|
||||
|
||||
predicate isSink(DataFlow::Node sink) { isSink(sink, _) }
|
||||
|
||||
predicate isBarrierOut(DataFlow::Node node) { isSink(node) }
|
||||
|
||||
predicate isBarrier(DataFlow::Node node) {
|
||||
// Block flow if the node is guarded by any <, <= or = operations.
|
||||
node = DataFlow::BarrierGuard<lessThanOrEqual/3>::getABarrierNode()
|
||||
}
|
||||
}
|
||||
|
||||
module Flow = TaintTracking::Global<Config>;
|
||||
|
||||
/*
|
||||
* An unbounded write is, for example `strcpy(..., tainted)`. We're looking
|
||||
@@ -87,17 +103,20 @@ class Configuration extends TaintTrackingConfiguration {
|
||||
*
|
||||
* In the case of `gets` and `scanf`, where the source buffer is implicit, the
|
||||
* `BufferWrite` library reports the source buffer to be the same as the
|
||||
* destination buffer. Since those destination-buffer arguments are also
|
||||
* modeled in the taint-tracking library as being _sources_ of taint, they are
|
||||
* in practice reported as being tainted because the `security.TaintTracking`
|
||||
* library does not distinguish between taint going into an argument and out of
|
||||
* an argument. Thus, we get the desired alerts.
|
||||
* destination buffer. So to report an alert on a pattern like:
|
||||
* ```
|
||||
* char s[32];
|
||||
* gets(s);
|
||||
* ```
|
||||
* we define the sink as the node corresponding to the output argument of `gets`.
|
||||
* This gives us a path where the source is equal to the sink.
|
||||
*/
|
||||
|
||||
from BufferWrite bw, Expr inputSource, Expr tainted, PathNode sourceNode, PathNode sinkNode
|
||||
from BufferWrite bw, Flow::PathNode source, Flow::PathNode sink, string sourceType
|
||||
where
|
||||
taintedWithPath(inputSource, tainted, sourceNode, sinkNode) and
|
||||
unboundedWriteSource(tainted, bw)
|
||||
select bw, sourceNode, sinkNode,
|
||||
"This '" + bw.getBWDesc() + "' with input from $@ may overflow the destination.", inputSource,
|
||||
inputSource.toString()
|
||||
Flow::flowPath(source, sink) and
|
||||
isSource(source.getNode(), sourceType) and
|
||||
isSink(sink.getNode(), bw)
|
||||
select bw, source, sink,
|
||||
"This '" + bw.getBWDesc() + "' with input from $@ may overflow the destination.",
|
||||
source.getNode(), sourceType
|
||||
|
||||
@@ -23,6 +23,7 @@ argHasPostUpdate
|
||||
| lambdas.cpp:38:2:38:2 | d | ArgumentNode is missing PostUpdateNode. |
|
||||
| lambdas.cpp:45:2:45:2 | e | ArgumentNode is missing PostUpdateNode. |
|
||||
| test.cpp:67:29:67:35 | source1 | ArgumentNode is missing PostUpdateNode. |
|
||||
| test.cpp:813:19:813:35 | * ... | ArgumentNode is missing PostUpdateNode. |
|
||||
postWithInFlow
|
||||
| BarrierGuard.cpp:49:6:49:6 | x [post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| BarrierGuard.cpp:60:7:60:7 | x [post update] | PostUpdateNode should not be the target of local flow. |
|
||||
@@ -136,6 +137,9 @@ postWithInFlow
|
||||
| test.cpp:728:3:728:4 | * ... [post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| test.cpp:728:4:728:4 | p [inner post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| test.cpp:734:41:734:41 | x [inner post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| test.cpp:808:5:808:21 | * ... [post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| test.cpp:808:6:808:21 | global_indirect1 [inner post update] | PostUpdateNode should not be the target of local flow. |
|
||||
| test.cpp:832:5:832:17 | global_direct [post update] | PostUpdateNode should not be the target of local flow. |
|
||||
viableImplInCallContextTooLarge
|
||||
uniqueParameterNodeAtPosition
|
||||
uniqueParameterNodePosition
|
||||
|
||||
@@ -796,4 +796,44 @@ void test() {
|
||||
MyStruct a;
|
||||
intPointerSource(a.content, a.content);
|
||||
indirect_sink(a.content); // $ ast ir
|
||||
}
|
||||
|
||||
namespace MoreGlobalTests {
|
||||
int **global_indirect1;
|
||||
int **global_indirect2;
|
||||
int **global_direct;
|
||||
|
||||
void set_indirect1()
|
||||
{
|
||||
*global_indirect1 = indirect_source();
|
||||
}
|
||||
|
||||
void read_indirect1() {
|
||||
sink(global_indirect1); // clean
|
||||
indirect_sink(*global_indirect1); // $ ir MISSING: ast
|
||||
}
|
||||
|
||||
void set_indirect2()
|
||||
{
|
||||
**global_indirect2 = source();
|
||||
}
|
||||
|
||||
void read_indirect2() {
|
||||
sink(global_indirect2); // clean
|
||||
sink(**global_indirect2); // $ ir MISSING: ast
|
||||
}
|
||||
|
||||
// overload source with a boolean parameter so
|
||||
// that we can define a variant that return an int**.
|
||||
int** source(bool);
|
||||
|
||||
void set_direct()
|
||||
{
|
||||
global_direct = source(true);
|
||||
}
|
||||
|
||||
void read_direct() {
|
||||
sink(global_direct); // $ ir MISSING: ast
|
||||
indirect_sink(global_direct); // clean
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,12 @@ uniqueType
|
||||
uniqueNodeLocation
|
||||
missingLocation
|
||||
uniqueNodeToString
|
||||
| cpp11.cpp:50:15:50:16 | (no string representation) | Node should have one toString but has 0. |
|
||||
| builtin.c:5:5:5:11 | (no string representation) | Node should have one toString but has 0. |
|
||||
| misc.c:227:7:227:28 | (no string representation) | Node should have one toString but has 0. |
|
||||
| static_init_templates.cpp:80:18:80:23 | (no string representation) | Node should have one toString but has 0. |
|
||||
| static_init_templates.cpp:80:18:80:23 | (no string representation) | Node should have one toString but has 0. |
|
||||
| static_init_templates.cpp:89:18:89:23 | (no string representation) | Node should have one toString but has 0. |
|
||||
| static_init_templates.cpp:89:18:89:23 | (no string representation) | Node should have one toString but has 0. |
|
||||
parameterCallable
|
||||
localFlowIsLocal
|
||||
readStepIsLocal
|
||||
|
||||
@@ -52,6 +52,10 @@ edges
|
||||
| test.cpp:106:17:106:22 | buffer | test.cpp:107:15:107:20 | buffer |
|
||||
| test.cpp:106:17:106:22 | recv output argument | test.cpp:107:15:107:20 | buffer |
|
||||
| test.cpp:106:17:106:22 | recv output argument | test.cpp:107:15:107:20 | buffer |
|
||||
| test.cpp:113:8:113:12 | call to fgets | test.cpp:114:9:114:11 | ptr |
|
||||
| test.cpp:113:8:113:12 | call to fgets | test.cpp:114:9:114:11 | ptr |
|
||||
| test.cpp:113:8:113:12 | call to fgets | test.cpp:114:9:114:11 | ptr |
|
||||
| test.cpp:113:8:113:12 | call to fgets | test.cpp:114:9:114:11 | ptr |
|
||||
subpaths
|
||||
nodes
|
||||
| test.cpp:24:30:24:36 | command | semmle.label | command |
|
||||
@@ -91,6 +95,10 @@ nodes
|
||||
| test.cpp:106:17:106:22 | recv output argument | semmle.label | recv output argument |
|
||||
| test.cpp:107:15:107:20 | buffer | semmle.label | buffer |
|
||||
| test.cpp:107:15:107:20 | buffer | semmle.label | buffer |
|
||||
| test.cpp:113:8:113:12 | call to fgets | semmle.label | call to fgets |
|
||||
| test.cpp:113:8:113:12 | call to fgets | semmle.label | call to fgets |
|
||||
| test.cpp:114:9:114:11 | ptr | semmle.label | ptr |
|
||||
| test.cpp:114:9:114:11 | ptr | semmle.label | ptr |
|
||||
#select
|
||||
| test.cpp:26:10:26:16 | command | test.cpp:42:18:42:23 | call to getenv | test.cpp:26:10:26:16 | command | The value of this argument may come from $@ and is being passed to system. | test.cpp:42:18:42:23 | call to getenv | call to getenv |
|
||||
| test.cpp:31:10:31:16 | command | test.cpp:43:18:43:23 | call to getenv | test.cpp:31:10:31:16 | command | The value of this argument may come from $@ and is being passed to system. | test.cpp:43:18:43:23 | call to getenv | call to getenv |
|
||||
@@ -101,3 +109,4 @@ nodes
|
||||
| test.cpp:78:10:78:15 | buffer | test.cpp:76:12:76:17 | buffer | test.cpp:78:10:78:15 | buffer | The value of this argument may come from $@ and is being passed to system. | test.cpp:76:12:76:17 | buffer | buffer |
|
||||
| test.cpp:99:15:99:20 | buffer | test.cpp:98:17:98:22 | buffer | test.cpp:99:15:99:20 | buffer | The value of this argument may come from $@ and is being passed to LoadLibrary. | test.cpp:98:17:98:22 | buffer | buffer |
|
||||
| test.cpp:107:15:107:20 | buffer | test.cpp:106:17:106:22 | buffer | test.cpp:107:15:107:20 | buffer | The value of this argument may come from $@ and is being passed to LoadLibrary. | test.cpp:106:17:106:22 | buffer | buffer |
|
||||
| test.cpp:114:9:114:11 | ptr | test.cpp:113:8:113:12 | call to fgets | test.cpp:114:9:114:11 | ptr | The value of this argument may come from $@ and is being passed to system. | test.cpp:113:8:113:12 | call to fgets | call to fgets |
|
||||
|
||||
@@ -107,3 +107,9 @@ void testAcceptRecv(int socket1, int socket2)
|
||||
LoadLibrary(buffer); // BAD: using data from recv
|
||||
}
|
||||
}
|
||||
|
||||
void argumentUse(char *ptr, FILE *stream) {
|
||||
char buffer[80];
|
||||
ptr = fgets(buffer, sizeof(buffer), stream);
|
||||
system(ptr); // BAD
|
||||
}
|
||||
|
||||
@@ -1,37 +1,18 @@
|
||||
edges
|
||||
| tests.c:28:22:28:25 | argv | tests.c:28:22:28:28 | access to array |
|
||||
| tests.c:28:22:28:25 | argv | tests.c:28:22:28:28 | access to array |
|
||||
| tests.c:28:22:28:25 | argv | tests.c:28:22:28:28 | access to array |
|
||||
| tests.c:28:22:28:25 | argv | tests.c:28:22:28:28 | access to array |
|
||||
| tests.c:29:28:29:31 | argv | tests.c:29:28:29:34 | access to array |
|
||||
| tests.c:29:28:29:31 | argv | tests.c:29:28:29:34 | access to array |
|
||||
| tests.c:29:28:29:31 | argv | tests.c:29:28:29:34 | access to array |
|
||||
| tests.c:29:28:29:31 | argv | tests.c:29:28:29:34 | access to array |
|
||||
| tests.c:34:10:34:13 | argv | tests.c:34:10:34:16 | access to array |
|
||||
| tests.c:34:10:34:13 | argv | tests.c:34:10:34:16 | access to array |
|
||||
| tests.c:34:10:34:13 | argv | tests.c:34:10:34:16 | access to array |
|
||||
| tests.c:34:10:34:13 | argv | tests.c:34:10:34:16 | access to array |
|
||||
subpaths
|
||||
| tests.c:16:26:16:29 | argv indirection | tests.c:28:22:28:28 | access to array indirection |
|
||||
| tests.c:16:26:16:29 | argv indirection | tests.c:29:28:29:34 | access to array indirection |
|
||||
| tests.c:16:26:16:29 | argv indirection | tests.c:34:10:34:16 | access to array indirection |
|
||||
nodes
|
||||
| tests.c:28:22:28:25 | argv | semmle.label | argv |
|
||||
| tests.c:28:22:28:25 | argv | semmle.label | argv |
|
||||
| tests.c:28:22:28:28 | access to array | semmle.label | access to array |
|
||||
| tests.c:28:22:28:28 | access to array | semmle.label | access to array |
|
||||
| tests.c:29:28:29:31 | argv | semmle.label | argv |
|
||||
| tests.c:29:28:29:31 | argv | semmle.label | argv |
|
||||
| tests.c:29:28:29:34 | access to array | semmle.label | access to array |
|
||||
| tests.c:29:28:29:34 | access to array | semmle.label | access to array |
|
||||
| tests.c:31:15:31:23 | buffer100 | semmle.label | buffer100 |
|
||||
| tests.c:31:15:31:23 | buffer100 | semmle.label | buffer100 |
|
||||
| tests.c:33:21:33:29 | buffer100 | semmle.label | buffer100 |
|
||||
| tests.c:33:21:33:29 | buffer100 | semmle.label | buffer100 |
|
||||
| tests.c:34:10:34:13 | argv | semmle.label | argv |
|
||||
| tests.c:34:10:34:13 | argv | semmle.label | argv |
|
||||
| tests.c:34:10:34:16 | access to array | semmle.label | access to array |
|
||||
| tests.c:34:10:34:16 | access to array | semmle.label | access to array |
|
||||
| tests.c:16:26:16:29 | argv indirection | semmle.label | argv indirection |
|
||||
| tests.c:28:22:28:28 | access to array indirection | semmle.label | access to array indirection |
|
||||
| tests.c:29:28:29:34 | access to array indirection | semmle.label | access to array indirection |
|
||||
| tests.c:31:15:31:23 | scanf output argument | semmle.label | scanf output argument |
|
||||
| tests.c:33:21:33:29 | scanf output argument | semmle.label | scanf output argument |
|
||||
| tests.c:34:10:34:16 | access to array indirection | semmle.label | access to array indirection |
|
||||
subpaths
|
||||
#select
|
||||
| tests.c:28:3:28:9 | call to sprintf | tests.c:28:22:28:25 | argv | tests.c:28:22:28:28 | access to array | This 'call to sprintf' with input from $@ may overflow the destination. | tests.c:28:22:28:25 | argv | argv |
|
||||
| tests.c:29:3:29:9 | call to sprintf | tests.c:29:28:29:31 | argv | tests.c:29:28:29:34 | access to array | This 'call to sprintf' with input from $@ may overflow the destination. | tests.c:29:28:29:31 | argv | argv |
|
||||
| tests.c:31:15:31:23 | buffer100 | tests.c:31:15:31:23 | buffer100 | tests.c:31:15:31:23 | buffer100 | This 'scanf string argument' with input from $@ may overflow the destination. | tests.c:31:15:31:23 | buffer100 | buffer100 |
|
||||
| tests.c:33:21:33:29 | buffer100 | tests.c:33:21:33:29 | buffer100 | tests.c:33:21:33:29 | buffer100 | This 'scanf string argument' with input from $@ may overflow the destination. | tests.c:33:21:33:29 | buffer100 | buffer100 |
|
||||
| tests.c:34:25:34:33 | buffer100 | tests.c:34:10:34:13 | argv | tests.c:34:10:34:16 | access to array | This 'sscanf string argument' with input from $@ may overflow the destination. | tests.c:34:10:34:13 | argv | argv |
|
||||
| tests.c:28:3:28:9 | call to sprintf | tests.c:16:26:16:29 | argv indirection | tests.c:28:22:28:28 | access to array indirection | This 'call to sprintf' with input from $@ may overflow the destination. | tests.c:16:26:16:29 | argv indirection | a command-line argument |
|
||||
| tests.c:29:3:29:9 | call to sprintf | tests.c:16:26:16:29 | argv indirection | tests.c:29:28:29:34 | access to array indirection | This 'call to sprintf' with input from $@ may overflow the destination. | tests.c:16:26:16:29 | argv indirection | a command-line argument |
|
||||
| tests.c:31:15:31:23 | buffer100 | tests.c:31:15:31:23 | scanf output argument | tests.c:31:15:31:23 | scanf output argument | This 'scanf string argument' with input from $@ may overflow the destination. | tests.c:31:15:31:23 | scanf output argument | value read by scanf |
|
||||
| tests.c:33:21:33:29 | buffer100 | tests.c:33:21:33:29 | scanf output argument | tests.c:33:21:33:29 | scanf output argument | This 'scanf string argument' with input from $@ may overflow the destination. | tests.c:33:21:33:29 | scanf output argument | value read by scanf |
|
||||
| tests.c:34:25:34:33 | buffer100 | tests.c:16:26:16:29 | argv indirection | tests.c:34:10:34:16 | access to array indirection | This 'sscanf string argument' with input from $@ may overflow the destination. | tests.c:16:26:16:29 | argv indirection | a command-line argument |
|
||||
|
||||
@@ -22,10 +22,6 @@ edges
|
||||
| test.cpp:52:19:52:37 | call to malloc | test.cpp:53:12:53:23 | ... + ... |
|
||||
| test.cpp:53:12:53:23 | ... + ... | test.cpp:51:33:51:35 | end |
|
||||
| test.cpp:60:34:60:37 | mk_array output argument | test.cpp:67:9:67:14 | ... = ... |
|
||||
| test.cpp:194:15:194:33 | call to malloc | test.cpp:195:17:195:23 | ... + ... |
|
||||
| test.cpp:195:17:195:23 | ... + ... | test.cpp:195:17:195:23 | ... + ... |
|
||||
| test.cpp:195:17:195:23 | ... + ... | test.cpp:201:5:201:19 | ... = ... |
|
||||
| test.cpp:195:17:195:23 | ... + ... | test.cpp:201:5:201:19 | ... = ... |
|
||||
| test.cpp:205:15:205:33 | call to malloc | test.cpp:206:17:206:23 | ... + ... |
|
||||
| test.cpp:206:17:206:23 | ... + ... | test.cpp:206:17:206:23 | ... + ... |
|
||||
| test.cpp:206:17:206:23 | ... + ... | test.cpp:213:5:213:13 | ... = ... |
|
||||
@@ -125,10 +121,6 @@ nodes
|
||||
| test.cpp:53:12:53:23 | ... + ... | semmle.label | ... + ... |
|
||||
| test.cpp:60:34:60:37 | mk_array output argument | semmle.label | mk_array output argument |
|
||||
| test.cpp:67:9:67:14 | ... = ... | semmle.label | ... = ... |
|
||||
| test.cpp:194:15:194:33 | call to malloc | semmle.label | call to malloc |
|
||||
| test.cpp:195:17:195:23 | ... + ... | semmle.label | ... + ... |
|
||||
| test.cpp:195:17:195:23 | ... + ... | semmle.label | ... + ... |
|
||||
| test.cpp:201:5:201:19 | ... = ... | semmle.label | ... = ... |
|
||||
| test.cpp:205:15:205:33 | call to malloc | semmle.label | call to malloc |
|
||||
| test.cpp:206:17:206:23 | ... + ... | semmle.label | ... + ... |
|
||||
| test.cpp:206:17:206:23 | ... + ... | semmle.label | ... + ... |
|
||||
@@ -214,7 +206,6 @@ subpaths
|
||||
| test.cpp:30:14:30:15 | * ... | test.cpp:28:15:28:37 | call to malloc | test.cpp:30:14:30:15 | * ... | This read might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:28:15:28:37 | call to malloc | call to malloc | test.cpp:29:20:29:27 | ... + ... | ... + ... |
|
||||
| test.cpp:32:14:32:21 | * ... | test.cpp:28:15:28:37 | call to malloc | test.cpp:32:14:32:21 | * ... | This read might be out of bounds, as the pointer might be equal to $@ + $@ + 1. | test.cpp:28:15:28:37 | call to malloc | call to malloc | test.cpp:29:20:29:27 | ... + ... | ... + ... |
|
||||
| test.cpp:67:9:67:14 | ... = ... | test.cpp:52:19:52:37 | call to malloc | test.cpp:67:9:67:14 | ... = ... | This write might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:52:19:52:37 | call to malloc | call to malloc | test.cpp:53:20:53:23 | size | size |
|
||||
| test.cpp:201:5:201:19 | ... = ... | test.cpp:194:15:194:33 | call to malloc | test.cpp:201:5:201:19 | ... = ... | This write might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:194:15:194:33 | call to malloc | call to malloc | test.cpp:195:21:195:23 | len | len |
|
||||
| test.cpp:213:5:213:13 | ... = ... | test.cpp:205:15:205:33 | call to malloc | test.cpp:213:5:213:13 | ... = ... | This write might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:205:15:205:33 | call to malloc | call to malloc | test.cpp:206:21:206:23 | len | len |
|
||||
| test.cpp:264:13:264:14 | * ... | test.cpp:260:13:260:24 | new[] | test.cpp:264:13:264:14 | * ... | This read might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:260:13:260:24 | new[] | new[] | test.cpp:261:19:261:21 | len | len |
|
||||
| test.cpp:274:5:274:10 | ... = ... | test.cpp:270:13:270:24 | new[] | test.cpp:274:5:274:10 | ... = ... | This write might be out of bounds, as the pointer might be equal to $@ + $@. | test.cpp:270:13:270:24 | new[] | new[] | test.cpp:271:19:271:21 | len | len |
|
||||
|
||||
@@ -198,7 +198,7 @@ void test12(unsigned len, unsigned index) {
|
||||
return;
|
||||
}
|
||||
|
||||
p[index] = '\0'; // $ deref=L195->L201 // BAD
|
||||
p[index] = '\0'; // $ MISSING: deref=L195->L201 // BAD [NOT DETECTED]
|
||||
}
|
||||
|
||||
void test13(unsigned len, unsigned index) {
|
||||
|
||||
@@ -1,28 +1,33 @@
|
||||
package,sink,source,summary,sink:code-injection,sink:encryption-decryptor,sink:encryption-encryptor,sink:encryption-keyprop,sink:encryption-symmetrickey,sink:file-content-store,sink:html-injection,sink:js-injection,sink:sql-injection,source:file,source:file-write,source:local,source:remote,summary:taint,summary:value
|
||||
Dapper,55,,,,,,,,,,,55,,,,,,
|
||||
ILCompiler,,,80,,,,,,,,,,,,,,80,
|
||||
Internal.IL,,,68,,,,,,,,,,,,,,66,2
|
||||
Internal.Pgo,,,9,,,,,,,,,,,,,,8,1
|
||||
Internal.TypeSystem,,,352,,,,,,,,,,,,,,316,36
|
||||
JsonToItemsTaskFactory,,,7,,,,,,,,,,,,,,7,
|
||||
Microsoft.ApplicationBlocks.Data,28,,,,,,,,,,,28,,,,,,
|
||||
Microsoft.CSharp,,,24,,,,,,,,,,,,,,24,
|
||||
Microsoft.Diagnostics.Tools.Pgo,,,12,,,,,,,,,,,,,,12,
|
||||
Microsoft.EntityFrameworkCore,6,,12,,,,,,,,,6,,,,,,12
|
||||
Microsoft.Extensions.Caching.Distributed,,,15,,,,,,,,,,,,,,15,
|
||||
Microsoft.Extensions.Caching.Memory,,,46,,,,,,,,,,,,,,45,1
|
||||
Microsoft.Extensions.Configuration,,,83,,,,,,,,,,,,,,80,3
|
||||
Microsoft.Extensions.DependencyInjection,,,62,,,,,,,,,,,,,,62,
|
||||
Microsoft.Extensions.Caching.Memory,,,38,,,,,,,,,,,,,,37,1
|
||||
Microsoft.Extensions.Configuration,,,79,,,,,,,,,,,,,,76,3
|
||||
Microsoft.Extensions.DependencyInjection,,,60,,,,,,,,,,,,,,60,
|
||||
Microsoft.Extensions.DependencyModel,,,12,,,,,,,,,,,,,,12,
|
||||
Microsoft.Extensions.FileProviders,,,16,,,,,,,,,,,,,,16,
|
||||
Microsoft.Extensions.FileSystemGlobbing,,,15,,,,,,,,,,,,,,13,2
|
||||
Microsoft.Extensions.Hosting,,,17,,,,,,,,,,,,,,16,1
|
||||
Microsoft.Extensions.FileProviders,,,17,,,,,,,,,,,,,,17,
|
||||
Microsoft.Extensions.FileSystemGlobbing,,,16,,,,,,,,,,,,,,14,2
|
||||
Microsoft.Extensions.Hosting,,,20,,,,,,,,,,,,,,19,1
|
||||
Microsoft.Extensions.Http,,,10,,,,,,,,,,,,,,10,
|
||||
Microsoft.Extensions.Logging,,,37,,,,,,,,,,,,,,37,
|
||||
Microsoft.Extensions.Logging,,,39,,,,,,,,,,,,,,39,
|
||||
Microsoft.Extensions.Options,,,8,,,,,,,,,,,,,,8,
|
||||
Microsoft.Extensions.Primitives,,,63,,,,,,,,,,,,,,63,
|
||||
Microsoft.Interop,,,27,,,,,,,,,,,,,,27,
|
||||
Microsoft.Interop,,,60,,,,,,,,,,,,,,60,
|
||||
Microsoft.NET.Build.Tasks,,,1,,,,,,,,,,,,,,1,
|
||||
Microsoft.NETCore.Platforms.BuildTasks,,,4,,,,,,,,,,,,,,4,
|
||||
Microsoft.VisualBasic,,,10,,,,,,,,,,,,,,5,5
|
||||
Microsoft.Win32,,,8,,,,,,,,,,,,,,8,
|
||||
Microsoft.Win32.SafeHandles,,,4,,,,,,,,,,,,,,4,
|
||||
MySql.Data.MySqlClient,48,,,,,,,,,,,48,,,,,,
|
||||
Newtonsoft.Json,,,91,,,,,,,,,,,,,,73,18
|
||||
ServiceStack,194,,7,27,,,,,75,,,92,,,,,7,
|
||||
System,65,25,12149,,8,8,9,,,4,3,33,1,17,3,4,10163,1986
|
||||
System,67,25,11891,,8,8,9,,,4,5,33,1,17,3,4,9906,1985
|
||||
Windows.Security.Cryptography.Core,1,,,,,,,1,,,,,,,,,,
|
||||
|
||||
|
@@ -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 <https://servicestack.net/>`_,"``ServiceStack.*``, ``ServiceStack``",,7,194,
|
||||
System,"``System.*``, ``System``",25,12149,65,7
|
||||
Others,"``Dapper``, ``JsonToItemsTaskFactory``, ``Microsoft.ApplicationBlocks.Data``, ``Microsoft.CSharp``, ``Microsoft.EntityFrameworkCore``, ``Microsoft.Extensions.Caching.Distributed``, ``Microsoft.Extensions.Caching.Memory``, ``Microsoft.Extensions.Configuration``, ``Microsoft.Extensions.DependencyInjection``, ``Microsoft.Extensions.DependencyModel``, ``Microsoft.Extensions.FileProviders``, ``Microsoft.Extensions.FileSystemGlobbing``, ``Microsoft.Extensions.Hosting``, ``Microsoft.Extensions.Http``, ``Microsoft.Extensions.Logging``, ``Microsoft.Extensions.Options``, ``Microsoft.Extensions.Primitives``, ``Microsoft.Interop``, ``Microsoft.NET.Build.Tasks``, ``Microsoft.NETCore.Platforms.BuildTasks``, ``Microsoft.VisualBasic``, ``Microsoft.Win32``, ``MySql.Data.MySqlClient``, ``Newtonsoft.Json``, ``Windows.Security.Cryptography.Core``",,568,138,
|
||||
Totals,,25,12724,397,7
|
||||
System,"``System.*``, ``System``",25,11891,67,9
|
||||
Others,"``Dapper``, ``ILCompiler``, ``Internal.IL``, ``Internal.Pgo``, ``Internal.TypeSystem``, ``JsonToItemsTaskFactory``, ``Microsoft.ApplicationBlocks.Data``, ``Microsoft.CSharp``, ``Microsoft.Diagnostics.Tools.Pgo``, ``Microsoft.EntityFrameworkCore``, ``Microsoft.Extensions.Caching.Distributed``, ``Microsoft.Extensions.Caching.Memory``, ``Microsoft.Extensions.Configuration``, ``Microsoft.Extensions.DependencyInjection``, ``Microsoft.Extensions.DependencyModel``, ``Microsoft.Extensions.FileProviders``, ``Microsoft.Extensions.FileSystemGlobbing``, ``Microsoft.Extensions.Hosting``, ``Microsoft.Extensions.Http``, ``Microsoft.Extensions.Logging``, ``Microsoft.Extensions.Options``, ``Microsoft.Extensions.Primitives``, ``Microsoft.Interop``, ``Microsoft.NET.Build.Tasks``, ``Microsoft.NETCore.Platforms.BuildTasks``, ``Microsoft.VisualBasic``, ``Microsoft.Win32.SafeHandles``, ``MySql.Data.MySqlClient``, ``Newtonsoft.Json``, ``Windows.Security.Cryptography.Core``",,1111,138,
|
||||
Totals,,25,13009,399,9
|
||||
|
||||
|
||||
@@ -31,6 +31,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
private readonly IDotNet dotnet;
|
||||
private readonly FileContent fileContent;
|
||||
private readonly TemporaryDirectory packageDirectory;
|
||||
private readonly TemporaryDirectory legacyPackageDirectory;
|
||||
private readonly TemporaryDirectory missingPackageDirectory;
|
||||
private readonly TemporaryDirectory tempWorkingDirectory;
|
||||
private readonly bool cleanupTempWorkingDirectory;
|
||||
@@ -52,6 +53,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
this.sourceDir = new DirectoryInfo(srcDir);
|
||||
|
||||
packageDirectory = new TemporaryDirectory(ComputeTempDirectory(sourceDir.FullName));
|
||||
legacyPackageDirectory = new TemporaryDirectory(ComputeTempDirectory(sourceDir.FullName, "legacypackages"));
|
||||
missingPackageDirectory = new TemporaryDirectory(ComputeTempDirectory(sourceDir.FullName, "missingpackages"));
|
||||
|
||||
tempWorkingDirectory = new TemporaryDirectory(FileUtils.GetTemporaryWorkingDirectory(out cleanupTempWorkingDirectory));
|
||||
@@ -82,15 +84,28 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
? new[] { options.SolutionFile }
|
||||
: allNonBinaryFiles.SelectFileNamesByExtension(".sln");
|
||||
var dllPaths = options.DllDirs.Count == 0
|
||||
? allFiles.SelectFileNamesByExtension(".dll").ToList()
|
||||
: options.DllDirs.Select(Path.GetFullPath).ToList();
|
||||
? allFiles.SelectFileNamesByExtension(".dll").ToHashSet()
|
||||
: options.DllDirs.Select(Path.GetFullPath).ToHashSet();
|
||||
|
||||
if (options.UseNuGet)
|
||||
{
|
||||
try
|
||||
{
|
||||
var nuget = new NugetPackages(sourceDir.FullName, packageDirectory, progressMonitor);
|
||||
var nuget = new NugetPackages(sourceDir.FullName, legacyPackageDirectory, progressMonitor);
|
||||
nuget.InstallPackages();
|
||||
|
||||
var nugetPackageDlls = legacyPackageDirectory.DirInfo.GetFiles("*.dll", new EnumerationOptions { RecurseSubdirectories = true });
|
||||
var nugetPackageDllPaths = nugetPackageDlls.Select(f => f.FullName).ToHashSet();
|
||||
var excludedPaths = nugetPackageDllPaths
|
||||
.Where(path => IsPathInSubfolder(path, legacyPackageDirectory.DirInfo.FullName, "tools"));
|
||||
|
||||
foreach (var excludedPath in excludedPaths)
|
||||
{
|
||||
progressMonitor.LogInfo($"Excluded Nuget DLL: {excludedPath}");
|
||||
}
|
||||
|
||||
nugetPackageDllPaths.ExceptWith(excludedPaths);
|
||||
dllPaths.UnionWith(nugetPackageDllPaths);
|
||||
}
|
||||
catch (FileNotFoundException)
|
||||
{
|
||||
@@ -107,7 +122,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
.RequiredPaths
|
||||
.Select(d => Path.Combine(packageDirectory.DirInfo.FullName, d))
|
||||
.ToList();
|
||||
dllPaths.AddRange(paths);
|
||||
dllPaths.UnionWith(paths);
|
||||
|
||||
LogAllUnusedPackages(dependencies);
|
||||
DownloadMissingPackages(allNonBinaryFiles, dllPaths);
|
||||
@@ -165,6 +180,14 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
DateTime.Now - startTime);
|
||||
}
|
||||
|
||||
private static bool IsPathInSubfolder(string path, string rootFolder, string subFolder)
|
||||
{
|
||||
return path.IndexOf(
|
||||
$"{Path.DirectorySeparatorChar}{subFolder}{Path.DirectorySeparatorChar}",
|
||||
rootFolder.Length,
|
||||
StringComparison.InvariantCultureIgnoreCase) >= 0;
|
||||
}
|
||||
|
||||
private void RemoveNugetAnalyzerReferences()
|
||||
{
|
||||
if (!options.UseNuGet)
|
||||
@@ -205,7 +228,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
}
|
||||
}
|
||||
|
||||
private void AddNetFrameworkDlls(List<string> dllPaths)
|
||||
private void AddNetFrameworkDlls(ISet<string> dllPaths)
|
||||
{
|
||||
// Multiple dotnet framework packages could be present.
|
||||
// The order of the packages is important, we're adding the first one that is present in the nuget cache.
|
||||
@@ -218,13 +241,19 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
};
|
||||
|
||||
var frameworkPath = packagesInPrioOrder
|
||||
.Select(GetPackageDirectory)
|
||||
.FirstOrDefault(dir => dir is not null);
|
||||
.Select((s, index) => (Index: index, Path: GetPackageDirectory(s)))
|
||||
.FirstOrDefault(pair => pair.Path is not null);
|
||||
|
||||
if (frameworkPath is not null)
|
||||
if (frameworkPath.Path is not null)
|
||||
{
|
||||
dllPaths.Add(frameworkPath);
|
||||
progressMonitor.LogInfo("Found .NET Core/Framework DLLs in NuGet packages. Not adding installation directory.");
|
||||
dllPaths.Add(frameworkPath.Path);
|
||||
progressMonitor.LogInfo($"Found .NET Core/Framework DLLs in NuGet packages at {frameworkPath.Path}. Not adding installation directory.");
|
||||
|
||||
for (var i = frameworkPath.Index + 1; i < packagesInPrioOrder.Length; i++)
|
||||
{
|
||||
RemoveNugetPackageReference(packagesInPrioOrder[i], dllPaths);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -249,7 +278,29 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
dllPaths.Add(runtimeLocation);
|
||||
}
|
||||
|
||||
private void AddAspNetCoreFrameworkDlls(List<string> dllPaths)
|
||||
private void RemoveNugetPackageReference(string packagePrefix, ISet<string> dllPaths)
|
||||
{
|
||||
if (!options.UseNuGet)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var packageFolder = packageDirectory.DirInfo.FullName.ToLowerInvariant();
|
||||
if (packageFolder == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var packagePathPrefix = Path.Combine(packageFolder, packagePrefix.ToLowerInvariant());
|
||||
var toRemove = dllPaths.Where(s => s.ToLowerInvariant().StartsWith(packagePathPrefix));
|
||||
foreach (var path in toRemove)
|
||||
{
|
||||
dllPaths.Remove(path);
|
||||
progressMonitor.RemovedReference(path);
|
||||
}
|
||||
}
|
||||
|
||||
private void AddAspNetCoreFrameworkDlls(ISet<string> dllPaths)
|
||||
{
|
||||
if (!fileContent.IsNewProjectStructureUsed || !fileContent.UseAspNetCoreDlls)
|
||||
{
|
||||
@@ -269,7 +320,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
}
|
||||
}
|
||||
|
||||
private void AddMicrosoftWindowsDesktopDlls(List<string> dllPaths)
|
||||
private void AddMicrosoftWindowsDesktopDlls(ISet<string> dllPaths)
|
||||
{
|
||||
if (GetPackageDirectory("microsoft.windowsdesktop.app.ref") is string windowsDesktopApp)
|
||||
{
|
||||
@@ -628,7 +679,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
assets = assetFiles;
|
||||
}
|
||||
|
||||
private void DownloadMissingPackages(List<FileInfo> allFiles, List<string> dllPaths)
|
||||
private void DownloadMissingPackages(List<FileInfo> allFiles, ISet<string> dllPaths)
|
||||
{
|
||||
var nugetConfigs = allFiles.SelectFileNamesByName("nuget.config").ToArray();
|
||||
string? nugetConfig = null;
|
||||
@@ -712,6 +763,7 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
|
||||
public void Dispose()
|
||||
{
|
||||
Dispose(packageDirectory, "package");
|
||||
Dispose(legacyPackageDirectory, "legacy package");
|
||||
Dispose(missingPackageDirectory, "missing package");
|
||||
if (cleanupTempWorkingDirectory)
|
||||
{
|
||||
|
||||
@@ -91,7 +91,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
// The current argument is not named
|
||||
// so the previous ones were also not named
|
||||
// so the child index matches the parameter index.
|
||||
isParamsParameter = Symbol?.AttributeConstructor?.Parameters[childIndex].IsParams == true;
|
||||
isParamsParameter = Symbol.AttributeConstructor?.Parameters[childIndex].IsParams == true;
|
||||
argSyntax = ctorArguments[childIndex];
|
||||
}
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace Semmle.Extraction.CSharp.Entities
|
||||
Position.Span.Start.Line + 1, Position.Span.Start.Character + 1,
|
||||
Position.Span.End.Line + 1, Position.Span.End.Character);
|
||||
|
||||
var mapped = Symbol!.GetMappedLineSpan();
|
||||
var mapped = Symbol.GetMappedLineSpan();
|
||||
if (mapped.HasMappedPath && mapped.IsValid)
|
||||
{
|
||||
var mappedLoc = Create(Context, Location.Create(mapped.Path, default, mapped.Span));
|
||||
|
||||
@@ -22,7 +22,7 @@ namespace Semmle.Extraction.Tests
|
||||
{
|
||||
options = CSharp.Options.CreateWithEnvironment(Array.Empty<string>());
|
||||
Assert.True(options.Cache);
|
||||
Assert.True(options.CIL);
|
||||
Assert.False(options.CIL);
|
||||
Assert.Null(options.Framework);
|
||||
Assert.Null(options.CompilerName);
|
||||
Assert.Empty(options.CompilerArguments);
|
||||
@@ -52,7 +52,7 @@ namespace Semmle.Extraction.Tests
|
||||
public void CIL()
|
||||
{
|
||||
options = CSharp.Options.CreateWithEnvironment(Array.Empty<string>());
|
||||
Assert.True(options.CIL);
|
||||
Assert.False(options.CIL);
|
||||
|
||||
Environment.SetEnvironmentVariable("CODEQL_EXTRACTOR_CSHARP_OPTION_CIL", "false");
|
||||
options = CSharp.Options.CreateWithEnvironment(Array.Empty<string>());
|
||||
@@ -64,7 +64,7 @@ namespace Semmle.Extraction.Tests
|
||||
|
||||
Environment.SetEnvironmentVariable("CODEQL_EXTRACTOR_CSHARP_OPTION_CIL", null);
|
||||
options = CSharp.Options.CreateWithEnvironment(Array.Empty<string>());
|
||||
Assert.True(options.CIL);
|
||||
Assert.False(options.CIL);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.IO;
|
||||
using Microsoft.CodeAnalysis;
|
||||
|
||||
@@ -30,6 +31,7 @@ namespace Semmle.Extraction
|
||||
/// <typeparam name="TSymbol">The type of the symbol.</typeparam>
|
||||
public abstract class CachedEntity<TSymbol> : CachedEntity where TSymbol : notnull
|
||||
{
|
||||
[NotNull]
|
||||
public TSymbol Symbol { get; }
|
||||
|
||||
protected CachedEntity(Context context, TSymbol symbol) : base(context)
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Semmle.Extraction
|
||||
/// <summary>
|
||||
/// Holds if CIL should be extracted.
|
||||
/// </summary>
|
||||
public bool CIL { get; private set; } = true;
|
||||
public bool CIL { get; private set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// Holds if assemblies shouldn't be extracted twice.
|
||||
|
||||
@@ -10,5 +10,5 @@
|
||||
import csharp
|
||||
|
||||
from CatchClause catch
|
||||
where catch.getCaughtExceptionType().hasQualifiedName("System.IO", "IOException")
|
||||
where catch.getCaughtExceptionType().hasFullyQualifiedName("System.IO", "IOException")
|
||||
select catch
|
||||
|
||||
@@ -10,5 +10,5 @@
|
||||
import csharp
|
||||
|
||||
from ObjectCreation new
|
||||
where new.getObjectType().hasQualifiedName("System", "Exception")
|
||||
where new.getObjectType().hasFullyQualifiedName("System", "Exception")
|
||||
select new
|
||||
|
||||
@@ -13,5 +13,5 @@
|
||||
import csharp
|
||||
|
||||
from RefType type
|
||||
where type.getABaseType+().hasQualifiedName("System.Collections", "IEnumerator")
|
||||
where type.getABaseType+().hasFullyQualifiedName("System.Collections", "IEnumerator")
|
||||
select type
|
||||
|
||||
@@ -11,6 +11,6 @@ import csharp
|
||||
from Field f, FieldRead read
|
||||
where
|
||||
f.hasName("VirtualAddress") and
|
||||
f.getDeclaringType().hasQualifiedName("Mono.Cecil.PE", "Section") and
|
||||
f.getDeclaringType().hasFullyQualifiedName("Mono.Cecil.PE", "Section") and
|
||||
f = read.getTarget()
|
||||
select read
|
||||
|
||||
@@ -12,5 +12,5 @@ from MethodCall call, Method method
|
||||
where
|
||||
call.getTarget() = method and
|
||||
method.hasName("MethodName") and
|
||||
method.getDeclaringType().hasQualifiedName("Company", "Class")
|
||||
method.getDeclaringType().hasFullyQualifiedName("Company", "Class")
|
||||
select call
|
||||
|
||||
@@ -17,6 +17,6 @@ where
|
||||
add.hasName("Add") and
|
||||
add.getDeclaringType()
|
||||
.getUnboundDeclaration()
|
||||
.hasQualifiedName("System.Collections.Generic", "ICollection<>") and
|
||||
.hasFullyQualifiedName("System.Collections.Generic", "ICollection`1") and
|
||||
call.getAnArgument() instanceof NullLiteral
|
||||
select call
|
||||
|
||||
@@ -11,6 +11,6 @@ import csharp
|
||||
from Method override, Method base
|
||||
where
|
||||
base.hasName("ToString") and
|
||||
base.getDeclaringType().hasQualifiedName("System", "Object") and
|
||||
base.getDeclaringType().hasFullyQualifiedName("System", "Object") and
|
||||
base.getAnOverrider() = override
|
||||
select override
|
||||
|
||||
@@ -9,5 +9,6 @@
|
||||
import csharp
|
||||
|
||||
from ThrowStmt throw
|
||||
where throw.getThrownExceptionType().getBaseClass*().hasQualifiedName("System.IO", "IOException")
|
||||
where
|
||||
throw.getThrownExceptionType().getBaseClass*().hasFullyQualifiedName("System.IO", "IOException")
|
||||
select throw
|
||||
|
||||
@@ -1,35 +1,35 @@
|
||||
| test.cs:1:14:1:20 | GenA<> | System.Object |
|
||||
| test.cs:1:14:1:20 | GenA<GenB<GenB<>>> | System.Object |
|
||||
| test.cs:1:14:1:20 | GenA<GenB<GenB<String>>> | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB<> | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB<GenB<>> | System.Object |
|
||||
| test.cs:1:14:1:20 | GenA<GenB<GenB`1>> | System.Object |
|
||||
| test.cs:1:14:1:20 | GenA`1 | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB<GenB<String>> | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB<GenB`1> | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB<String> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<,>> | System.Object |
|
||||
| test.cs:2:14:2:20 | GenB`1 | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<Int32,String>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<String,Int32>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<V,U>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<W,X>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C<X,W>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<,>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<C`2> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<Int32,String>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<String,Int32>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<U,V>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<V,U>> | System.Object |
|
||||
| test.cs:4:7:4:10 | P<D<X,W>> | System.Object |
|
||||
| test.cs:5:7:5:13 | C<,> | P<D<V,U>> |
|
||||
| test.cs:4:7:4:10 | P<D`2> | System.Object |
|
||||
| test.cs:4:7:4:10 | P`1 | System.Object |
|
||||
| test.cs:5:7:5:13 | C<Int32,String> | P<D<System.String,System.Int32>> |
|
||||
| test.cs:5:7:5:13 | C<String,Int32> | P<D<System.Int32,System.String>> |
|
||||
| test.cs:5:7:5:13 | C<V,U> | P<D<U,V>> |
|
||||
| test.cs:5:7:5:13 | C<W,X> | P<D<X,W>> |
|
||||
| test.cs:5:7:5:13 | C<X,W> | P<D<,>> |
|
||||
| test.cs:6:7:6:13 | D<,> | P<C<W,X>> |
|
||||
| test.cs:5:7:5:13 | C<X,W> | P<D`2> |
|
||||
| test.cs:5:7:5:13 | C`2 | P<D<V,U>> |
|
||||
| test.cs:6:7:6:13 | D<Int32,String> | P<C<System.Int32,System.String>> |
|
||||
| test.cs:6:7:6:13 | D<String,Int32> | P<C<System.String,System.Int32>> |
|
||||
| test.cs:6:7:6:13 | D<U,V> | P<C<,>> |
|
||||
| test.cs:6:7:6:13 | D<U,V> | P<C`2> |
|
||||
| test.cs:6:7:6:13 | D<V,U> | P<C<V,U>> |
|
||||
| test.cs:6:7:6:13 | D<X,W> | P<C<X,W>> |
|
||||
| test.cs:8:7:8:10 | A<> | System.Object |
|
||||
| test.cs:6:7:6:13 | D`2 | P<C<W,X>> |
|
||||
| test.cs:8:7:8:10 | A<String> | System.Object |
|
||||
| test.cs:8:7:8:10 | A`1 | System.Object |
|
||||
| test.cs:13:14:13:18 | Class | System.Object |
|
||||
|
||||
@@ -2,4 +2,4 @@ import csharp
|
||||
|
||||
from Class c
|
||||
where c.fromSource()
|
||||
select c, c.getBaseClass().getQualifiedName()
|
||||
select c, c.getBaseClass().getFullyQualifiedName()
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -14,4 +13,9 @@
|
||||
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
||||
<RemoveDir Directories=".\bin" />
|
||||
<RemoveDir Directories=".\obj" />
|
||||
<RemoveDir Directories=".\myout" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
||||
@@ -8,3 +8,8 @@ check_diagnostics()
|
||||
# Explicitly build and then run tests.
|
||||
run_codeql_database_create(['dotnet clean', 'rm -rf test-db', 'dotnet build -o myout', 'dotnet test myout/dotnet_test.dll'], test_db="test2-db", lang="csharp")
|
||||
check_diagnostics(test_db="test2-db")
|
||||
|
||||
thisDir = os.path.abspath(os.getcwd())
|
||||
# Explicit build and then run tests using the absolute path.
|
||||
run_codeql_database_create(['dotnet clean', 'rm -rf test2-db', 'dotnet build -o myout', f'dotnet test {thisDir}/myout/dotnet_test.dll'], test_db="test3-db", lang="csharp")
|
||||
check_diagnostics(test_db="test3-db")
|
||||
@@ -0,0 +1,163 @@
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.CSharp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.VisualBasic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/Microsoft.Win32.Registry.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.AppContext.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Buffers.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Concurrent.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Immutable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.NonGeneric.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.Specialized.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Collections.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Annotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.DataAnnotations.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.EventBasedAsync.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.TypeConverter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ComponentModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Configuration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Console.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Core.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.Common.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.DataSetExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Data.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Contracts.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Debug.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.DiagnosticSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.FileVersionInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Process.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.StackTrace.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TextWriterTraceListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tools.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.TraceSource.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Diagnostics.Tracing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Drawing.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Dynamic.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Asn1.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Formats.Tar.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Calendars.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Globalization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.Brotli.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.ZipFile.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Compression.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.DriveInfo.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.Watcher.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.FileSystem.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.IsolatedStorage.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.MemoryMappedFiles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.Pipes.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.UnmanagedMemoryStream.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.IO.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Expressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.Queryable.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Memory.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Http.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.HttpListener.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Mail.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NameResolution.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.NetworkInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Ping.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Quic.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Requests.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.ServicePoint.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.Sockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebClient.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebHeaderCollection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.Client.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.WebSockets.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Net.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.Vectors.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ObjectModel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.DispatchProxy.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.ILGeneration.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.Lightweight.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Emit.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Metadata.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.TypeExtensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Reflection.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Reader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.ResourceManager.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Resources.Writer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.Unsafe.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.CompilerServices.VisualC.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Handles.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.JavaScript.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.InteropServices.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Intrinsics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Loader.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Numerics.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Formatters.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Runtime.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.AccessControl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Claims.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Algorithms.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Cng.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Csp.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.OpenSsl.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.Primitives.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.X509Certificates.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Cryptography.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.Principal.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.SecureString.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Security.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceModel.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ServiceProcess.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.CodePages.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encoding.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Encodings.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.Json.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Text.RegularExpressions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Channels.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Overlapped.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Dataflow.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Extensions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.Parallel.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Tasks.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Thread.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.ThreadPool.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.Timer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Threading.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.Local.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Transactions.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.ValueTuple.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.HttpUtility.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Web.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Windows.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Linq.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.ReaderWriter.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.Serialization.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.XDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XPath.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlDocument.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.XmlSerializer.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.Xml.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/System.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/WindowsBase.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/mscorlib.dll |
|
||||
| /microsoft.netcore.app.ref/7.0.2/ref/net7.0/netstandard.dll |
|
||||
@@ -0,0 +1,15 @@
|
||||
import csharp
|
||||
|
||||
private string getPath(Assembly a) {
|
||||
not a.getCompilation().getOutputAssembly() = a and
|
||||
exists(string s | s = a.getFile().getAbsolutePath() |
|
||||
result =
|
||||
s.substring(s.indexOf("GitHub/packages/") + "GitHub/packages/".length() + 16, s.length())
|
||||
or
|
||||
result = s and
|
||||
not exists(s.indexOf("GitHub/packages/"))
|
||||
)
|
||||
}
|
||||
|
||||
from Assembly a
|
||||
select getPath(a)
|
||||
@@ -0,0 +1 @@
|
||||
var dummy = "dummy";
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "7.0.102"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net48</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
from create_database_utils import *
|
||||
|
||||
run_codeql_database_create([], lang="csharp", extra_args=["--extractor-option=buildless=true", "--extractor-option=cil=false"])
|
||||
@@ -0,0 +1 @@
|
||||
| /Newtonsoft.Json.6.0.4/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll |
|
||||
@@ -0,0 +1,24 @@
|
||||
import csharp
|
||||
|
||||
private string getPath(Assembly a) {
|
||||
not a.getCompilation().getOutputAssembly() = a and
|
||||
exists(string s | s = a.getFile().getAbsolutePath() |
|
||||
result =
|
||||
s.substring(s.indexOf("GitHub/packages/") + "GitHub/packages/".length() + 16, s.length())
|
||||
or
|
||||
result =
|
||||
s.substring(s.indexOf("GitHub/legacypackages/") + "GitHub/legacypackages/".length() + 16,
|
||||
s.length())
|
||||
// TODO: excluding all other assemblies from the test result as mono installations seem problematic on ARM runners.
|
||||
// or
|
||||
// result = s.substring(s.indexOf("lib/mono/") + "lib/mono/".length(), s.length())
|
||||
// or
|
||||
// result = s and
|
||||
// not exists(s.indexOf("GitHub/packages/")) and
|
||||
// not exists(s.indexOf("GitHub/legacypackages/")) and
|
||||
// not exists(s.indexOf("lib/mono/"))
|
||||
)
|
||||
}
|
||||
|
||||
from Assembly a
|
||||
select getPath(a)
|
||||
@@ -0,0 +1,6 @@
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net461" />
|
||||
<package id="NUnit.ConsoleRunner" version="3.12.0" />
|
||||
</packages>
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
from create_database_utils import *
|
||||
|
||||
run_codeql_database_create([], lang="csharp", extra_args=["--extractor-option=buildless=true", "--extractor-option=cil=false"])
|
||||
@@ -21,12 +21,14 @@ private int numStmts(ForeachStmt fes) {
|
||||
}
|
||||
|
||||
/** Holds if the type's qualified name is "System.Linq.Enumerable" */
|
||||
predicate isEnumerableType(ValueOrRefType t) { t.hasQualifiedName("System.Linq", "Enumerable") }
|
||||
predicate isEnumerableType(ValueOrRefType t) {
|
||||
t.hasFullyQualifiedName("System.Linq", "Enumerable")
|
||||
}
|
||||
|
||||
/** Holds if the type's qualified name starts with "System.Collections.Generic.IEnumerable" */
|
||||
predicate isIEnumerableType(ValueOrRefType t) {
|
||||
exists(string type |
|
||||
t.hasQualifiedName("System.Collections.Generic", type) and
|
||||
t.hasFullyQualifiedName("System.Collections.Generic", type) and
|
||||
type.matches("IEnumerable%")
|
||||
)
|
||||
}
|
||||
@@ -159,7 +161,7 @@ class AnyCall extends MethodCall {
|
||||
exists(Method m |
|
||||
m = this.getTarget().getUnboundDeclaration() and
|
||||
isEnumerableType(m.getDeclaringType()) and
|
||||
m.hasName("Any<>")
|
||||
m.hasName("Any`1")
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -170,7 +172,7 @@ class CountCall extends MethodCall {
|
||||
exists(Method m |
|
||||
m = this.getTarget().getUnboundDeclaration() and
|
||||
isEnumerableType(m.getDeclaringType()) and
|
||||
m.hasName("Count<>")
|
||||
m.hasName("Count`1")
|
||||
)
|
||||
}
|
||||
}
|
||||
@@ -186,7 +188,7 @@ class SelectCall extends ExtensionMethodCall {
|
||||
exists(Method m |
|
||||
m = this.getTarget().getUnboundDeclaration() and
|
||||
isEnumerableType(m.getDeclaringType()) and
|
||||
m.hasName("Select<,>")
|
||||
m.hasName("Select`2")
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
24
csharp/ql/lib/change-notes/2023-11-09-mad-generics.md
Normal file
24
csharp/ql/lib/change-notes/2023-11-09-mad-generics.md
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
category: minorAnalysis
|
||||
---
|
||||
|
||||
* The models-as-data format for types and methods with type parameters has been changed to include the names of the type parameters. For example, instead of writing
|
||||
```yml
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Generic", "IList<>", True, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Linq", "Enumerable", False, "Select<,>", "(System.Collections.Generic.IEnumerable<TSource>,System.Func<TSource,System.Int32,TResult>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
```
|
||||
one now writes
|
||||
```yml
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Generic", "IList<T>", True, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Linq", "Enumerable", False, "Select<TSource,TResult>", "(System.Collections.Generic.IEnumerable<TSource>,System.Func<TSource,System.Int32,TResult>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
```
|
||||
@@ -0,0 +1,25 @@
|
||||
---
|
||||
category: minorAnalysis
|
||||
---
|
||||
|
||||
* The predicate `UnboundGeneric::getName` now prints the number of type parameters as a `` `N`` suffix, instead of a `<,...,>` suffix. For example, the unbound generic type
|
||||
`System.Collections.Generic.IList<T>` is printed as ``IList`1`` instead of `IList<>`.
|
||||
* The predicates `hasQualifiedName`, `getQualifiedName`, and `getQualifiedNameWithTypes` have been deprecated, and are instead replaced by `hasFullyQualifiedName`, `getFullyQualifiedName`, and `getFullyQualifiedNameWithTypes`, respectively. The new predicates use the same format for unbound generic types as mentioned above.
|
||||
* These changes also affect models-as-data rows that refer to a field or a property belonging to a generic type. For example, instead of writing
|
||||
```yml
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
```
|
||||
one now writes
|
||||
```yml
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
```
|
||||
@@ -9,52 +9,52 @@ extensions:
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteReaderAsync", "(System.Data.DbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteReaderAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalar", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalar<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalar<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalarAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "ExecuteScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<>", "(System.Data.IDbConnection,System.String,System.Type[],System.Func<System.Object[],TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TThird,TFourth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TFirst,TSecond,TThird,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "Query<TReturn>", "(System.Data.IDbConnection,System.String,System.Type[],System.Func<System.Object[],TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Boolean,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<,,>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<>", "(System.Data.IDbConnection,System.String,System.Type[],System.Func<System.Object[],TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TFifth,TSixth,TSeventh,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TThird,TFourth,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TFourth,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TFirst,TSecond,TThird,TReturn>", "(System.Data.IDbConnection,System.String,System.Func<TFirst,TSecond,TThird,TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryAsync<TReturn>", "(System.Data.IDbConnection,System.String,System.Type[],System.Func<System.Object[],TReturn>,System.Object,System.Data.IDbTransaction,System.Boolean,System.String,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirst", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirst", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirst<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirst<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstAsync", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefault", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefault", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefault<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefault<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefaultAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefaultAsync", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefaultAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryFirstOrDefaultAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryMultiple", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QueryMultipleAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingle", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingle", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingle<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingle<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleAsync", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefault", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefault", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefault<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefault<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefaultAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefaultAsync", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefaultAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Dapper", "SqlMapper", False, "QuerySingleOrDefaultAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Data.IDbTransaction,System.Nullable<System.Int32>,System.Nullable<System.Data.CommandType>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
|
||||
@@ -1,22 +1,4 @@
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "Add", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AddAsync", "(TEntity,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AddRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AddRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AddRangeAsync", "(System.Collections.Generic.IEnumerable<TEntity>,System.Threading.CancellationToken)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AddRangeAsync", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "Attach", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AttachRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "AttachRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "Update", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "UpdateRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<>", False, "UpdateRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
|
||||
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: sinkModel
|
||||
@@ -26,4 +8,20 @@ extensions:
|
||||
- ["Microsoft.EntityFrameworkCore", "RelationalDatabaseFacadeExtensions", False, "ExecuteSqlRawAsync", "(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.String,System.Collections.Generic.IEnumerable<System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "RelationalDatabaseFacadeExtensions", False, "ExecuteSqlRawAsync", "(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.String,System.Object[])", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "RelationalDatabaseFacadeExtensions", False, "ExecuteSqlRawAsync", "(Microsoft.EntityFrameworkCore.Infrastructure.DatabaseFacade,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "RelationalQueryableExtensions", False, "FromSqlRaw<>", "(Microsoft.EntityFrameworkCore.DbSet<TEntity>,System.String,System.Object[])", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "RelationalQueryableExtensions", False, "FromSqlRaw<TEntity>", "(Microsoft.EntityFrameworkCore.DbSet<TEntity>,System.String,System.Object[])", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "Add", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AddAsync", "(TEntity,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AddRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AddRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AddRangeAsync", "(System.Collections.Generic.IEnumerable<TEntity>,System.Threading.CancellationToken)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AddRangeAsync", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "Attach", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AttachRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "AttachRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "Update", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "UpdateRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["Microsoft.EntityFrameworkCore", "DbSet<TEntity>", False, "UpdateRange", "(TEntity[])", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
|
||||
@@ -8,20 +8,20 @@ extensions:
|
||||
- ["Newtonsoft.Json.Linq", "JConstructor", False, "get_Item", "(System.Object)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JConstructor", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JContainer", True, "Add", "(System.Object)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(Newtonsoft.Json.Linq.JObject)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(Newtonsoft.Json.Linq.JObject)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(System.Object[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(System.Object[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(Newtonsoft.Json.Linq.JObject)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(Newtonsoft.Json.Linq.JObject)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(System.Object[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "JObject", "(System.Object[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Parse", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "Parse", "(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "get_Item", "(System.Object)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "get_Item", "(System.Object)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "get_Item", "(System.Object)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "get_Item", "(System.String)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.Object,Newtonsoft.Json.Linq.JToken)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JObject", False, "set_Item", "(System.String,Newtonsoft.Json.Linq.JToken)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JToken", False, "SelectToken", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json.Linq", "JToken", False, "SelectToken", "(System.String,Newtonsoft.Json.Linq.JsonSelectSettings)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
|
||||
@@ -3,16 +3,16 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeAnonymousType<>", "(System.String,T)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeAnonymousType<>", "(System.String,T,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeAnonymousType<T>", "(System.String,T)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeAnonymousType<T>", "(System.String,T,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject", "(System.String,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject", "(System.String,System.Type)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject", "(System.String,System.Type,Newtonsoft.Json.JsonConverter[])", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject", "(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<>", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<>", "(System.String,Newtonsoft.Json.JsonConverter[])", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<>", "(System.String,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<T>", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<T>", "(System.String,Newtonsoft.Json.JsonConverter[])", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeObject<T>", "(System.String,Newtonsoft.Json.JsonSerializerSettings)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeXNode", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeXNode", "(System.String,System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["Newtonsoft.Json", "JsonConvert", False, "DeserializeXNode", "(System.String,System.String,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
|
||||
@@ -8,76 +8,76 @@ extensions:
|
||||
- ["ServiceStack.OrmLite", "IUntypedSqlExpression", True, "UnsafeOr", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "IUntypedSqlExpression", True, "UnsafeSelect", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "IUntypedSqlExpression", True, "UnsafeWhere", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Column<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Column<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnDistinct<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnDistinct<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnLazy<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnLazy<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Dictionary<,>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Column<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Column<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnDistinct<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnDistinct<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnLazy<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ColumnLazy<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Dictionary<K,V>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ExecuteNonQuery", "(System.Data.IDbConnection,System.String)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ExecuteNonQuery", "(System.Data.IDbConnection,System.String,System.Action<System.Data.IDbCommand>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ExecuteNonQuery", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "ExecuteNonQuery", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Exists<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Exists<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "KeyValuePairs", "(System.Data.IDbConnection,System.String,System.System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Lookup<,>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Lookup<,>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Scalar<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Scalar<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<>", "(System.Data.IDbConnection,System.String)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<>", "(System.Data.IDbConnection,System.Type,System.String,System.Object)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SelectLazy<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SelectNonDefaults<>", "(System.Data.IDbConnection,System.String,T)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Single<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Single<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<>", "(System.Data.IDbConnection,System.String,System.Action<System.Data.IDbCommand>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnDistinctAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnDistinctAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "DictionaryAsync<,>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Lookup<K,V>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Lookup<K,V>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Scalar<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Scalar<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<T>", "(System.Data.IDbConnection,System.String)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Select<TModel>", "(System.Data.IDbConnection,System.Type,System.String,System.Object)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SelectLazy<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SelectNonDefaults<T>", "(System.Data.IDbConnection,System.String,T)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Single<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "Single<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlColumn<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<T>", "(System.Data.IDbConnection,System.String,System.Action<System.Data.IDbCommand>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlList<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApi", False, "SqlScalar<T>", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnDistinctAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ColumnDistinctAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "DictionaryAsync<K,V>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ExecuteNonQueryAsync", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ExecuteNonQueryAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ExecuteNonQueryAsync", "(System.Data.IDbConnection,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ExistsAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "KeyValuePairsAsync<,>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "KeyValuePairsAsync<,>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<,>", "(System.Data.IDbCommand,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<,>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<,>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<>", "(System.Data.IDbConnection,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<>", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectNonDefaultsAsync<>", "(System.Data.IDbConnection,System.String,T,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SingleAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SingleAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<>", "(System.Data.IDbConnection,System.String,System.Action<System.Data.IDbCommand>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ExistsAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "KeyValuePairsAsync<K,V>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "KeyValuePairsAsync<K,V>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<K,V>", "(System.Data.IDbCommand,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<K,V>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "LookupAsync<K,V>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "ScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<T>", "(System.Data.IDbConnection,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectAsync<TModel>", "(System.Data.IDbConnection,System.Type,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[2]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SelectNonDefaultsAsync<T>", "(System.Data.IDbConnection,System.String,T,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SingleAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SingleAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlColumnAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<T>", "(System.Data.IDbConnection,System.String,System.Action<System.Data.IDbCommand>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlListAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.Dictionary<System.String,System.Object>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadApiAsync", False, "SqlScalarAsync<T>", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadExpressionsApi", False, "RowCount", "(System.Data.IDbConnection,System.String,System.Collections.Generic.IEnumerable<System.Data.IDbDataParameter>)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadExpressionsApi", False, "RowCount", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteReadExpressionsApiAsync", False, "RowCountAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
@@ -86,12 +86,12 @@ extensions:
|
||||
- ["ServiceStack.OrmLite", "OrmLiteWriteApi", False, "ExecuteSql", "(System.Data.IDbConnection,System.String,System.Object)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteWriteApiAsync", False, "ExecuteSqlAsync", "(System.Data.IDbConnection,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "OrmLiteWriteApiAsync", False, "ExecuteSqlAsync", "(System.Data.IDbConnection,System.String,System.Threading.CancellationToken)", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeAnd", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeFrom", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeGroupBy", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeHaving", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeOr", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeOrderBy", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeSelect", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeSelect", "(System.String,System.Boolean)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<>", True, "UnsafeWhere", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeAnd", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeFrom", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeGroupBy", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeHaving", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeOr", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeOrderBy", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeSelect", "(System.String)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeSelect", "(System.String,System.Boolean)", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["ServiceStack.OrmLite", "SqlExpression<T>", True, "UnsafeWhere", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
|
||||
@@ -6,67 +6,67 @@ extensions:
|
||||
- ["ServiceStack", "IOneWayClient", True, "SendAllOneWay", "(System.Collections.Generic.IEnumerable<System.Object>)", "", "Argument[1].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IOneWayClient", True, "SendOneWay", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IOneWayClient", True, "SendOneWay", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Patch<>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Post<>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Put<>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Send<>", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Patch<TResponse>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Post<TResponse>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Put<TResponse>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClient", True, "Send<TResponse>", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "CustomMethodAsync", "(System.String,ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "CustomMethodAsync<>", "(System.String,ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "CustomMethodAsync<>", "(System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "CustomMethodAsync<TResponse>", "(System.String,ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "CustomMethodAsync<TResponse>", "(System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "DeleteAsync", "(ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "DeleteAsync<>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "DeleteAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "DeleteAsync<TResponse>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "DeleteAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "GetAsync", "(ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "GetAsync<>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "GetAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "GetAsync<TResponse>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "GetAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PatchAsync", "(ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PatchAsync<>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PatchAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PatchAsync<TResponse>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PatchAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PostAsync", "(ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PostAsync<>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PostAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PostAsync<TResponse>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PostAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PutAsync", "(ServiceStack.IReturnVoid,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PutAsync<>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PutAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PutAsync<TResponse>", "(ServiceStack.IReturn<TResponse>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientAsync", True, "PutAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "CustomMethod", "(System.String,ServiceStack.IReturnVoid)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "CustomMethod<>", "(System.String,ServiceStack.IReturn<TResponse>)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "CustomMethod<>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "CustomMethod<TResponse>", "(System.String,ServiceStack.IReturn<TResponse>)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "CustomMethod<TResponse>", "(System.String,System.Object)", "", "Argument[1]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Delete", "(ServiceStack.IReturnVoid)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Delete<>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Delete<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Delete<TResponse>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Delete<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Get", "(ServiceStack.IReturnVoid)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Get<>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Get<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Get<TResponse>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Get<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Patch", "(ServiceStack.IReturnVoid)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Patch<>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Patch<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Patch<TResponse>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Patch<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Post", "(ServiceStack.IReturnVoid)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Post<>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Post<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Post<TResponse>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Post<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Put", "(ServiceStack.IReturnVoid)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Put<>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Put<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Delete<>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Get<>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Post<>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Put<>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Send<>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "DeleteAsync<>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "GetAsync<>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "PostAsync<>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "PutAsync<>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "SendAsync<>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Put<TResponse>", "(ServiceStack.IReturn<TResponse>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestClientSync", True, "Put<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Delete<T>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Get<T>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Post<T>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Put<T>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGateway", True, "Send<T>", "(ServiceStack.IReturn<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "DeleteAsync<T>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "GetAsync<T>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "PostAsync<T>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "PutAsync<T>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IRestGatewayAsync", True, "SendAsync<T>", "(ServiceStack.IReturn<T>,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "Publish", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "PublishAll", "(System.Collections.Generic.IEnumerable<System.Object>)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "Send<>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "SendAll<>", "(System.Collections.Generic.IEnumerable<System.Object>)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "Send<TResponse>", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGateway", True, "SendAll<TResponse>", "(System.Collections.Generic.IEnumerable<System.Object>)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "PublishAllAsync", "(System.Collections.Generic.IEnumerable<System.Object>,System.Threading.CancellationToken)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "PublishAsync", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "SendAllAsync<>", "(System.Collections.Generic.IEnumerable<System.Object>,System.Threading.CancellationToken)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "SendAsync<>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "SendAllAsync<TResponse>", "(System.Collections.Generic.IEnumerable<System.Object>,System.Threading.CancellationToken)", "", "Argument[0].Element", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "IServiceGatewayAsync", True, "SendAsync<TResponse>", "(System.Object,System.Threading.CancellationToken)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "CustomMethod", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "CustomMethod<>", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "CustomMethodAsync<>", "(System.String,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "CustomMethod<TResponse>", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "CustomMethodAsync<TResponse>", "(System.String,System.String,System.Object,System.Threading.CancellationToken)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Delete", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "DownloadBytes", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "DownloadBytesAsync", "(System.String,System.String,System.Object)", "", "Argument[2]", "file-content-store", "manual"]
|
||||
@@ -75,8 +75,8 @@ extensions:
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Head", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Patch", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Post", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Publish<>", "(ServiceStack.Messaging.IMessage<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Publish<>", "(T)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Publish<T>", "(ServiceStack.Messaging.IMessage<T>)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Publish<T>", "(T)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- ["ServiceStack", "ServiceClientBase", True, "Put", "(System.Object)", "", "Argument[0]", "file-content-store", "manual"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
|
||||
@@ -3,20 +3,20 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Concurrent", "BlockingCollection<>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "BlockingCollection<>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentBag<>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentBag<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Int32,System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[1].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "ConcurrentDictionary", "(System.Int32,System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[1].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentQueue<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentStack<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "IProducerConsumerCollection<>", True, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "BlockingCollection<T>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "BlockingCollection<T>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentBag<T>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentBag<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "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<TKey,TValue>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "ConcurrentDictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "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<TKey,TValue>", False, "ConcurrentDictionary", "(System.Int32,System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "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<TKey,TValue>", False, "ConcurrentDictionary", "(System.Int32,System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "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<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentDictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentQueue<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "ConcurrentStack<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Concurrent", "IProducerConsumerCollection<T>", True, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
|
||||
@@ -3,84 +3,84 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>+KeyCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary<,>+KeyCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<,>+ValueCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary<,>+ValueCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "HashSet<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.HashSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<>", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<>", True, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "set_Item", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<,>", True, "set_Item", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IEnumerable<>", True, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator<>.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<>", True, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<>", True, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<>", True, "set_Item", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ISet<>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "KeyValuePair<,>", False, "KeyValuePair", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "KeyValuePair<,>", False, "KeyValuePair", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<>", False, "Find", "(T)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<>", False, "FindLast", "(T)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.LinkedList<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "AsReadOnly", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "ForEach", "(System.Action<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.List<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<>", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Queue<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<>", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>+KeyCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary<,>+KeyCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<,>+ValueCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary<,>+ValueCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator<>.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>+KeyList", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<,>+ValueList", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedSet<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedSet<>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Stack<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<>", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<>", False, "Pop", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "Dictionary", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>,System.Collections.Generic.IEqualityComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>+KeyCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary`2+KeyCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Dictionary<TKey,TValue>+ValueCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Dictionary`2+ValueCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "HashSet<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.HashSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<T>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<T>", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ICollection<T>", True, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "set_Item", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IDictionary<TKey,TValue>", True, "set_Item", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IEnumerable<T>", True, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<T>", True, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<T>", True, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "IList<T>", True, "set_Item", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "ISet<T>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "KeyValuePair<TKey,TValue>", False, "KeyValuePair", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "KeyValuePair<TKey,TValue>", False, "KeyValuePair", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<T>", False, "Find", "(T)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<T>", False, "FindLast", "(T)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "LinkedList<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.LinkedList`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "AsReadOnly", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "ForEach", "(System.Action<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.List`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "List<T>", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<T>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Queue`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Queue<T>", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "SortedDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>+KeyCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary`2+KeyCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedDictionary<TKey,TValue>+ValueCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedDictionary`2+ValueCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>+KeyList", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>+ValueList", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "SortedList", "(System.Collections.Generic.IDictionary<TKey,TValue>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedList<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedSet<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.SortedSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "SortedSet<T>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<T>", False, "CopyTo", "(T[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.Stack`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<T>", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Generic", "Stack<T>", False, "Pop", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
|
||||
@@ -3,87 +3,87 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Immutable", "IImmutableDictionary<,>", True, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableDictionary<,>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<>", True, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableQueue<>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableSet<>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableSet<>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableStack<>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange", "(System.Collections.Immutable.ImmutableArray<>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange", "(System.Collections.Immutable.ImmutableArray<>+Builder)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange", "(T[])", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange<>", "(System.Collections.Immutable.ImmutableArray<TDerived>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange<>", "(System.Collections.Immutable.ImmutableArray<TDerived>+Builder)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "AddRange<>", "(TDerived[])", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator<>.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<,>+Builder", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<>", False, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableHashSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableHashSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableList<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "Reverse", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableList<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<>+Builder", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableQueue<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableQueue<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedDictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedDictionary<,>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<,>+Builder", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedSet<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<>+Builder", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableStack<>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableStack<>+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableDictionary<TKey,TValue>", True, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableDictionary<TKey,TValue>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<T>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<T>", True, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableList<T>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableQueue<T>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableSet<T>", True, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableSet<T>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "IImmutableStack<T>", True, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange", "(System.Collections.Immutable.ImmutableArray<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange", "(System.Collections.Immutable.ImmutableArray<T>+Builder)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange", "(T[])", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange<TDerived>", "(System.Collections.Immutable.ImmutableArray<TDerived>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange<TDerived>", "(System.Collections.Immutable.ImmutableArray<TDerived>+Builder)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "AddRange<TDerived>", "(TDerived[])", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableArray<T>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "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<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "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<TKey,TValue>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableDictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>+Builder", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableDictionary<TKey,TValue>+Builder", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<T>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<T>", False, "Clear", "()", "", "Argument[this].WithoutElement", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableHashSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableHashSet<T>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableHashSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableList`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Insert", "(System.Int32,T)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "Reverse", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "Find", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "FindAll", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "FindLast", "(System.Predicate<T>)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableList`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "GetRange", "(System.Int32,System.Int32)", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableList<T>+Builder", False, "InsertRange", "(System.Int32,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableQueue<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableQueue`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "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<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "Add", "(TKey,TValue)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "Add", "(TKey,TValue)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedDictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "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<TKey,TValue>+Builder", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>+Builder", False, "AddRange", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedDictionary`2+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>+Builder", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedDictionary<TKey,TValue>+Builder", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>", False, "Add", "(T)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>+Builder", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableSortedSet`1+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableSortedSet<T>+Builder", False, "Reverse", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.Immutable", "ImmutableStack<T>", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Immutable.ImmutableStack`1+Enumerator.Current]", "value", "manual"]
|
||||
|
||||
@@ -3,12 +3,12 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.ObjectModel", "KeyedCollection<,>", False, "get_Item", "(TKey)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyCollection<>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "ReadOnlyDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "ReadOnlyDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<,>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "KeyedCollection<TKey,TItem>", False, "get_Item", "(TKey)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyCollection<T>", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "Add", "(System.Collections.Generic.KeyValuePair<TKey,TValue>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "ReadOnlyDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "ReadOnlyDictionary", "(System.Collections.Generic.IDictionary<TKey,TValue>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "get_Item", "(TKey)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections.ObjectModel", "ReadOnlyDictionary<TKey,TValue>", False, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
|
||||
@@ -3,9 +3,9 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "get_Item", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "set_Item", "(System.Int32,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "set_Item", "(System.Int32,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "get_Item", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "set_Item", "(System.Int32,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "IOrderedDictionary", True, "set_Item", "(System.Int32,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "NameValueCollection", False, "Add", "(System.Collections.Specialized.NameValueCollection)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "NameValueCollection", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections.Specialized", "NameValueCollection", False, "CopyTo", "(System.Array,System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
|
||||
@@ -13,27 +13,27 @@ extensions:
|
||||
- ["System.Collections", "ArrayList", False, "Repeat", "(System.Object,System.Int32)", "", "Argument[0]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "BitArray", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.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", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.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", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "Hashtable", False, "Hashtable", "(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "ICollection", True, "CopyTo", "(System.Array,System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "Add", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "Add", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "Add", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "Add", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Item", "(System.Object)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "set_Item", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "set_Item", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Item", "(System.Object)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Keys", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "get_Values", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "set_Item", "(System.Object,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "IDictionary", True, "set_Item", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "IEnumerable", True, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.IEnumerator.Current]", "value", "manual"]
|
||||
- ["System.Collections", "IList", True, "Add", "(System.Object)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Collections", "IList", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
@@ -44,12 +44,12 @@ extensions:
|
||||
- ["System.Collections", "Queue", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "Queue", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "GetByIndex", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "GetValueList", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "GetByIndex", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "GetValueList", "()", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Collections", "SortedList", False, "SortedList", "(System.Collections.IDictionary,System.Collections.IComparer)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Collections", "Stack", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Collections", "Stack", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Collections", "Stack", False, "Peek", "()", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
|
||||
@@ -16,23 +16,23 @@ extensions:
|
||||
- ["System.ComponentModel", "ListSortDescriptionCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "ListSortDescriptionCollection", False, "set_Item", "(System.Int32,System.ComponentModel.ListSortDescription)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.ComponentModel.PropertyDescriptor)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.ComponentModel.PropertyDescriptor)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.ComponentModel.PropertyDescriptor)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.Object)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.Object)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "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", False, "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", False, "Add", "(System.Object)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Add", "(System.Object)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Find", "(System.String,System.Boolean)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.IEnumerator.Current]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "Insert", "(System.Int32,System.ComponentModel.PropertyDescriptor)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[],System.Boolean)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[],System.Boolean)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[])", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[],System.Boolean)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "PropertyDescriptorCollection", "(System.ComponentModel.PropertyDescriptor[],System.Boolean)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.Int32)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.Object)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.String)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.String)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "set_Item", "(System.Int32,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "set_Item", "(System.Int32,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "get_Item", "(System.String)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "set_Item", "(System.Int32,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "set_Item", "(System.Int32,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.ComponentModel", "PropertyDescriptorCollection", False, "set_Item", "(System.Object,System.Object)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
@@ -20,11 +20,11 @@ extensions:
|
||||
- ["System.Data.Common", "DataTableMappingCollection", False, "set_Item", "(System.Int32,System.Data.Common.DataTableMapping)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Common", "DataTableMappingCollection", False, "set_Item", "(System.String,System.Data.Common.DataTableMapping)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Common", "DbBatchCommandCollection", True, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "Add", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "Add", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "get_Item", "(System.String)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "set_Item", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "set_Item", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "Add", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "Add", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "get_Item", "(System.String)", "", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "set_Item", "(System.String,System.Object)", "", "Argument[0]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbConnectionStringBuilder", False, "set_Item", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Data.Common", "DbParameterCollection", True, "Add", "(System.Object)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Common", "DbParameterCollection", True, "AddRange", "(System.Array)", "", "Argument[0].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Common", "DbParameterCollection", True, "Insert", "(System.Int32,System.Object)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
@@ -1,12 +1,4 @@
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Data.Entity", "DbSet<>", False, "Add", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Entity", "DbSet<>", False, "AddRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Data.Entity", "DbSet<>", False, "Attach", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: sinkModel
|
||||
@@ -18,5 +10,12 @@ extensions:
|
||||
- ["System.Data.Entity", "Database", False, "ExecuteSqlCommandAsync", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["System.Data.Entity", "Database", False, "ExecuteSqlCommandAsync", "(System.String,System.Threading.CancellationToken,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["System.Data.Entity", "Database", False, "SqlQuery", "(System.Type,System.String,System.Object[])", "", "Argument[1]", "sql-injection", "manual"]
|
||||
- ["System.Data.Entity", "Database", False, "SqlQuery<>", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["System.Data.Entity", "Database", False, "SqlQuery<TElement>", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- ["System.Data.Entity", "DbSet", False, "SqlQuery", "(System.String,System.Object[])", "", "Argument[0]", "sql-injection", "manual"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Data.Entity", "DbSet<TEntity>", False, "Add", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data.Entity", "DbSet<TEntity>", False, "AddRange", "(System.Collections.Generic.IEnumerable<TEntity>)", "", "Argument[0].WithElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Data.Entity", "DbSet<TEntity>", False, "Attach", "(TEntity)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
@@ -31,27 +31,27 @@ extensions:
|
||||
- ["System.Data", "DataView", False, "Find", "(System.Object[])", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "DataView", False, "get_Item", "(System.Int32)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "DataViewSettingCollection", False, "CopyTo", "(System.Data.DataViewSetting[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Cast<>", "(System.Data.EnumerableRowCollection)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Select<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,S>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Select<,>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,S>)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<,>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Where<>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Where<>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Cast<TResult>", "(System.Data.EnumerableRowCollection)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Select<TRow,S>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,S>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Select<TRow,S>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,S>)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenBy<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "ThenByDescending<TRow,TKey>", "(System.Data.OrderedEnumerableRowCollection<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Where<TRow>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "EnumerableRowCollectionExtensions", False, "Where<TRow>", "(System.Data.EnumerableRowCollection<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "IColumnMappingCollection", True, "get_Item", "(System.String)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "IColumnMappingCollection", True, "set_Item", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data", "IDataParameterCollection", True, "get_Item", "(System.String)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
@@ -59,17 +59,17 @@ extensions:
|
||||
- ["System.Data", "ITableMappingCollection", True, "get_Item", "(System.String)", "", "Argument[this].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "ITableMappingCollection", True, "set_Item", "(System.String,System.Object)", "", "Argument[1]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Data", "PropertyCollection", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "AsEnumerable<>", "(System.Data.TypedTableBase<TRow>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "ElementAtOrDefault<>", "(System.Data.TypedTableBase<TRow>,System.Int32)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Select<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,S>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Select<,>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,S>)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Where<>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Where<>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "AsEnumerable<TRow>", "(System.Data.TypedTableBase<TRow>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "ElementAtOrDefault<TRow>", "(System.Data.TypedTableBase<TRow>,System.Int32)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderBy<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "OrderByDescending<TRow,TKey>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,TKey>,System.Collections.Generic.IComparer<TKey>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Select<TRow,S>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,S>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Select<TRow,S>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,S>)", "", "Argument[1].ReturnValue", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Where<TRow>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Data", "TypedTableBaseExtensions", False, "Where<TRow>", "(System.Data.TypedTableBase<TRow>,System.Func<TRow,System.Boolean>)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
|
||||
@@ -3,10 +3,10 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "ActivityTagsCollection", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "ActivityTagsCollection", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "ActivityTagsCollection", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "ActivityTagsCollection", "(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>)", "", "Argument[0].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ActivityTagsCollection", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Diagnostics.ActivityTagsCollection+Enumerator.Current]", "value", "manual"]
|
||||
- ["System.Diagnostics", "ProcessModuleCollection", False, "CopyTo", "(System.Diagnostics.ProcessModule[],System.Int32)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System.Diagnostics", "ProcessThreadCollection", False, "Add", "(System.Diagnostics.ProcessThread)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
@@ -3,5 +3,5 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Dynamic", "ExpandoObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Dynamic", "ExpandoObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Dynamic", "ExpandoObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Key]", "value", "manual"]
|
||||
- ["System.Dynamic", "ExpandoObject", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair`2.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair`2.Value]", "value", "manual"]
|
||||
|
||||
@@ -3,24 +3,24 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: sourceModel
|
||||
data:
|
||||
- ["System.IO", "File", False, "AppendText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "Create", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "CreateText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "Open", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "OpenWrite", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "AppendText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "Create", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "CreateText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "Open", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "OpenWrite", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileStream", False, "FileStream", "", "", "Argument[this]", "file", "manual"]
|
||||
- ["System.IO", "FileStream", False, "FileStream", "", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.Boolean)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.Boolean,System.Text.Encoding)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.Boolean,System.Text.Encoding,System.Int32)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.Text.Encoding,System.IO.FileStreamOptions)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.IO.FileStreamOptions)", "", "Argument[this]", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "Open", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "OpenWrite", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "Create", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "CreateText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "File", False, "AppendText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "Open", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "OpenWrite", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "Create", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "CreateText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "FileInfo", False, "AppendText", "", "", "ReturnValue", "file-write", "manual"]
|
||||
- ["System.IO", "StreamWriter", False, "StreamWriter", "(System.String,System.Text.Encoding,System.IO.FileStreamOptions)", "", "Argument[this]", "file-write", "manual"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Net.Http", "HttpRequestOptions", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Key]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Key]", "value", "manual"]
|
||||
- ["System.Net.Http", "HttpRequestOptions", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "Argument[0].Property[System.Collections.Generic.KeyValuePair<,>.Value]", "Argument[this].Element.Property[System.Collections.Generic.KeyValuePair<,>.Value]", "value", "manual"]
|
||||
- ["System.Net.Http", "HttpRequestOptions", False, "Add", "(System.Collections.Generic.KeyValuePair<System.String,System.Object>)", "", "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<System.String,System.Object>)", "", "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"]
|
||||
- ["System.Net.Http", "MultipartFormDataContent", False, "Add", "(System.Net.Http.HttpContent)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
|
||||
@@ -3,7 +3,7 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System.Runtime.CompilerServices", "ConditionalWeakTable<,>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "ConfiguredTaskAwaitable<>", False, "GetAwaiter", "()", "", "Argument[this].SyntheticField[m_configuredTaskAwaiter]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "ConfiguredTaskAwaitable<>+ConfiguredTaskAwaiter", False, "GetResult", "()", "", "Argument[this].SyntheticField[m_task_configured_task_awaitable].Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "TaskAwaiter<>", False, "GetResult", "()", "", "Argument[this].SyntheticField[m_task_task_awaiter].Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "ConditionalWeakTable<TKey,TValue>", False, "Clear", "()", "", "Argument[this].WithoutElement", "Argument[this]", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "ConfiguredTaskAwaitable<TResult>", False, "GetAwaiter", "()", "", "Argument[this].SyntheticField[m_configuredTaskAwaiter]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "ConfiguredTaskAwaitable<TResult>+ConfiguredTaskAwaiter", False, "GetResult", "()", "", "Argument[this].SyntheticField[m_task_configured_task_awaitable].Property[System.Threading.Tasks.Task`1.Result]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Runtime.CompilerServices", "TaskAwaiter<TResult>", False, "GetResult", "()", "", "Argument[this].SyntheticField[m_task_task_awaiter].Property[System.Threading.Tasks.Task`1.Result]", "ReturnValue", "value", "manual"]
|
||||
|
||||
@@ -89,11 +89,11 @@ extensions:
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin", "(System.String,System.String[])", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin", "(System.String,System.String[])", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin", "(System.String,System.String[])", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<T>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<T>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<T>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<T>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendJoin<T>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendLine", "()", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendLine", "(System.String)", "", "Argument[0]", "Argument[this].Element", "value", "manual"]
|
||||
- ["System.Text", "StringBuilder", False, "AppendLine", "(System.String)", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
|
||||
@@ -8,172 +8,172 @@ extensions:
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task,System.Object>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task,System.Object>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "FromResult<>", "(TResult)", "", "Argument[0]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<>", "(System.Func<System.Threading.Tasks.Task<TResult>>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<>", "(System.Func<System.Threading.Tasks.Task<TResult>>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<>", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<>", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,System.Object,TResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "ContinueWith<TResult>", "(System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "FromResult<TResult>", "(TResult)", "", "Argument[0]", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<TResult>", "(System.Func<System.Threading.Tasks.Task<TResult>>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<TResult>", "(System.Func<System.Threading.Tasks.Task<TResult>>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<TResult>", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Run<TResult>", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Task", "(System.Action<System.Object>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Task", "(System.Action<System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Task", "(System.Action<System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "Task", "(System.Action<System.Object>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAll<>", "(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>>)", "", "Argument[0].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAll<>", "(System.Threading.Tasks.Task<TResult>[])", "", "Argument[0].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAny<>", "(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>>)", "", "Argument[0].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAny<>", "(System.Threading.Tasks.Task<TResult>,System.Threading.Tasks.Task<TResult>)", "", "Argument[0].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAny<>", "(System.Threading.Tasks.Task<TResult>,System.Threading.Tasks.Task<TResult>)", "", "Argument[1].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAny<>", "(System.Threading.Tasks.Task<TResult>[])", "", "Argument[0].Element.Property[System.Threading.Tasks.Task<>.Result]", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result].Element", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ConfigureAwait", "(System.Boolean)", "", "Argument[this]", "ReturnValue.SyntheticField[m_configuredTaskAwaiter].SyntheticField[m_task_configured_task_awaitable]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>,System.Object>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>>)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>>,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<>>,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "ContinueWith<>", "(System.Func<System.Threading.Tasks.Task<>,TNewResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "GetAwaiter", "()", "", "Argument[this]", "ReturnValue.SyntheticField[m_task_task_awaiter]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "Task", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<>", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<,>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task", False, "WhenAll<TResult>", "(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>>)", "", "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", False, "WhenAll<TResult>", "(System.Threading.Tasks.Task<TResult>[])", "", "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", False, "WhenAny<TResult>", "(System.Collections.Generic.IEnumerable<System.Threading.Tasks.Task<TResult>>)", "", "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", False, "WhenAny<TResult>", "(System.Threading.Tasks.Task<TResult>,System.Threading.Tasks.Task<TResult>)", "", "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", False, "WhenAny<TResult>", "(System.Threading.Tasks.Task<TResult>,System.Threading.Tasks.Task<TResult>)", "", "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", False, "WhenAny<TResult>", "(System.Threading.Tasks.Task<TResult>[])", "", "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<TResult>", False, "ConfigureAwait", "(System.Boolean)", "", "Argument[this]", "ReturnValue.SyntheticField[m_configuredTaskAwaiter].SyntheticField[m_task_configured_task_awaitable]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>,System.Object>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>>)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>>,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith", "(System.Action<System.Threading.Tasks.Task<TResult>>,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[1]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,System.Object,TNewResult>,System.Object,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.CancellationToken)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "ContinueWith<TNewResult>", "(System.Func<System.Threading.Tasks.Task<TResult>,TNewResult>,System.Threading.Tasks.TaskScheduler)", "", "Argument[this]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "GetAwaiter", "()", "", "Argument[this]", "ReturnValue.SyntheticField[m_task_task_awaiter]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "Task", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "Task<TResult>", False, "get_Result", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>[]>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAll<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult,TResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Action<System.Threading.Tasks.Task<TAntecedentResult>>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "ContinueWhenAny<TResult>", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew", "(System.Action<System.Object>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew", "(System.Action<System.Object>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew", "(System.Action<System.Object>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew", "(System.Action<System.Object>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<>", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAll<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "ContinueWhenAny<>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<>", False, "StartNew", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task<>.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory", False, "StartNew<TResult>", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAll<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>[],TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny", "(System.Threading.Tasks.Task[],System.Func<System.Threading.Tasks.Task,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskContinuationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[0]", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "ContinueWhenAny<TAntecedentResult>", "(System.Threading.Tasks.Task<TAntecedentResult>[],System.Func<System.Threading.Tasks.Task<TAntecedentResult>,TResult>,System.Threading.Tasks.TaskContinuationOptions)", "", "Argument[1].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<System.Object,TResult>,System.Object,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[1]", "Argument[0].Parameter[0]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<TResult>)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<TResult>,System.Threading.CancellationToken)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<TResult>,System.Threading.CancellationToken,System.Threading.Tasks.TaskCreationOptions,System.Threading.Tasks.TaskScheduler)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
- ["System.Threading.Tasks", "TaskFactory<TResult>", False, "StartNew", "(System.Func<TResult>,System.Threading.Tasks.TaskCreationOptions)", "", "Argument[0].ReturnValue", "ReturnValue.Property[System.Threading.Tasks.Task`1.Result]", "value", "manual"]
|
||||
|
||||
@@ -10,21 +10,21 @@ extensions:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["System", "Array", False, "AsReadOnly<>", "(T[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "AsReadOnly<T>", "(T[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Clear", "(System.Array)", "", "Argument[0].WithoutElement", "Argument[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "Clear", "(System.Array,System.Int32,System.Int32)", "", "Argument[0].WithoutElement", "Argument[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "Clone", "()", "", "Argument[this].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "CopyTo", "(System.Array,System.Int64)", "", "Argument[this].Element", "Argument[0].Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Find<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "Find<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "FindAll<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "FindAll<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "FindLast<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "FindLast<>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "Find<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "Find<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "FindAll<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "FindAll<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "FindLast<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "Argument[1].Parameter[0]", "value", "manual"]
|
||||
- ["System", "Array", False, "FindLast<T>", "(T[],System.Predicate<T>)", "", "Argument[0].Element", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse", "(System.Array)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse", "(System.Array,System.Int32,System.Int32)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse<>", "(T[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse<>", "(T[],System.Int32,System.Int32)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse<T>", "(T[])", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Array", False, "Reverse<T>", "(T[],System.Int32,System.Int32)", "", "Argument[0].Element", "ReturnValue.Element", "value", "manual"]
|
||||
- ["System", "Boolean", False, "Parse", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Boolean", False, "TryParse", "(System.ReadOnlySpan<System.Char>,System.Boolean)", "", "Argument[0].Element", "Argument[1]", "taint", "manual"]
|
||||
- ["System", "Boolean", False, "TryParse", "(System.ReadOnlySpan<System.Char>,System.Boolean)", "", "Argument[0].Element", "ReturnValue", "taint", "manual"]
|
||||
@@ -370,16 +370,16 @@ extensions:
|
||||
- ["System", "Int32", False, "TryParse", "(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Int32", False, "TryParse", "(System.String,System.Int32)", "", "Argument[0]", "Argument[1]", "taint", "manual"]
|
||||
- ["System", "Int32", False, "TryParse", "(System.String,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Lazy<>", False, "Lazy", "(System.Func<T>)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy<>.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<>", False, "Lazy", "(System.Func<T>,System.Boolean)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy<>.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<>", False, "Lazy", "(System.Func<T>,System.Threading.LazyThreadSafetyMode)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy<>.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<>", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Nullable<>", False, "GetValueOrDefault", "()", "", "Argument[this].Property[System.Nullable<>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<>", False, "GetValueOrDefault", "(T)", "", "Argument[0]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<>", False, "GetValueOrDefault", "(T)", "", "Argument[this].Property[System.Nullable<>.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<>", False, "Nullable", "(T)", "", "Argument[0]", "Argument[this].Property[System.Nullable<>.Value]", "value", "manual"]
|
||||
- ["System", "Nullable<>", False, "get_HasValue", "()", "", "Argument[this].Property[System.Nullable<>.Value]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Nullable<>", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Lazy<T>", False, "Lazy", "(System.Func<T>)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy`1.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<T>", False, "Lazy", "(System.Func<T>,System.Boolean)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy`1.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<T>", False, "Lazy", "(System.Func<T>,System.Threading.LazyThreadSafetyMode)", "", "Argument[0].ReturnValue", "Argument[this].Property[System.Lazy`1.Value]", "value", "manual"]
|
||||
- ["System", "Lazy<T>", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Nullable<T>", False, "GetValueOrDefault", "()", "", "Argument[this].Property[System.Nullable`1.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<T>", False, "GetValueOrDefault", "(T)", "", "Argument[0]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<T>", False, "GetValueOrDefault", "(T)", "", "Argument[this].Property[System.Nullable`1.Value]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Nullable<T>", False, "Nullable", "(T)", "", "Argument[0]", "Argument[this].Property[System.Nullable`1.Value]", "value", "manual"]
|
||||
- ["System", "Nullable<T>", False, "get_HasValue", "()", "", "Argument[this].Property[System.Nullable`1.Value]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Nullable<T>", False, "get_Value", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Clone", "()", "", "Argument[this]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "String", False, "Concat", "(System.Collections.Generic.IEnumerable<System.String>)", "", "Argument[0].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Concat", "(System.Object)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
@@ -408,7 +408,7 @@ extensions:
|
||||
- ["System", "String", False, "Concat", "(System.String,System.String,System.String,System.String)", "", "Argument[2]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Concat", "(System.String,System.String,System.String,System.String)", "", "Argument[3]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Concat", "(System.String[])", "", "Argument[0].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Concat<>", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Concat<T>", "(System.Collections.Generic.IEnumerable<T>)", "", "Argument[0].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Copy", "(System.String)", "", "Argument[0]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "String", False, "Format", "(System.IFormatProvider,System.String,System.Object)", "", "Argument[1]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Format", "(System.IFormatProvider,System.String,System.Object)", "", "Argument[2]", "ReturnValue", "taint", "manual"]
|
||||
@@ -433,7 +433,7 @@ extensions:
|
||||
- ["System", "String", False, "Format", "(System.String,System.Object[])", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Format", "(System.String,System.Object[])", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.CharEnumerator.Current]", "value", "manual"]
|
||||
- ["System", "String", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator<>.Current]", "value", "manual"]
|
||||
- ["System", "String", False, "GetEnumerator", "()", "", "Argument[this].Element", "ReturnValue.Property[System.Collections.Generic.IEnumerator`1.Current]", "value", "manual"]
|
||||
- ["System", "String", False, "Insert", "(System.Int32,System.String)", "", "Argument[1]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Insert", "(System.Int32,System.String)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join", "(System.Char,System.Object[])", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
@@ -450,10 +450,10 @@ extensions:
|
||||
- ["System", "String", False, "Join", "(System.String,System.String[])", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join", "(System.String,System.String[],System.Int32,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join", "(System.String,System.String[],System.Int32,System.Int32)", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<T>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<T>", "(System.Char,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<T>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[0]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Join<T>", "(System.String,System.Collections.Generic.IEnumerable<T>)", "", "Argument[1].Element", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Normalize", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "Normalize", "(System.Text.NormalizationForm)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "PadLeft", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
@@ -497,237 +497,237 @@ extensions:
|
||||
- ["System", "String", False, "TrimStart", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "TrimStart", "(System.Char)", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "String", False, "TrimStart", "(System.Char[])", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[3]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[4]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[5]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[6]", "ReturnValue.Property[System.Tuple<,,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "ReturnValue.Property[System.Tuple<,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "ReturnValue.Property[System.Tuple<,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "ReturnValue.Property[System.Tuple<,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "ReturnValue.Property[System.Tuple<,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "ReturnValue.Property[System.Tuple<,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "ReturnValue.Property[System.Tuple<,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[3]", "ReturnValue.Property[System.Tuple<,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[2]", "ReturnValue.Property[System.Tuple<,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,>", "(T1,T2)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<,>", "(T1,T2)", "", "Argument[1]", "ReturnValue.Property[System.Tuple<,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<>", "(T1)", "", "Argument[0]", "ReturnValue.Property[System.Tuple<>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[3]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[4]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[5]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[6]", "Argument[this].Property[System.Tuple<,,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,,>.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "Argument[this].Property[System.Tuple<,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "Argument[this].Property[System.Tuple<,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "Argument[this].Property[System.Tuple<,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "Argument[this].Property[System.Tuple<,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,,>.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "Argument[this].Property[System.Tuple<,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "Argument[this].Property[System.Tuple<,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "Argument[this].Property[System.Tuple<,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "Argument[this].Property[System.Tuple<,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "Argument[this].Property[System.Tuple<,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[3]", "Argument[this].Property[System.Tuple<,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "Tuple", "(T1,T2,T3)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "Tuple", "(T1,T2,T3)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "Tuple", "(T1,T2,T3)", "", "Argument[2]", "Argument[this].Property[System.Tuple<,,>.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,>", False, "Tuple", "(T1,T2)", "", "Argument[0]", "Argument[this].Property[System.Tuple<,>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<,>", False, "Tuple", "(T1,T2)", "", "Argument[1]", "Argument[this].Property[System.Tuple<,>.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<>", False, "Tuple", "(T1)", "", "Argument[0]", "Argument[this].Property[System.Tuple<>.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple<>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple<,,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple<,,,,,,>.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,,>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple<,,,,,>.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple<,,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple<,,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple<,,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple<,,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,,>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple<,,,,>.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple<,,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple<,,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple<,,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,,>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple<,,,>.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple<,,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple<,,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,,>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple<,,>.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,>", "(System.Tuple<T1,T2>,T1,T2)", "", "Argument[0].Property[System.Tuple<,>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<,>", "(System.Tuple<T1,T2>,T1,T2)", "", "Argument[0].Property[System.Tuple<,>.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<>", "(System.Tuple<T1>,T1)", "", "Argument[0].Property[System.Tuple<>.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`8.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`8.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`8.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[3]", "ReturnValue.Property[System.Tuple`8.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[4]", "ReturnValue.Property[System.Tuple`8.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[5]", "ReturnValue.Property[System.Tuple`8.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[6]", "ReturnValue.Property[System.Tuple`8.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`7.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`7.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`7.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "ReturnValue.Property[System.Tuple`7.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "ReturnValue.Property[System.Tuple`7.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "ReturnValue.Property[System.Tuple`7.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "ReturnValue.Property[System.Tuple`7.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`6.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`6.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`6.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "ReturnValue.Property[System.Tuple`6.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "ReturnValue.Property[System.Tuple`6.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "ReturnValue.Property[System.Tuple`6.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`5.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`5.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`5.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "ReturnValue.Property[System.Tuple`5.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "ReturnValue.Property[System.Tuple`5.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`4.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`4.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`4.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[3]", "ReturnValue.Property[System.Tuple`4.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`3.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`3.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[2]", "ReturnValue.Property[System.Tuple`3.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2>", "(T1,T2)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`2.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1,T2>", "(T1,T2)", "", "Argument[1]", "ReturnValue.Property[System.Tuple`2.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple", False, "Create<T1>", "(T1)", "", "Argument[0]", "ReturnValue.Property[System.Tuple`1.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[0]", "Argument[this].Property[System.Tuple`8.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[1]", "Argument[this].Property[System.Tuple`8.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[2]", "Argument[this].Property[System.Tuple`8.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[3]", "Argument[this].Property[System.Tuple`8.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[4]", "Argument[this].Property[System.Tuple`8.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[5]", "Argument[this].Property[System.Tuple`8.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[6]", "Argument[this].Property[System.Tuple`8.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`8.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "Argument[this].Property[System.Tuple`7.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "Argument[this].Property[System.Tuple`7.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "Argument[this].Property[System.Tuple`7.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "Argument[this].Property[System.Tuple`7.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "Argument[this].Property[System.Tuple`7.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "Argument[this].Property[System.Tuple`7.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "Tuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "Argument[this].Property[System.Tuple`7.Item7]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`7.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "Argument[this].Property[System.Tuple`6.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "Argument[this].Property[System.Tuple`6.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "Argument[this].Property[System.Tuple`6.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "Argument[this].Property[System.Tuple`6.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "Argument[this].Property[System.Tuple`6.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "Tuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "Argument[this].Property[System.Tuple`6.Item6]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`6.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "Argument[this].Property[System.Tuple`5.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "Argument[this].Property[System.Tuple`5.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "Argument[this].Property[System.Tuple`5.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "Argument[this].Property[System.Tuple`5.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "Tuple", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "Argument[this].Property[System.Tuple`5.Item5]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`5.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`5.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`5.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`5.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`5.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[0]", "Argument[this].Property[System.Tuple`4.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[1]", "Argument[this].Property[System.Tuple`4.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[2]", "Argument[this].Property[System.Tuple`4.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "Tuple", "(T1,T2,T3,T4)", "", "Argument[3]", "Argument[this].Property[System.Tuple`4.Item4]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`4.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`4.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`4.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`4.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "Tuple", "(T1,T2,T3)", "", "Argument[0]", "Argument[this].Property[System.Tuple`3.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "Tuple", "(T1,T2,T3)", "", "Argument[1]", "Argument[this].Property[System.Tuple`3.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "Tuple", "(T1,T2,T3)", "", "Argument[2]", "Argument[this].Property[System.Tuple`3.Item3]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`3.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`3.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`3.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2>", False, "Tuple", "(T1,T2)", "", "Argument[0]", "Argument[this].Property[System.Tuple`2.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2>", False, "Tuple", "(T1,T2)", "", "Argument[1]", "Argument[this].Property[System.Tuple`2.Item2]", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`2.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1,T2>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`2.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "Tuple<T1>", False, "Tuple", "(T1)", "", "Argument[0]", "Argument[this].Property[System.Tuple`1.Item1]", "value", "manual"]
|
||||
- ["System", "Tuple<T1>", False, "get_Item", "(System.Int32)", "", "Argument[this].Property[System.Tuple`1.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20,T21>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19,T20>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18,T19>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17,T18>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16,T17>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15,T16>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14,System.Tuple<T15>>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13,T14>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12,T13>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11,T12>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10,T11>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9,T10>>,T1,T2,T3,T4,T5,T6,T7,T8,T9,T10)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8,T9>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8,T9>>,T1,T2,T3,T4,T5,T6,T7,T8,T9)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7,T8>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7,System.Tuple<T8>>,T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0].Property[System.Tuple`8.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6,T7>", "(System.Tuple<T1,T2,T3,T4,T5,T6,T7>,T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0].Property[System.Tuple`7.Item7]", "Argument[7]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5,T6>", "(System.Tuple<T1,T2,T3,T4,T5,T6>,T1,T2,T3,T4,T5,T6)", "", "Argument[0].Property[System.Tuple`6.Item6]", "Argument[6]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple`5.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple`5.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple`5.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple`5.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4,T5>", "(System.Tuple<T1,T2,T3,T4,T5>,T1,T2,T3,T4,T5)", "", "Argument[0].Property[System.Tuple`5.Item5]", "Argument[5]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple`4.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple`4.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple`4.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3,T4>", "(System.Tuple<T1,T2,T3,T4>,T1,T2,T3,T4)", "", "Argument[0].Property[System.Tuple`4.Item4]", "Argument[4]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple`3.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple`3.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2,T3>", "(System.Tuple<T1,T2,T3>,T1,T2,T3)", "", "Argument[0].Property[System.Tuple`3.Item3]", "Argument[3]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2>", "(System.Tuple<T1,T2>,T1,T2)", "", "Argument[0].Property[System.Tuple`2.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1,T2>", "(System.Tuple<T1,T2>,T1,T2)", "", "Argument[0].Property[System.Tuple`2.Item2]", "Argument[2]", "value", "manual"]
|
||||
- ["System", "TupleExtensions", False, "Deconstruct<T1>", "(System.Tuple<T1>,T1)", "", "Argument[0].Property[System.Tuple`1.Item1]", "Argument[1]", "value", "manual"]
|
||||
- ["System", "Uri", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "manual"]
|
||||
- ["System", "Uri", False, "Uri", "(System.String)", "", "Argument[0]", "Argument[this]", "taint", "manual"]
|
||||
- ["System", "Uri", False, "Uri", "(System.String,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "manual"]
|
||||
@@ -735,108 +735,108 @@ 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", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[6]", "ReturnValue.Field[System.ValueTuple<,,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,,>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "ReturnValue.Field[System.ValueTuple<,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,,>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple<,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple<,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,,>", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple<,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,,>", "(T1,T2,T3,T4)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple<,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,,>", "(T1,T2,T3)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple<,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,>", "(T1,T2)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<,>", "(T1,T2)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple<,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<>", "(T1)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple<>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[6]", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,,>.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,,>.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple<,,,,,>.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,,>.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple<,,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple<,,,,>.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,,>.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple<,,,>.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,,>.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple<,,>.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,,>.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,>", False, "ValueTuple", "(T1,T2)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<,>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,>", False, "ValueTuple", "(T1,T2)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple<,>.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<,>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<,>.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<>", False, "ValueTuple", "(T1)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple<>.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple<>.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(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>", "(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>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`8.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple`8.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple`8.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple`8.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7,T8>", "(T1,T2,T3,T4,T5,T6,T7,T8)", "", "Argument[6]", "ReturnValue.Field[System.ValueTuple`8.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`7.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`7.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`7.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple`7.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple`7.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple`7.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6,T7>", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "ReturnValue.Field[System.ValueTuple`7.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`6.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`6.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`6.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple`6.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple`6.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5,T6>", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "ReturnValue.Field[System.ValueTuple`6.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`5.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`5.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`5.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple`5.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4,T5>", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "ReturnValue.Field[System.ValueTuple`5.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`4.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`4.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`4.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3,T4>", "(T1,T2,T3,T4)", "", "Argument[3]", "ReturnValue.Field[System.ValueTuple`4.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`3.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`3.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2,T3>", "(T1,T2,T3)", "", "Argument[2]", "ReturnValue.Field[System.ValueTuple`3.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2>", "(T1,T2)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`2.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1,T2>", "(T1,T2)", "", "Argument[1]", "ReturnValue.Field[System.ValueTuple`2.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple", False, "Create<T1>", "(T1)", "", "Argument[0]", "ReturnValue.Field[System.ValueTuple`1.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`8.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`8.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`8.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple`8.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple`8.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple`8.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7,TRest)", "", "Argument[6]", "Argument[this].Field[System.ValueTuple`8.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7,TRest>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`8.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`7.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`7.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`7.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple`7.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple`7.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple`7.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6,T7)", "", "Argument[6]", "Argument[this].Field[System.ValueTuple`7.Item7]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6,T7>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`7.Item7]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`6.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`6.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`6.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple`6.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple`6.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "ValueTuple", "(T1,T2,T3,T4,T5,T6)", "", "Argument[5]", "Argument[this].Field[System.ValueTuple`6.Item6]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5,T6>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`6.Item6]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`5.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`5.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`5.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple`5.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "ValueTuple", "(T1,T2,T3,T4,T5)", "", "Argument[4]", "Argument[this].Field[System.ValueTuple`5.Item5]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`5.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`5.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`5.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`5.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4,T5>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`5.Item5]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`4.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`4.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`4.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "ValueTuple", "(T1,T2,T3,T4)", "", "Argument[3]", "Argument[this].Field[System.ValueTuple`4.Item4]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`4.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`4.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`4.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3,T4>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`4.Item4]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`3.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`3.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "ValueTuple", "(T1,T2,T3)", "", "Argument[2]", "Argument[this].Field[System.ValueTuple`3.Item3]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`3.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`3.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2,T3>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`3.Item3]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2>", False, "ValueTuple", "(T1,T2)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`2.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2>", False, "ValueTuple", "(T1,T2)", "", "Argument[1]", "Argument[this].Field[System.ValueTuple`2.Item2]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`2.Item1]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1,T2>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`2.Item2]", "ReturnValue", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1>", False, "ValueTuple", "(T1)", "", "Argument[0]", "Argument[this].Field[System.ValueTuple`1.Item1]", "value", "manual"]
|
||||
- ["System", "ValueTuple<T1>", False, "get_Item", "(System.Int32)", "", "Argument[this].Field[System.ValueTuple`1.Item1]", "ReturnValue", "value", "manual"]
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Generators", "EventSourceGenerator", "Execute", "(Microsoft.CodeAnalysis.GeneratorExecutionContext)", "summary", "df-generated"]
|
||||
- ["Generators", "EventSourceGenerator", "Initialize", "(Microsoft.CodeAnalysis.GeneratorInitializationContext)", "summary", "df-generated"]
|
||||
- ["Generators", "EventSourceGenerator", "Initialize", "(Microsoft.CodeAnalysis.IncrementalGeneratorInitializationContext)", "summary", "df-generated"]
|
||||
|
||||
21
csharp/ql/lib/ext/generated/ILCompiler.IBC.model.yml
Normal file
21
csharp/ql/lib/ext/generated/ILCompiler.IBC.model.yml
Normal file
@@ -0,0 +1,21 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["ILCompiler.IBC", "IBCProfileData", False, "IBCProfileData", "(ILCompiler.IBC.MibcConfig,System.Boolean,System.Collections.Generic.IEnumerable<ILCompiler.MethodProfileData>)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.IBC", "IBCProfileData", False, "get_Config", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.IBC", "MibcConfig", False, "FromKeyValueMap", "(System.Collections.Generic.Dictionary<System.String,System.String>)", "", "Argument[0].Element", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.IBC", "MibcConfig", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["ILCompiler.IBC", "IBCProfileData", "GetAllMethodProfileData", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "IBCProfileData", "GetMethodBlockCount", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "IBCProfileData", "GetMethodProfileData", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "IBCProfileData", "get_PartialNGen", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "MIbcProfileParser", "OpenMibcAsPEReader", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "MIbcProfileParser", "ParseMIbcFile", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,System.Collections.Generic.HashSet<System.String>,System.String,ILCompiler.IBC.MIbcProfileParser+MibcGroupParseRules,System.Collections.Generic.HashSet<System.String>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.IBC", "MIbcProfileParser", "ParseMibcConfig", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader)", "summary", "df-generated"]
|
||||
@@ -0,0 +1,127 @@
|
||||
# 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.Amd64", "GcInfo+SafePointOffset", "SafePointOffset", "(System.Int32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo+SafePointOffset", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo+SafePointOffset", "get_Value", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo+SafePointOffset", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo+SafePointOffset", "set_Value", "(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", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_GSCookieStackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_GenericsInstContextStackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_InterruptibleRanges", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_NumInterruptibleRanges", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_NumSafePoints", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_PSPSymStackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_ReturnKind", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_ReversePInvokeFrameStackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_SafePointOffsets", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_SecurityObjectStackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_SizeOfEditAndContinuePreservedArea", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_SizeOfStackOutgoingAndScratchArea", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_SlotTable", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_StackBaseRegister", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_ValidRangeEnd", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_ValidRangeStart", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "get_Version", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_GSCookieStackSlot", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_GenericsInstContextStackSlot", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_InterruptibleRanges", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.Amd64.InterruptibleRange>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_NumInterruptibleRanges", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_NumSafePoints", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_PSPSymStackSlot", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_ReturnKind", "(ILCompiler.Reflection.ReadyToRun.ReturnKinds)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_ReversePInvokeFrameStackSlot", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_SafePointOffsets", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.Amd64.GcInfo+SafePointOffset>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_SecurityObjectStackSlot", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_SizeOfEditAndContinuePreservedArea", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_SizeOfStackOutgoingAndScratchArea", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_SlotTable", "(ILCompiler.Reflection.ReadyToRun.Amd64.GcSlotTable)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_StackBaseRegister", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_ValidRangeEnd", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_ValidRangeStart", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcInfo", "set_Version", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "GcSlot", "(System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.GcStackSlot,ILCompiler.Reflection.ReadyToRun.GcSlotFlags,System.Boolean)", "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+GcSlot", "get_Flags", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "get_RegisterNumber", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "get_StackSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "set_Flags", "(ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "set_RegisterNumber", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable+GcSlot", "set_StackSlot", "(ILCompiler.Reflection.ReadyToRun.GcStackSlot)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "GcSlotTable", "(System.Byte[],System.Reflection.PortableExecutable.Machine,ILCompiler.Reflection.ReadyToRun.GcInfoTypes,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_GcSlots", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_NumRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_NumSlots", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_NumStackSlots", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_NumTracked", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "get_NumUntracked", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "set_GcSlots", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.Amd64.GcSlotTable+GcSlot>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "set_NumRegisters", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "set_NumSlots", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "set_NumStackSlots", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcSlotTable", "set_NumUntracked", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "GcTransition", "(System.Int32,System.Int32,System.Boolean,System.Int32,ILCompiler.Reflection.ReadyToRun.Amd64.GcSlotTable,System.Reflection.PortableExecutable.Machine)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "GetSlotState", "(ILCompiler.Reflection.ReadyToRun.Amd64.GcSlotTable,System.Reflection.PortableExecutable.Machine)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "get_ChunkId", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "get_IsLive", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "get_SlotId", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "get_SlotState", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "set_ChunkId", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "set_IsLive", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "set_SlotId", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "GcTransition", "set_SlotState", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "InterruptibleRange", "(System.UInt32,System.UInt32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "get_StartOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "get_StopOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "set_Index", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "set_StartOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "InterruptibleRange", "set_StopOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "UnwindCode", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_CodeOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_FrameOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_IsOpInfo", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_NextFrameOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_OffsetHigh", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_OffsetLow", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_OpInfo", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_OpInfoStr", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "get_UnwindOp", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_CodeOffset", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_FrameOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_IsOpInfo", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_NextFrameOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_OffsetHigh", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_OffsetLow", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_OpInfo", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_OpInfoStr", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindCode", "set_UnwindOp", "(ILCompiler.Reflection.ReadyToRun.Amd64.UnwindOpCodes)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "UnwindInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_CodeOffsetToUnwindCodeIndex", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_CountOfUnwindCodes", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_Flags", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_FrameOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_FrameRegister", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_PersonalityRoutineRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_SizeOfProlog", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_UnwindCodes", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "get_Version", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_CodeOffsetToUnwindCodeIndex", "(System.Collections.Generic.Dictionary<System.Int32,System.Int32>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_CountOfUnwindCodes", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_Flags", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_FrameOffset", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_FrameRegister", "(ILCompiler.Reflection.ReadyToRun.Amd64.Registers)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_PersonalityRoutineRVA", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_SizeOfProlog", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_UnwindCodes", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.Amd64.UnwindCode>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Amd64", "UnwindInfo", "set_Version", "(System.Byte)", "summary", "df-generated"]
|
||||
@@ -0,0 +1,45 @@
|
||||
# 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.Arm", "Epilog", "Epilog", "(System.Int32,System.Int32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_Condition", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_EpilogStartIndex", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_EpilogStartOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_EpilogStartOffsetFromMainFunctionBegin", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "get_Res", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_Condition", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_EpilogStartIndex", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_EpilogStartOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_EpilogStartOffsetFromMainFunctionBegin", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "Epilog", "set_Res", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindCode", "UnwindCode", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindCode", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindCode", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "UnwindInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_CodeWords", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_EBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_EpilogCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_Epilogs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_ExtendedCodeWords", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_ExtendedEpilogCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_FBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_FunctionLength", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_Vers", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "get_XBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_CodeWords", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_EBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_EpilogCount", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_Epilogs", "(ILCompiler.Reflection.ReadyToRun.Arm.Epilog[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_ExtendedCodeWords", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_ExtendedEpilogCount", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_FBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_FunctionLength", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_Vers", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm", "UnwindInfo", "set_XBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
@@ -0,0 +1,43 @@
|
||||
# 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.Arm64", "Epilog", "Epilog", "(System.Int32,System.Int32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_Condition", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_EpilogStartIndex", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_EpilogStartOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_EpilogStartOffsetFromMainFunctionBegin", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "get_Res", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_Condition", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_EpilogStartIndex", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_EpilogStartOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_EpilogStartOffsetFromMainFunctionBegin", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "Epilog", "set_Res", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindCode", "UnwindCode", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindCode", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindCode", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "UnwindInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_CodeWords", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_EBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_EpilogCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_Epilogs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_ExtendedCodeWords", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_ExtendedEpilogCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_FunctionLength", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_Vers", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "get_XBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_CodeWords", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_EBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_EpilogCount", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_Epilogs", "(ILCompiler.Reflection.ReadyToRun.Arm64.Epilog[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_ExtendedCodeWords", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_ExtendedEpilogCount", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_FunctionLength", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_Vers", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.Arm64", "UnwindInfo", "set_XBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
@@ -0,0 +1,384 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DebugInfo", False, "DebugInfo", "(ILCompiler.Reflection.ReadyToRun.RuntimeFunction,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DebugInfo", False, "get_BoundsList", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DebugInfo", False, "get_VariablesList", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHClause", False, "WriteTo", "(System.IO.TextWriter,System.Int32,System.Boolean)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHInfo", False, "EHInfo", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Int32,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHInfo", False, "WriteTo", "(System.IO.TextWriter,System.Boolean)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHInfo", False, "get_EHClauses", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMap", False, "GCRefMap", "(System.UInt32,ILCompiler.Reflection.ReadyToRun.GCRefMapEntry[])", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", False, "GCRefMapDecoder", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "InliningInfoSection2", False, "InliningInfoSection2", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "InliningInfoSection", False, "InliningInfoSection", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Int32)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "InstanceMethod", False, "InstanceMethod", "(System.Byte,ILCompiler.Reflection.ReadyToRun.ReadyToRunMethod)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MetadataNameFormatter", False, "FormatHandle", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle,System.Boolean,System.String,System.String)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MetadataNameFormatter", False, "FormatHandle", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.Handle,System.Boolean,System.String,System.String)", "", "Argument[4]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MetadataNameFormatter", False, "MetadataNameFormatter", "(System.Reflection.Metadata.MetadataReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeArray", False, "NativeArray", "(System.Byte[],System.UInt32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeCuckooFilter", False, "NativeCuckooFilter", "(System.Byte[],System.Int32,System.Int32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeHashtable+AllEntriesEnumerator", False, "GetNext", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeHashtable", False, "EnumerateAllEntries", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeHashtable", False, "Lookup", "(System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeHashtable", False, "NativeHashtable", "(System.Byte[],ILCompiler.Reflection.ReadyToRun.NativeParser,System.UInt32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", False, "GetParserFromRelativeOffset", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", False, "NativeParser", "(System.Byte[],System.UInt32,System.Byte)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", False, "PgoInfo", "(ILCompiler.Reflection.ReadyToRun.PgoInfoKey,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Byte[],System.Int32)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", False, "get_PgoData", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Boolean)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Boolean)", "", "Argument[3]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,System.Byte[],System.Int32,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Boolean)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,System.Byte[],System.Int32,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Boolean)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,System.Byte[],System.Int32,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Boolean)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,System.Byte[],System.Int32,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Boolean)", "", "Argument[5]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", False, "R2RSignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>,TGenericContext,System.Reflection.Metadata.MetadataReader,System.Byte[],System.Int32,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Boolean)", "", "Argument[6]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunAssembly", False, "get_AvailableTypes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunAssembly", False, "get_Methods", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "ReadyToRunMethod", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata,System.Reflection.Metadata.EntityHandle,System.Int32,System.String,System.String,System.String[],System.Nullable<System.Int32>)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "ReadyToRunMethod", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata,System.Reflection.Metadata.EntityHandle,System.Int32,System.String,System.String,System.String[],System.Nullable<System.Int32>)", "", "Argument[7]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "get_Fixups", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "get_GcInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "get_PgoInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", False, "get_RuntimeFunctions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "GetGlobalMetadata", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "ReadyToRunReader", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata,System.Reflection.PortableExecutable.PEReader,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "ReadyToRunReader", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata,System.Reflection.PortableExecutable.PEReader,System.String)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "ReadyToRunReader", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,System.String)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_CompilerIdentifier", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ImportSections", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ImportSignatures", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_InstanceMethods", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ManifestReferenceAssemblies", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_Methods", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ReadyToRunAssemblies", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ReadyToRunAssemblyHeaders", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", False, "get_ReadyToRunHeader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSignature", False, "ReadyToRunSignature", "(ILCompiler.Reflection.ReadyToRun.SignatureDecoder,Internal.ReadyToRunConstants.ReadyToRunFixupKind)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", False, "RuntimeFunction", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.ReadyToRunMethod,ILCompiler.Reflection.ReadyToRun.BaseUnwindInfo)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", False, "get_DebugInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", False, "get_EHInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureDecoder", False, "GetMetadataReaderFromModuleOverride", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StandaloneAssemblyMetadata", False, "StandaloneAssemblyMetadata", "(System.Reflection.PortableExecutable.PEReader)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StandaloneAssemblyMetadata", False, "get_ImageReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StandaloneAssemblyMetadata", False, "get_MetadataReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringBuilderExtensions", False, "AppendEscapedString", "(System.Text.StringBuilder,System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetArrayType", "(System.String,System.Reflection.Metadata.ArrayShape)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetByReferenceType", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetGenericInstantiation", "(System.String,System.Collections.Immutable.ImmutableArray<System.String>)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetGenericInstantiation", "(System.String,System.Collections.Immutable.ImmutableArray<System.String>)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetModifiedType", "(System.String,System.String,System.Boolean)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetModifiedType", "(System.String,System.String,System.Boolean)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetPinnedType", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetPointerType", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", True, "GetSZArrayType", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "get_CodeLength", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "get_LiveSlotsAtSafepoints", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "get_Transitions", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "set_CodeLength", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "set_LiveSlotsAtSafepoints", "(System.Collections.Generic.List<System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.BaseGcSlot>>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "set_Offset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "set_Size", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcInfo", "set_Transitions", "(System.Collections.Generic.Dictionary<System.Int32,System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.BaseGcTransition>>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcSlot", "WriteTo", "(System.Text.StringBuilder,System.Reflection.PortableExecutable.Machine,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcTransition", "BaseGcTransition", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcTransition", "get_CodeOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseGcTransition", "set_CodeOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseUnwindInfo", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "BaseUnwindInfo", "set_Size", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ComponentAssembly", "ComponentAssembly", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DebugInfo", "GetPlatformSpecificRegister", "(System.Reflection.PortableExecutable.Machine,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DebugInfo", "get_Machine", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingGenericContext", "DisassemblingGenericContext", "(System.String[],System.String[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingGenericContext", "get_MethodParameters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingGenericContext", "get_TypeParameters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingTypeProvider", "GetGenericMethodParameter", "(ILCompiler.Reflection.ReadyToRun.DisassemblingGenericContext,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingTypeProvider", "GetGenericTypeParameter", "(ILCompiler.Reflection.ReadyToRun.DisassemblingGenericContext,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingTypeProvider", "GetTypeFromHandle", "(System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.DisassemblingGenericContext,System.Reflection.Metadata.EntityHandle)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "DisassemblingTypeProvider", "GetTypeFromSpecification", "(System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.DisassemblingGenericContext,System.Reflection.Metadata.TypeSpecificationHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHClause", "EHClause", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "EHInfo", "get_RelativeVirtualAddress", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "FixupCell", "FixupCell", "(System.Int32,System.UInt32,System.UInt32,ILCompiler.Reflection.ReadyToRun.ReadyToRunSignature)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "FixupCell", "get_CellOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "FixupCell", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "FixupCell", "get_Signature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "FixupCell", "get_TableIndex", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "AtEnd", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "CurrentPos", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "GetBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "GetInt", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "GetOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "GetTwoBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "ReadMap", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "ReadStackPop", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapDecoder", "ReadToken", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GCRefMapEntry", "GCRefMapEntry", "(System.Int32,ILCompiler.Reflection.ReadyToRun.CORCOMPILE_GCREFMAP_TOKENS)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "GcStackSlot", "(System.Int32,ILCompiler.Reflection.ReadyToRun.GcStackSlotBase)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "get_Base", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "get_SpOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "set_Base", "(ILCompiler.Reflection.ReadyToRun.GcStackSlotBase)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "GcStackSlot", "set_SpOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IAssemblyMetadata", "get_ImageReader", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IAssemblyMetadata", "get_MetadataReader", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IAssemblyResolver", "FindAssembly", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.AssemblyReferenceHandle,System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IAssemblyResolver", "FindAssembly", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetCanonType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetConstrainedMethod", "(TMethod,TType)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetInstantiatedMethod", "(TMethod,System.Collections.Immutable.ImmutableArray<TType>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetMethodFromMemberRef", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.MemberReferenceHandle,TType)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetMethodFromMethodDef", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.MethodDefinitionHandle,TType)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>", "GetMethodWithFlags", "(Internal.ReadyToRunConstants.ReadyToRunMethodSigFlags,TMethod)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "InliningInfoSection2", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "InliningInfoSection", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MetadataNameFormatter", "FormatSignature", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodDefEntrySignature", "MethodDefEntrySignature", "(ILCompiler.Reflection.ReadyToRun.SignatureDecoder)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodDefEntrySignature", "get_MethodDefToken", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodDefEntrySignature", "set_MethodDefToken", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodRefEntrySignature", "MethodRefEntrySignature", "(ILCompiler.Reflection.ReadyToRun.SignatureDecoder)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodRefEntrySignature", "get_MethodRefToken", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "MethodRefEntrySignature", "set_MethodRefToken", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeArray", "GetCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeArray", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeArray", "TryGetAt", "(System.Byte[],System.UInt32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeCuckooFilter", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeHashtable", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "GetByte", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "GetCompressedData", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "GetRelativeOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "GetSigned", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "GetUnsigned", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "IsNull", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "get_LowHashcode", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeParser", "set_Offset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeSigned", "(System.Byte[],System.UInt32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeSignedGc", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeUDelta", "(System.Byte[],System.Int32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeUnsigned", "(System.Byte[],System.UInt32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeUnsignedGc", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeVarLengthSigned", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "DecodeVarLengthUnsigned", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadBits", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadByte", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadCompressedData", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadInt32", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadInt64", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadUInt16", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeReader", "ReadUInt32", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeVarInfo", "get_Variable", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeVarInfo", "set_Variable", "(ILCompiler.Reflection.ReadyToRun.Variable)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "NativeVarInfoComparer", "Compare", "(ILCompiler.Reflection.ReadyToRun.NativeVarInfo,ILCompiler.Reflection.ReadyToRun.NativeVarInfo)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEExportTable", "Parse", "(System.Reflection.PortableExecutable.PEReader)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEExportTable", "TryGetValue", "(System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEExportTable", "TryGetValue", "(System.String,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEReaderExtensions", "GetExportTable", "(System.Reflection.PortableExecutable.PEReader)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEReaderExtensions", "GetOffset", "(System.Reflection.PortableExecutable.PEReader,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PEReaderExtensions", "TryGetReadyToRunHeader", "(System.Reflection.PortableExecutable.PEReader,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_EmptySingleton", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_Image", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_Key", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_PgoFormatVersion", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfo", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "Equals", "(ILCompiler.Reflection.ReadyToRun.PgoInfoKey)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "Equals", "(System.Object)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "FromReadyToRunMethod", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunMethod)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "GetHashCode", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "PgoInfoKey", "(ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata,System.String,System.Reflection.Metadata.EntityHandle,System.String[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_ComponentReader", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_DeclaringType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_MethodHandle", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_Name", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_Signature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "PgoInfoKey", "get_SignatureString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ParseMethod", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ParseType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "PeekElementType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ReadByte", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ReadElementType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ReadInt", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ReadToken", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "ReadUInt", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "SkipBytes", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "SkipBytes", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "UpdateOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "R2RSignatureDecoder<TType,TMethod,TGenericContext>", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "ParseCoreHeader", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "ReadyToRunCoreHeader", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "get_Flags", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "get_Sections", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "set_Flags", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunCoreHeader", "set_Sections", "(System.Collections.Generic.IDictionary<Internal.Runtime.ReadyToRunSectionType,ILCompiler.Reflection.ReadyToRun.ReadyToRunSection>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "ReadyToRunHeader", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_MajorVersion", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_MinorVersion", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_RelativeVirtualAddress", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_Signature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_SignatureString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_MajorVersion", "(System.UInt16)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_MinorVersion", "(System.UInt16)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_RelativeVirtualAddress", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_Signature", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_SignatureString", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunHeader", "set_Size", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "ImportSectionEntry", "(System.Int32,System.Int32,System.Int32,System.Int64,System.UInt32,ILCompiler.Reflection.ReadyToRun.ReadyToRunSignature)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_GCRefMap", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_Section", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_Signature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_SignatureRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_StartOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "get_StartRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_GCRefMap", "(ILCompiler.Reflection.ReadyToRun.GCRefMap)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_Section", "(System.Int64)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_Signature", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunSignature)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_SignatureRVA", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_StartOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection+ImportSectionEntry", "set_StartRVA", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "ReadyToRunImportSection", "(System.Int32,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Int32,Internal.ReadyToRunConstants.ReadyToRunImportSectionFlags,Internal.ReadyToRunConstants.ReadyToRunImportSectionType,System.Byte,System.Int32,System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.ReadyToRunImportSection+ImportSectionEntry>,System.Int32,System.Int32,System.Reflection.PortableExecutable.Machine,System.UInt16)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "WriteTo", "(System.IO.TextWriter)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_AuxiliaryDataRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_AuxiliaryDataSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_Entries", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_EntrySize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_Flags", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_SectionRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_SectionSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_SignatureRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "get_Type", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_AuxiliaryDataRVA", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_AuxiliaryDataSize", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_Entries", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.ReadyToRunImportSection+ImportSectionEntry>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_EntrySize", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_Flags", "(Internal.ReadyToRunConstants.ReadyToRunImportSectionFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_SectionRVA", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_SectionSize", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_SignatureRVA", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunImportSection", "set_Type", "(Internal.ReadyToRunConstants.ReadyToRunImportSectionType)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_ColdRuntimeFunctionCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_ColdRuntimeFunctionId", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_ComponentReader", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_DeclaringType", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_EntryPointRuntimeFunctionId", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_GcInfoRva", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_InstanceArgs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_LocalSignature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_MethodHandle", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_Name", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_Rid", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_RuntimeFunctionCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_Signature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_SignatureString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_ColdRuntimeFunctionCount", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_ColdRuntimeFunctionId", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_ComponentReader", "(ILCompiler.Reflection.ReadyToRun.IAssemblyMetadata)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_DeclaringType", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_EntryPointRuntimeFunctionId", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_GcInfoRva", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_InstanceArgs", "(System.String[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_MethodHandle", "(System.Reflection.Metadata.EntityHandle)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_Name", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_Rid", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_RuntimeFunctionCount", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunMethod", "set_SignatureString", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "CheckNonEmptyDebugInfo", "(ILCompiler.Reflection.ReadyToRun.RuntimeFunction)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetAssemblyIndex", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunSection)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetAssemblyMvid", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetCustomMethodToRuntimeFunctionMapping<TType,TMethod,TGenericContext>", "(ILCompiler.Reflection.ReadyToRun.IR2RSignatureTypeProvider<TType,TMethod,TGenericContext>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetGlobalAssemblyName", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "GetPgoInfoByKey", "(ILCompiler.Reflection.ReadyToRun.PgoInfoKey)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "IsReadyToRunImage", "(System.Reflection.PortableExecutable.PEReader)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "ValidateRuntimeFunctions", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.RuntimeFunction>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_AllPgoInfos", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_Architecture", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_ComponentAssemblyIndexOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_ComponentAssemblyIndicesStartAtTwo", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_Composite", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_CompositeReader", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_Filename", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_Image", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_ImageBase", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_Machine", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_OperatingSystem", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "get_TargetPointerSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "set_CompositeReader", "(System.Reflection.PortableExecutable.PEReader)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "set_Filename", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunReader", "set_Image", "(System.Byte[])", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "ReadyToRunSection", "(Internal.Runtime.ReadyToRunSectionType,System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "get_RelativeVirtualAddress", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "get_Type", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "set_RelativeVirtualAddress", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "set_Size", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSection", "set_Type", "(Internal.Runtime.ReadyToRunSectionType)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSignature", "ToString", "(ILCompiler.Reflection.ReadyToRun.SignatureFormattingOptions)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSignature", "get_FixupKind", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "ReadyToRunSignature", "set_FixupKind", "(Internal.ReadyToRunConstants.ReadyToRunFixupKind)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_CodeOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_EndAddress", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_Id", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_Method", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_Size", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_StartAddress", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_UnwindInfo", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "RuntimeFunction", "get_UnwindRVA", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureDecoder", "ReadTypeSignature", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureDecoder", "ReadTypeSignatureNoEmit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureDecoder", "SignatureDecoder", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,ILCompiler.Reflection.ReadyToRun.SignatureFormattingOptions,System.Reflection.Metadata.MetadataReader,ILCompiler.Reflection.ReadyToRun.ReadyToRunReader,System.Int32,System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "get_InlineSignatureBinary", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "get_Naked", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "get_SignatureBinary", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "set_InlineSignatureBinary", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "set_Naked", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "SignatureFormattingOptions", "set_SignatureBinary", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringExtensions", "ToEscapedString", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetFunctionPointerType", "(System.Reflection.Metadata.MethodSignature<System.String>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetGenericMethodParameter", "(TGenericContext,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetGenericTypeParameter", "(TGenericContext,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetPrimitiveType", "(System.Reflection.Metadata.PrimitiveTypeCode)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetTypeFromDefinition", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeDefinitionHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetTypeFromReference", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeReferenceHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "StringTypeProviderBase<TGenericContext>", "GetTypeFromSpecification", "(System.Reflection.Metadata.MetadataReader,TGenericContext,System.Reflection.Metadata.TypeSpecificationHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TextSignatureDecoderContext", "TextSignatureDecoderContext", "(ILCompiler.Reflection.ReadyToRun.IAssemblyResolver,ILCompiler.Reflection.ReadyToRun.SignatureFormattingOptions)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TextSignatureDecoderContext", "get_AssemblyResolver", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TextSignatureDecoderContext", "get_Options", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TextSignatureDecoderContext", "set_Options", "(ILCompiler.Reflection.ReadyToRun.SignatureFormattingOptions)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TodoSignature", "TodoSignature", "(ILCompiler.Reflection.ReadyToRun.SignatureDecoder,Internal.ReadyToRunConstants.ReadyToRunFixupKind)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "FromReader", "(ILCompiler.Reflection.ReadyToRun.ReadyToRunReader)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "OffsetFromGCRefMapPos", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_NumArgumentRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_NumCalleeSavedRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_OffsetOfArgs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_OffsetOfArgumentRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_OffsetOfFirstGCRefMapSlot", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_PointerSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_SizeOfArgumentRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_SizeOfCalleeSavedRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "TransitionBlock", "get_SizeOfTransitionBlock", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "Variable", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "Variable", "get_Type", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "Variable", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun", "Variable", "set_Type", "(ILCompiler.Reflection.ReadyToRun.VariableType)", "summary", "df-generated"]
|
||||
@@ -0,0 +1,159 @@
|
||||
# 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.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", "CalleeSavedRegister", "get_Register", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "CalleeSavedRegister", "set_Register", "(ILCompiler.Reflection.ReadyToRun.x86.CalleeSavedRegisters)", "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", "GetRegisterName", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "get_Header", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "get_SlotTable", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "set_Header", "(ILCompiler.Reflection.ReadyToRun.x86.InfoHdrSmall)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcInfo", "set_SlotTable", "(ILCompiler.Reflection.ReadyToRun.x86.GcSlotTable)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "GcSlot", "(System.Int32,System.String,System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "GcSlot", "(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.Int32,ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_BeginOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_EndOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_Flags", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_LowBits", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_Register", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "get_StackOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_BeginOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_EndOffset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_Flags", "(ILCompiler.Reflection.ReadyToRun.GcSlotFlags)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_Index", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_LowBits", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_Register", "(System.String)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable+GcSlot", "set_StackOffset", "(System.Int32)", "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", "GcSlotTable", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable", "get_GcSlots", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcSlotTable", "set_GcSlots", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.x86.GcSlotTable+GcSlot>)", "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+CallRegister", "get_IsByRef", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+CallRegister", "get_Register", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+CallRegister", "set_IsByRef", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+CallRegister", "set_Register", "(ILCompiler.Reflection.ReadyToRun.x86.Registers)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "PtrArg", "(System.UInt32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "get_LowBit", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "get_StackOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "set_LowBit", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall+PtrArg", "set_StackOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "GcTransitionCall", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "GcTransitionCall", "(System.Int32,System.Boolean,System.UInt32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "get_ArgMask", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "get_CallRegisters", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "get_IArgs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "get_PtrArgs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "set_ArgMask", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "set_CallRegisters", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.x86.GcTransitionCall+CallRegister>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "set_IArgs", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionCall", "set_PtrArgs", "(System.Collections.Generic.List<ILCompiler.Reflection.ReadyToRun.x86.GcTransitionCall+PtrArg>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "GcTransitionPointer", "(System.Int32,System.UInt32,System.UInt32,ILCompiler.Reflection.ReadyToRun.x86.Action,System.Boolean,System.Boolean,System.Boolean,System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_Act", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_ArgCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_ArgOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_Iptr", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_IsPtr", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "get_IsThis", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_Act", "(ILCompiler.Reflection.ReadyToRun.x86.Action)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_ArgCount", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_ArgOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_Iptr", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_IsPtr", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionPointer", "set_IsThis", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "GcTransitionRegister", "(System.Int32,ILCompiler.Reflection.ReadyToRun.x86.Registers,ILCompiler.Reflection.ReadyToRun.x86.Action,System.Boolean,System.Boolean,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "get_Iptr", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "get_IsLive", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "get_IsThis", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "get_PushCountOrPopSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "get_Register", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "set_Iptr", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "set_IsLive", "(ILCompiler.Reflection.ReadyToRun.x86.Action)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "set_IsThis", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "set_PushCountOrPopSize", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "GcTransitionRegister", "set_Register", "(ILCompiler.Reflection.ReadyToRun.x86.Registers)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "IPtrMask", "IPtrMask", "(System.Int32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "IPtrMask", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "IPtrMask", "get_IMask", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "IPtrMask", "set_IMask", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrDecoder", "DecodeHeader", "(System.Byte[],System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrDecoder", "GetInfoHdr", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "InfoHdrSmall", "(System.UInt32,System.UInt32,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.UInt16,System.UInt32,System.UInt32,System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_ArgCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_ArgTabOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_DoubleAlign", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EbpFrame", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EbpSaved", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EbxSaved", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EdiSaved", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EditNcontinue", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EpilogAtEnd", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EpilogCount", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EpilogSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Epilogs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_EsiSaved", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_FrameSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_GenericsContext", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_GenericsContextIsMethodDesc", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_GsCookieOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Handlers", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_HasArgTabOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Interruptible", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Localloc", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_ProfCallbacks", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_PrologSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_ReturnKind", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_RevPInvokeOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Security", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_SyncEndOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_SyncStartOffset", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_UntrackedCnt", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_VarPtrTableSize", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "get_Varargs", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_ArgCount", "(System.UInt16)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_ArgTabOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_DoubleAlign", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EbpFrame", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EbpSaved", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EbxSaved", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EdiSaved", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EditNcontinue", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EpilogAtEnd", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EpilogCount", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EpilogSize", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Epilogs", "(System.Collections.Generic.List<System.Int32>)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_EsiSaved", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_FrameSize", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_GenericsContext", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_GenericsContextIsMethodDesc", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_GsCookieOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Handlers", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_HasArgTabOffset", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Interruptible", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Localloc", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_ProfCallbacks", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_PrologSize", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_ReturnKind", "(ILCompiler.Reflection.ReadyToRun.ReturnKinds)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_RevPInvokeOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Security", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_SyncEndOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_SyncStartOffset", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_UntrackedCnt", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_VarPtrTableSize", "(System.UInt32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "InfoHdrSmall", "set_Varargs", "(System.Boolean)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "UnwindInfo", "ToString", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "UnwindInfo", "UnwindInfo", "(System.Byte[],System.Int32)", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "UnwindInfo", "get_FunctionLength", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler.Reflection.ReadyToRun.x86", "UnwindInfo", "set_FunctionLength", "(System.UInt32)", "summary", "df-generated"]
|
||||
25
csharp/ql/lib/ext/generated/ILCompiler.model.yml
Normal file
25
csharp/ql/lib/ext/generated/ILCompiler.model.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["ILCompiler", "MethodProfileData", False, "MethodProfileData", "(Internal.TypeSystem.MethodDesc,ILCompiler.MethodProfilingDataFlags,System.Double,System.Collections.Generic.Dictionary<Internal.TypeSystem.MethodDesc,System.Int32>,System.UInt32,Internal.Pgo.PgoSchemaElem[])", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler", "MethodProfileData", False, "MethodProfileData", "(Internal.TypeSystem.MethodDesc,ILCompiler.MethodProfilingDataFlags,System.Double,System.Collections.Generic.Dictionary<Internal.TypeSystem.MethodDesc,System.Int32>,System.UInt32,Internal.Pgo.PgoSchemaElem[])", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["ILCompiler", "MethodProfileData", False, "MethodProfileData", "(Internal.TypeSystem.MethodDesc,ILCompiler.MethodProfilingDataFlags,System.Double,System.Collections.Generic.Dictionary<Internal.TypeSystem.MethodDesc,System.Int32>,System.UInt32,Internal.Pgo.PgoSchemaElem[])", "", "Argument[5].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["ILCompiler", "EmptyProfileData", "GetAllMethodProfileData", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "EmptyProfileData", "GetMethodBlockCount", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler", "EmptyProfileData", "GetMethodProfileData", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler", "EmptyProfileData", "get_Config", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "EmptyProfileData", "get_PartialNGen", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "EmptyProfileData", "get_Singleton", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "GetAllMethodProfileData", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "GetMethodBlockCount", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "GetMethodProfileData", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "MergeProfileData", "(System.Collections.Generic.Dictionary<Internal.TypeSystem.MethodDesc,ILCompiler.MethodProfileData>,ILCompiler.ProfileData)", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "get_Config", "()", "summary", "df-generated"]
|
||||
- ["ILCompiler", "ProfileData", "get_PartialNGen", "()", "summary", "df-generated"]
|
||||
75
csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml
Normal file
75
csharp/ql/lib/ext/generated/Internal.IL.Stubs.model.yml
Normal file
@@ -0,0 +1,75 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", False, "BeginHandler", "(Internal.IL.Stubs.ILExceptionRegionBuilder)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", False, "BeginTry", "(Internal.IL.Stubs.ILExceptionRegionBuilder)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", False, "EmitLabel", "(Internal.IL.Stubs.ILCodeLabel)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", False, "EndHandler", "(Internal.IL.Stubs.ILExceptionRegionBuilder)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", False, "EndTry", "(Internal.IL.Stubs.ILExceptionRegionBuilder)", "", "Argument[this]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", False, "Link", "(Internal.TypeSystem.MethodDesc)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", False, "Link", "(Internal.TypeSystem.MethodDesc)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", False, "NewCodeStream", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "GetDebugInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "GetExceptionRegions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "GetILBytes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "GetLocals", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "GetObject", "(System.Int32,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.IL.Stubs.ILStubMethodIL)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[1].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[2].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[3].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[4].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "ILStubMethodIL", "(Internal.TypeSystem.MethodDesc,System.Byte[],Internal.TypeSystem.LocalVariableDefinition[],System.Object[],Internal.IL.ILExceptionRegion[],Internal.IL.MethodDebugInformation)", "", "Argument[5]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", False, "get_OwningMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "PInvokeTargetNativeMethod", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.MethodSignature)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "PInvokeTargetNativeMethod", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.MethodSignature)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_BaseMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_DiagnosticName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_OwningType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_Signature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", False, "get_Target", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "DefineSequencePoint", "(System.String,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "Emit", "(Internal.IL.ILOpcode)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "Emit", "(Internal.IL.ILOpcode,Internal.IL.Stubs.ILCodeLabel)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "Emit", "(Internal.IL.ILOpcode,Internal.IL.Stubs.ILToken)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdArg", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdArga", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdElem", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdInd", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdLoc", "(Internal.IL.Stubs.ILLocalVariable)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdLoca", "(Internal.IL.Stubs.ILLocalVariable)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitLdc", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitStElem", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitStInd", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitStLoc", "(Internal.IL.Stubs.ILLocalVariable)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitSwitch", "(Internal.IL.Stubs.ILCodeLabel[])", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILCodeStream", "EmitUnaligned", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewCodeLabel", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewFinallyRegion", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewLocal", "(Internal.TypeSystem.TypeDesc,System.Boolean)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewToken", "(Internal.TypeSystem.FieldDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewToken", "(Internal.TypeSystem.MethodDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewToken", "(Internal.TypeSystem.MethodSignature)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewToken", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILEmitter", "NewToken", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethod", "EmitIL", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethod", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", "get_IsInitLocals", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "ILStubMethodIL", "get_MaxStack", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "CompareToImpl", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "GetPInvokeMethodMetadata", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "get_ClassCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL.Stubs", "PInvokeTargetNativeMethod", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["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"]
|
||||
87
csharp/ql/lib/ext/generated/Internal.IL.model.yml
Normal file
87
csharp/ql/lib/ext/generated/Internal.IL.model.yml
Normal file
@@ -0,0 +1,87 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Internal.IL", "EcmaMethodDebugInformation", False, "EcmaMethodDebugInformation", "(Internal.TypeSystem.Ecma.EcmaMethod)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "Create", "(Internal.TypeSystem.Ecma.EcmaMethod)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "GetDebugInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "GetExceptionRegions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "GetILBytes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "GetLocals", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", False, "get_OwningMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodILScope", False, "Create", "(Internal.TypeSystem.Ecma.EcmaMethod)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodILScope", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodILScope", False, "get_OwningMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.ArrayType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.ByRefType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.FunctionPointerType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.PointerType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameForInstantiatedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameForNamespaceType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameForNamespaceTypeWithoutAliases", "(System.Text.StringBuilder,Internal.TypeSystem.DefType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameForNestedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType,Internal.TypeSystem.DefType)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameForNestedType", "(System.Text.StringBuilder,Internal.TypeSystem.DefType,Internal.TypeSystem.DefType)", "", "Argument[2]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "AppendNameWithValueClassPrefix", "(System.Text.StringBuilder,Internal.TypeSystem.TypeDesc)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", False, "ILTypeNameFormatter", "(Internal.TypeSystem.ModuleDesc)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", False, "AppendType", "(System.Text.StringBuilder,Internal.TypeSystem.TypeDesc,System.Boolean)", "", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", False, "ILDisassembler", "(Internal.IL.MethodIL)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILLocalVariable", False, "ILLocalVariable", "(System.Int32,System.String,System.Boolean)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "ILSequencePoint", False, "ILSequencePoint", "(System.Int32,System.String,System.Int32)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetDebugInfo", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetExceptionRegions", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetILBytes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetLocals", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetMethodILDefinition", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "GetObject", "(System.Int32,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "InstantiatedMethodIL", "(Internal.TypeSystem.MethodDesc,Internal.IL.MethodIL)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "InstantiatedMethodIL", "(Internal.TypeSystem.MethodDesc,Internal.IL.MethodIL)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", False, "get_OwningMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", False, "GetMethodILScopeDefinition", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", True, "GetMethodILDefinition", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"]
|
||||
- ["Internal.IL", "MethodILScope", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.IL", "MethodILScope", True, "GetMethodILScopeDefinition", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.IL", "EcmaMethodDebugInformation", "GetLocalVariables", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodDebugInformation", "GetParameterNames", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodDebugInformation", "GetSequencePoints", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodDebugInformation", "get_IsStateMachineMoveNextMethod", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", "GetObject", "(System.Int32,Internal.TypeSystem.NotFoundBehavior)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", "get_IsInitLocals", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodIL", "get_MaxStack", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "EcmaMethodILScope", "GetObject", "(System.Int32,Internal.TypeSystem.NotFoundBehavior)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "IEcmaMethodIL", "get_Module", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.GenericParameterDesc)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureMethodVariable)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler+ILTypeNameFormatter", "AppendName", "(System.Text.StringBuilder,Internal.TypeSystem.SignatureTypeVariable)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", "AppendOffset", "(System.Text.StringBuilder,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", "GetNextInstruction", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", "get_CodeSize", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", "get_HasNextInstruction", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILDisassembler", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILExceptionRegion", "ILExceptionRegion", "(Internal.IL.ILExceptionRegionKind,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILOpcodeHelper", "GetSize", "(Internal.IL.ILOpcode)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILOpcodeHelper", "IsBranch", "(Internal.IL.ILOpcode)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILOpcodeHelper", "IsUnconditionalBranch", "(Internal.IL.ILOpcode)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILOpcodeHelper", "IsValid", "(Internal.IL.ILOpcode)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILStackHelper", "CheckStackBalance", "(Internal.IL.MethodIL)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "ILStackHelper", "ComputeMaxStack", "(Internal.IL.MethodIL)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", "get_IsInitLocals", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "InstantiatedMethodIL", "get_MaxStack", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodDebugInformation", "GetLocalVariables", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodDebugInformation", "GetParameterNames", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodDebugInformation", "GetSequencePoints", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodDebugInformation", "get_IsStateMachineMoveNextMethod", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "GetDebugInfo", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "GetExceptionRegions", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "GetILBytes", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "GetLocals", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "get_IsInitLocals", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodIL", "get_MaxStack", "()", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodILScope", "GetObject", "(System.Int32,Internal.TypeSystem.NotFoundBehavior)", "summary", "df-generated"]
|
||||
- ["Internal.IL", "MethodILScope", "get_OwningMethod", "()", "summary", "df-generated"]
|
||||
22
csharp/ql/lib/ext/generated/Internal.NativeFormat.model.yml
Normal file
22
csharp/ql/lib/ext/generated/Internal.NativeFormat.model.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms+HashCodeBuilder", "Append", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms+HashCodeBuilder", "HashCodeBuilder", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms+HashCodeBuilder", "ToHashCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeASCIINameHashCode", "(System.Byte*,System.Int32,System.Boolean)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeArrayTypeHashCode", "(System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeArrayTypeHashCode<T>", "(T,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeByrefTypeHashCode", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeByrefTypeHashCode<T>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeGenericInstanceHashCode<ARG>", "(System.Int32,ARG[])", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeMethodHashCode", "(System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeMethodSignatureHashCode<ARG>", "(System.Int32,ARG[])", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeNameHashCode", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeNestedTypeHashCode", "(System.Int32,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputePointerTypeHashCode", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputePointerTypeHashCode<T>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.NativeFormat", "TypeHashingAlgorithms", "ComputeSignatureVariableHashCode", "(System.Int32,System.Boolean)", "summary", "df-generated"]
|
||||
43
csharp/ql/lib/ext/generated/Internal.Pgo.model.yml
Normal file
43
csharp/ql/lib/ext/generated/Internal.Pgo.model.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", False, "GetEnumerator", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", False, "PgoEncodedCompressedIntParser", "(System.Byte[],System.Int32)", "", "Argument[0].Element", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor", False, "Merge<TType,TMethod>", "(System.ReadOnlySpan<Internal.Pgo.PgoSchemaElem[]>)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "TypeSystemEntityOrUnknown", "(Internal.TypeSystem.MethodDesc)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "TypeSystemEntityOrUnknown", "(Internal.TypeSystem.TypeDesc)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "get_AsField", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "get_AsMethod", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", False, "get_AsType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.Pgo", "IPgoEncodedValueEmitter<TType,TMethod>", "EmitDone", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "IPgoEncodedValueEmitter<TType,TMethod>", "EmitLong", "(System.Int64,System.Int64)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "IPgoEncodedValueEmitter<TType,TMethod>", "EmitMethod", "(TMethod,TMethod)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "IPgoEncodedValueEmitter<TType,TMethod>", "EmitType", "(TType,TType)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "IPgoSchemaDataLoader<TType,TMethod>", "MethodFromLong", "(System.Int64)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "IPgoSchemaDataLoader<TType,TMethod>", "TypeFromLong", "(System.Int64)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "Dispose", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "MoveNext", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "Reset", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "get_Current", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "get_Offset", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor+PgoEncodedCompressedIntParser", "set_Offset", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor", "EncodePgoData<TType,TMethod>", "(System.Collections.Generic.IEnumerable<Internal.Pgo.PgoSchemaElem>,Internal.Pgo.IPgoEncodedValueEmitter<TType,TMethod>,System.Boolean)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor", "ParsePgoData<TType,TMethod>", "(Internal.Pgo.IPgoSchemaDataLoader<TType,TMethod>,System.Collections.Generic.IEnumerable<System.Int64>,System.Boolean)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoProcessor", "PgoEncodedCompressedLongGenerator", "(System.Collections.Generic.IEnumerable<System.Int64>)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoSchemaElem", "ToString", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "PgoSchemaElem", "get_DataHeldInDataLong", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "Equals", "(Internal.Pgo.TypeSystemEntityOrUnknown)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "Equals", "(System.Object)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "GetHashCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "TypeSystemEntityOrUnknown", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "get_AsUnknown", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "get_IsNull", "()", "summary", "df-generated"]
|
||||
- ["Internal.Pgo", "TypeSystemEntityOrUnknown", "get_IsUnknown", "()", "summary", "df-generated"]
|
||||
@@ -1,31 +0,0 @@
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Add<>", "(System.Void*,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Add<>", "(T,System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Add<>", "(T,System.IntPtr)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "AddByteOffset<>", "(T,System.IntPtr)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "AreSame<>", "(T,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "As<,>", "(TFrom)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "As<>", "(System.Object)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "AsPointer<>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "AsRef<>", "(System.Void*)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "AsRef<>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "ByteOffset<>", "(T,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "InitBlockUnaligned", "(System.Byte,System.Byte,System.UInt32)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "IsAddressGreaterThan<>", "(T,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "IsAddressLessThan<>", "(T,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "IsNullRef<>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "NullRef<>", "()", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Read<>", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Read<>", "(System.Void*)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "ReadUnaligned<>", "(System.Byte)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "ReadUnaligned<>", "(System.Void*)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "SizeOf<>", "()", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "SkipInit<>", "(T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Write<>", "(System.Byte,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "Write<>", "(System.Void*,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "WriteUnaligned<>", "(System.Byte,T)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.CompilerServices", "Unsafe", "WriteUnaligned<>", "(System.Void*,T)", "summary", "df-generated"]
|
||||
@@ -1,7 +0,0 @@
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.Runtime.InteropServices", "ComponentActivator", "GetFunctionPointer", "(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", "summary", "df-generated"]
|
||||
- ["Internal.Runtime.InteropServices", "ComponentActivator", "LoadAssemblyAndGetFunctionPointer", "(System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr,System.IntPtr)", "summary", "df-generated"]
|
||||
227
csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml
Normal file
227
csharp/ql/lib/ext/generated/Internal.TypeSystem.Ecma.model.yml
Normal file
@@ -0,0 +1,227 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["Internal.TypeSystem.Ecma", "CachingMetadataStringDecoder", False, "GetString", "(System.Byte*,System.Int32)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CachingMetadataStringDecoder", False, "GetString", "(System.Byte*,System.Int32)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CachingMetadataStringDecoder", False, "Lookup", "(System.String)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CachingMetadataStringDecoder", False, "Lookup", "(System.String)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", False, "CustomAttributeTypeProvider", "(Internal.TypeSystem.Ecma.EcmaModule)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", False, "EcmaAssembly", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,System.Reflection.Metadata.MetadataReader,Internal.TypeSystem.IModuleResolver)", "", "Argument[2]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", False, "GetName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", False, "ToString", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", False, "get_Assembly", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", False, "get_AssemblyDefinition", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", False, "get_FieldType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", False, "get_Handle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", False, "get_OwningType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", False, "get_Handle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", False, "get_MetadataReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_DiagnosticName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_Handle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_Instantiation", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_OwningType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", False, "get_Signature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "Create", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,Internal.TypeSystem.IAssemblyDesc,Internal.TypeSystem.IModuleResolver)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "Create", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,Internal.TypeSystem.IAssemblyDesc,Internal.TypeSystem.IModuleResolver)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "Create", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,Internal.TypeSystem.IAssemblyDesc,Internal.TypeSystem.IModuleResolver)", "", "Argument[3]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetAllTypes", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetField", "(System.Reflection.Metadata.EntityHandle)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetGlobalModuleType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetMethod", "(System.Reflection.Metadata.EntityHandle)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetObject", "(System.Reflection.Metadata.EntityHandle,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetType", "(System.Reflection.Metadata.EntityHandle)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetType", "(System.String,System.String,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetType", "(System.String,System.String,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "GetType", "(System.String,System.String,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "get_EntryPoint", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "get_MetadataReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", False, "get_PEReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureEncoder<TEntityHandleProvider>", False, "EcmaSignatureEncoder", "(TEntityHandleProvider)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "EcmaSignatureParser", "(Internal.TypeSystem.Ecma.EcmaModule,System.Reflection.Metadata.BlobReader,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "EcmaSignatureParser", "(Internal.TypeSystem.Ecma.EcmaModule,System.Reflection.Metadata.BlobReader,Internal.TypeSystem.NotFoundBehavior)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseFieldSignature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseFieldSignature", "(Internal.TypeSystem.EmbeddedSignatureData[])", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseLocalsSignature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseMethodSignature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseMethodSpecSignature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParsePropertySignature", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "ParseType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", False, "get_ResolutionFailure", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "GetFinalizer", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_BaseType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_DiagnosticName", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_DiagnosticNamespace", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_EcmaModule", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_ExplicitlyImplementedInterfaces", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_Handle", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_Instantiation", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_MetadataBaseType", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_MetadataReader", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_Module", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_Name", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_Namespace", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", False, "get_UnderlyingType", "()", "", "Argument[this]", "ReturnValue", "value", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", False, "GetCustomAttributeHandle", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.CustomAttributeHandleCollection,System.String,System.String)", "", "Argument[1].Element", "ReturnValue", "taint", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "PrimitiveTypeProvider", False, "GetPrimitiveType", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.Metadata.PrimitiveTypeCode)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal.TypeSystem.Ecma", "CachingMetadataStringDecoder", "CachingMetadataStringDecoder", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetPrimitiveType", "(System.Reflection.Metadata.PrimitiveTypeCode)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetSZArrayType", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetSystemType", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetTypeFromDefinition", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeDefinitionHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetTypeFromReference", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeReferenceHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetTypeFromSerializedName", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetTypeFromSpecification", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.TypeSpecificationHandle,System.Byte)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "GetUnderlyingEnumType", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "CustomAttributeTypeProvider", "IsSystemType", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaAssembly", "HasAssemblyCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "CompareToImpl", "(Internal.TypeSystem.FieldDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "GetEmbeddedSignatureData", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "GetMarshalAsDescriptor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_Attributes", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_ClassCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_HasRva", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsInitOnly", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsIntrinsic", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsLiteral", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsNotSerialized", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsStatic", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_IsThreadStatic", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaField", "get_MetadataReader", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaFieldExtensions", "GetFieldRvaData", "(Internal.TypeSystem.Ecma.EcmaField)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaFieldExtensions", "GetFieldRvaValue", "(Internal.TypeSystem.Ecma.EcmaField)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "CompareToImpl", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_ClassCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Constraints", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_DiagnosticName", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Index", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Kind", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Name", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_TypeConstraints", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaGenericParameter", "get_Variance", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "CompareToImpl", "(Internal.TypeSystem.MethodDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "GetPInvokeMethodMetadata", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "GetParameterMetadata", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_Attributes", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_ClassCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_ImplAttributes", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsAbstract", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsAggressiveInlining", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsAggressiveOptimization", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsDefaultConstructor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsFinal", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsInternalCall", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsIntrinsic", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsNewSlot", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsNoInlining", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsNoOptimization", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsPInvoke", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsRuntimeExport", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsRuntimeImplemented", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsSpecialName", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsStaticConstructor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsSynchronized", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsUnmanagedCallersOnly", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_IsVirtual", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaMethod", "get_MetadataReader", "()", "summary", "df-generated"]
|
||||
- ["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", "Create", "(Internal.TypeSystem.TypeSystemContext,System.Reflection.PortableExecutable.PEReader,Internal.TypeSystem.IAssemblyDesc,Internal.TypeSystem.Ecma.PdbSymbolReader,Internal.TypeSystem.IModuleResolver)", "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", "ToString", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", "get_IsPlatformNeutral", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", "get_ModuleTypeSort", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaModule", "get_PdbReader", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureEncoder<TEntityHandleProvider>", "EncodeMethodSignature", "(System.Reflection.Metadata.BlobBuilder,Internal.TypeSystem.MethodSignature)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureEncoder<TEntityHandleProvider>", "EncodeTypeSignature", "(System.Reflection.Metadata.Ecma335.SignatureTypeEncoder,Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", "ParseMarshalAsDescriptor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureParser", "get_IsFieldSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseFieldSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseLocalsSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseMemberRefSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseMethodSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseMethodSpecSignature", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaSignatureTranslator", "ParseType", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "CompareToImpl", "(Internal.TypeSystem.TypeDesc,Internal.TypeSystem.TypeSystemComparer)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "ComputeTypeFlags", "(Internal.TypeSystem.TypeFlags)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "ComputeVirtualMethodImplsForType", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "FindMethodsImplWithMatchingDeclName", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetClassLayout", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetDefaultConstructor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetField", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetFields", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetHashCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetMethod", "(System.String,Internal.TypeSystem.MethodSignature,Internal.TypeSystem.Instantiation)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetMethods", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetNestedType", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetNestedTypes", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetStaticConstructor", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "GetVirtualMethods", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "HasCustomAttribute", "(System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_Attributes", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_ClassCode", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_ContainingType", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_Context", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsAbstract", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsBeforeFieldInit", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsExplicitLayout", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsModuleType", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsSealed", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsSequentialLayout", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_IsSerializable", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "EcmaType", "get_PInvokeStringFormat", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "CompareTo", "(Internal.TypeSystem.Ecma.IEcmaModule)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "GetObject", "(System.Reflection.Metadata.EntityHandle,Internal.TypeSystem.NotFoundBehavior)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "GetType", "(System.Reflection.Metadata.EntityHandle)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "get_Assembly", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "get_MetadataReader", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEcmaModule", "get_ModuleTypeSort", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IEntityHandleProvider", "GetTypeDefOrRefHandleForTypeDesc", "(Internal.TypeSystem.TypeDesc)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "IMetadataStringDecoderProvider", "GetMetadataStringDecoder", "()", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetAttributeNamespaceAndName", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.CustomAttributeHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.StringHandle)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetAttributeTypeAndConstructor", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.CustomAttributeHandle,System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.EntityHandle)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetAttributeTypeNamespaceAndName", "(System.Reflection.Metadata.MetadataReader,System.Reflection.Metadata.EntityHandle,System.Reflection.Metadata.StringHandle,System.Reflection.Metadata.StringHandle)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttribute", "(Internal.TypeSystem.Ecma.EcmaField,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttribute", "(Internal.TypeSystem.Ecma.EcmaMethod,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttribute", "(Internal.TypeSystem.Ecma.EcmaType,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttributes", "(Internal.TypeSystem.Ecma.EcmaAssembly,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttributes", "(Internal.TypeSystem.Ecma.EcmaField,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttributes", "(Internal.TypeSystem.Ecma.EcmaMethod,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDecodedCustomAttributes", "(Internal.TypeSystem.Ecma.EcmaType,System.String,System.String)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "GetDelegatePInvokeFlags", "(Internal.TypeSystem.Ecma.EcmaType)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "IsNested", "(System.Reflection.TypeAttributes)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "IsPublic", "(System.Reflection.MethodAttributes)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "MetadataExtensions", "IsRuntimeSpecialName", "(System.Reflection.MethodAttributes)", "summary", "df-generated"]
|
||||
- ["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", "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", "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", "GetStateMachineKickoffMethod", "(System.Int32)", "summary", "df-generated"]
|
||||
- ["Internal.TypeSystem.Ecma", "UnmanagedPdbSymbolReader", "TryOpenSymbolReaderForMetadataFile", "(System.String,System.String)", "summary", "df-generated"]
|
||||
1005
csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml
Normal file
1005
csharp/ql/lib/ext/generated/Internal.TypeSystem.model.yml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,10 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Internal", "Console+Error", "Write", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal", "Console", "Write", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal", "Console", "WriteLine", "()", "summary", "df-generated"]
|
||||
- ["Internal", "Console", "WriteLine", "(System.String)", "summary", "df-generated"]
|
||||
- ["Internal", "Console+Error", "Write", "(System.String)", "summary", "df-generated"]
|
||||
|
||||
@@ -1,31 +1,25 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "GetTaskParameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "Initialize", "(System.String,System.Collections.Generic.IDictionary<System.String,Microsoft.Build.Framework.TaskPropertyInfo>,System.String,Microsoft.Build.Framework.IBuildEngine)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+CaseInsensitiveDictionaryConverter", False, "Read", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItemConverter", False, "Read", "(System.Text.Json.Utf8JsonReader,System.Type,System.Text.Json.JsonSerializerOptions)", "", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", False, "SetPropertyValue", "(Microsoft.Build.Framework.TaskPropertyInfo,System.Object)", "", "Argument[1]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", False, "get_BuildEngine", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", False, "set_BuildEngine", "(Microsoft.Build.Framework.IBuildEngine)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "GetTaskParameters", "()", "", "Argument[this]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", False, "Initialize", "(System.String,System.Collections.Generic.IDictionary<System.String,Microsoft.Build.Framework.TaskPropertyInfo>,System.String,Microsoft.Build.Framework.IBuildEngine)", "", "Argument[0]", "Argument[this]", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "CleanupTask", "(Microsoft.Build.Framework.ITask)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "CreateTask", "(Microsoft.Build.Framework.IBuildEngine)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_FactoryName", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_TaskType", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+CaseInsensitiveDictionaryConverter", "Write", "(System.Text.Json.Utf8JsonWriter,System.Collections.Generic.Dictionary<System.String,System.String>,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", "JsonModelItem", "(System.String,System.Collections.Generic.Dictionary<System.String,System.String>)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", "get_Identity", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItem", "get_Metadata", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItemConverter", "JsonModelItemConverter", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelItemConverter", "Write", "(System.Text.Json.Utf8JsonWriter,JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem,System.Text.Json.JsonSerializerOptions)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelRoot", "JsonModelRoot", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelRoot", "get_Items", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelRoot", "get_Properties", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonModelRoot", "set_Items", "(System.Collections.Generic.Dictionary<System.String,JsonToItemsTaskFactory.JsonToItemsTaskFactory+JsonModelItem[]>)", "summary", "df-generated"]
|
||||
@@ -40,3 +34,7 @@ extensions:
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "get_JsonOptions", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "get_TaskName", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory+JsonToItemsTask", "set_HostObject", "(Microsoft.Build.Framework.ITaskHost)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "CleanupTask", "(Microsoft.Build.Framework.ITask)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "CreateTask", "(Microsoft.Build.Framework.IBuildEngine)", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_FactoryName", "()", "summary", "df-generated"]
|
||||
- ["JsonToItemsTaskFactory", "JsonToItemsTaskFactory", "get_TaskType", "()", "summary", "df-generated"]
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/csharp-all
|
||||
@@ -27,11 +28,9 @@ extensions:
|
||||
extensible: neutralModel
|
||||
data:
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "CSharpArgumentInfo", "Create", "(Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfoFlags,System.String)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderException", "RuntimeBinderException", "()", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderException", "RuntimeBinderException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderException", "RuntimeBinderException", "(System.String)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderException", "RuntimeBinderException", "(System.String,System.Exception)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderInternalCompilerException", "RuntimeBinderInternalCompilerException", "()", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderInternalCompilerException", "RuntimeBinderInternalCompilerException", "(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderInternalCompilerException", "RuntimeBinderInternalCompilerException", "(System.String)", "summary", "df-generated"]
|
||||
- ["Microsoft.CSharp.RuntimeBinder", "RuntimeBinderInternalCompilerException", "RuntimeBinderInternalCompilerException", "(System.String,System.Exception)", "summary", "df-generated"]
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user