Beispiel #1
0
 // 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));
 }
Beispiel #2
0
 public PropertyInfo ClrProperty(IEdmProperty declaredEdmProperty)
 {
     return(ClrType.GetProperty(declaredEdmProperty.Name, BindingFlags.Instance | BindingFlags.Public));
 }