public bool IsProperty(String property) { VariantPropertyDesc entry = _propertyDesc.Get(property); if (entry != null) { return(entry.IsProperty); } entry = FindProperty(property); if (entry != null) { return(entry.IsProperty); } return(false); }
public Type GetPropertyType(String property) { VariantPropertyDesc entry = _propertyDesc.Get(property); if (entry != null) { return(entry.PropertyType); } entry = FindProperty(property); if (entry != null) { return(entry.PropertyType); } return(null); }
public EventPropertyGetter GetGetter(String property) { VariantPropertyDesc entry = _propertyDesc.Get(property); if (entry != null) { return(entry.Getter); } entry = FindProperty(property); if (entry != null) { return(entry.Getter); } return(null); }