StackFrame2.Locals2 Property
Gets a collection of expressions that represent the locals currently known by this frame. Similar to Locals, but allows the caller to specify whether automatic evaluation of properties and implicit function calls should be performed.
Namespace: EnvDTE90a
Assembly: EnvDTE90a (in EnvDTE90a.dll)
Syntax
'Declaration
ReadOnly Property Locals2 ( _
AllowAutoFuncEval As Boolean _
) As Expressions
Expressions this[
bool AllowAutoFuncEval
] { get; }
property Expressions^ Locals2[[InAttribute] bool AllowAutoFuncEval] {
Expressions^ get ([InAttribute] bool AllowAutoFuncEval);
}
abstract Locals2 :
AllowAutoFuncEval:bool -> Expressions with get
JScript does not support indexed properties.
Parameters
AllowAutoFuncEval
Type: System.BooleanDetermines whether properties and implicit function calls should be automatically evaluated. true means that automatic evaluation will be performed. false means automatic evaluation will not be performed. This parameter affects the returned expressions and any children of those expressions.
Property Value
Type: EnvDTE.Expressions
An Expressions collection.
Remarks
See Locals.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.