示例#1
0
 /// <summary>
 /// Returns the public accessors for this property.
 /// </summary>
 /// <param name="provider">The reflection introspection provider.</param>
 /// <param name="property">The property to get the accessors for.</param>
 /// <returns>An array of <see cref="MethodInfo" /> objects that reflect the public get, set, and other accessors of the property reflected by the current instance, if found; otherwise, this method returns an array with zero (0) elements.</returns>
 public static IReadOnlyList <MethodInfo> GetAccessors(this IPropertyInfoIntrospectionProvider provider, PropertyInfo property) => NotNull(provider).GetAccessors(property, nonPublic: false);
示例#2
0
 /// <summary>
 /// Gets a value indicating whether the property has the SpecialName attribute.
 /// </summary>
 /// <param name="provider">The reflection introspection provider.</param>
 /// <param name="property">The property to inspect.</param>
 /// <returns>true if the property has the SpecialName attribute set; otherwise, false.</returns>
 public static bool IsSpecialName(this IPropertyInfoIntrospectionProvider provider, PropertyInfo property) => (NotNull(provider).GetAttributes(property) & PropertyAttributes.SpecialName) > PropertyAttributes.None;
示例#3
0
 /// <summary>
 /// Returns the public set accessor for this property.
 /// </summary>
 /// <param name="provider">The reflection introspection provider.</param>
 /// <param name="property">The property to get the set accessor for.</param>
 /// <returns>A <see cref="MethodInfo"/> object representing the public set accessor for this property, or null if the set accessor is non-public or does not exist.</returns>
 public static MethodInfo GetSetMethod(this IPropertyInfoIntrospectionProvider provider, PropertyInfo property) => NotNull(provider).GetSetMethod(property, nonPublic: false);