Westwind.WebConnection.wwDotNetBridge.GetPropertyEx C# (CSharp) Method

GetPropertyEx() public method

Returns a property value by allowing . syntax to drill into nested objects. Use this method to step over objects that FoxPro can't directly access (like structs, generics etc.)
public GetPropertyEx ( object Instance, string Property ) : object
Instance object
Property string
return object
        public object GetPropertyEx(object Instance, string Property)
        {
            LastException = null;
            try
            {
                object val = ReflectionUtils.GetPropertyEx(Instance, Property);
                val = FixupReturnValue(val);
                return val;
            }
            catch (Exception ex)
            {
                SetError(ex.GetBaseException(), true);
                throw ex.GetBaseException();
            }
        }
wwDotNetBridge