Mono.Debugger.GUIManager.GetProperty C# (CSharp) Method

GetProperty() public method

public GetProperty ( Thread thread, TargetPropertyInfo property, TargetStructObject instance, ExpressionEvaluator flags, int timeout, string &error, TargetObject &value ) : ExpressionEvaluator.EvaluationResult
thread Thread
property Mono.Debugger.Languages.TargetPropertyInfo
instance Mono.Debugger.Languages.TargetStructObject
flags ExpressionEvaluator
timeout int
error string
value Mono.Debugger.Languages.TargetObject
return ExpressionEvaluator.EvaluationResult
        public EE.EvaluationResult GetProperty(Thread thread, TargetPropertyInfo property,
							TargetStructObject instance, EE.EvaluationFlags flags,
							int timeout, out string error, out TargetObject value)
        {
            return EE.GetProperty (thread, property, instance, flags, timeout, out error, out value);
        }