Microsoft.R.StackTracing.RStackFrameExtensions.DescribeChildrenAsync C# (CSharp) Méthode

DescribeChildrenAsync() public static méthode

Like RSessionExtensions.DescribeChildrenAsync, but returns children of this environment.
If this method is called on a stale frame (i.e if call stack has changed since the RSessionExtensions.TracebackAsync call that produced this frame), the result is undefined - the method can throw RException, or produce meaningless output.
public static DescribeChildrenAsync ( this frame, REvaluationResultProperties properties, string repr, int maxCount = null, CancellationToken cancellationToken = default(CancellationToken) ) : Task>
frame this
properties REvaluationResultProperties
repr string
maxCount int
cancellationToken System.Threading.CancellationToken
Résultat Task>
        public static Task<IReadOnlyList<IREvaluationResultInfo>> DescribeChildrenAsync(
            this IRStackFrame frame,
            REvaluationResultProperties properties,
            string repr,
            int? maxCount = null,
            CancellationToken cancellationToken = default(CancellationToken)
        ) =>
            frame.Session.DescribeChildrenAsync(frame.EnvironmentExpression, "base::environment()", properties, repr, maxCount, cancellationToken);