Adf.Web.Binding.WebBinder.GetValue C# (CSharp) Метод

GetValue() приватный статический Метод

Gets the value of the specified property of the specified business object.
private static GetValue ( object bindableObject, PropertyInfo pi ) : object
bindableObject object The business object to get the value from.
pi System.Reflection.PropertyInfo The property of the business object to get the value of.
Результат object
        private static object GetValue(object bindableObject, PropertyInfo pi)
        {
            return pi == null ? null : pi.GetValue(bindableObject, null);
        }