TypeInfo.NeedsQualifiedGetValue C# (CSharp) Method

NeedsQualifiedGetValue() public method

public NeedsQualifiedGetValue ( GlobalInfo, all ) : bool
all GlobalInfo,
return bool
	public bool NeedsQualifiedGetValue (GlobalInfo all)
	{
		foreach (MemberInfo child in Children.Values) {
			if (child is FieldInfo && child.Name == "ValueProperty")
				return true;
		}
		if (Base != null)
			return ((TypeInfo)all.Children[Base.Value]).NeedsQualifiedGetValue (all);
		return false;
	}