RMethodInfo {SMRUCC.Rsharp.Runtime.Interop} | .NET clr documentation |
Use for R# package method, a wrapper for the .NET clr function MethodInfo.
# namespace SMRUCC.Rsharp.Runtime.Interop
export class RMethodInfo extends RsharpDataObject {
elementType: RType;
# Do not print the value of this function on console
invisible: boolean;
# The function name
name: string;
# module namespace string that parsed from PackageAttribute
namespace: string;
# A list of parameters of current .NET api that imported
# from the external dll assembly file.
parameters: RMethodArgument[];
# the return type of current api method
returns: IRType;
stackFrame: StackFrame;
}
elementType
: RTypeparameters
: RMethodArgumentreturns
: IRTypestackFrame
: StackFrame