// Get a specific property from within this type. protected override PropertyInfo GetPropertyImpl (String name, BindingFlags bindingAttr, Binder binder, Type returnType, Type[] types, ParameterModifier[] modifiers) { CheckCreated(); return(type.GetProperty(name, bindingAttr, binder, returnType, types, modifiers)); }
public PropertyInfo ClrProperty(IEdmProperty declaredEdmProperty) { return(ClrType.GetProperty(declaredEdmProperty.Name, BindingFlags.Instance | BindingFlags.Public)); }