示例#1
0
文件: PropertyApi.cs 项目: E01D/Base
 /// <summary>
 /// Determines whether the property is an indexed property.
 /// </summary>
 /// <param name="property">The property.</param>
 /// <returns>
 ///     <c>true</c> if the property is an indexed property; otherwise, <c>false</c>.
 /// </returns>
 public bool IsIndexedProperty(PropertyInfo property)
 {
     return(XPropertiesBase.IsIndexedProperty(property));
 }
示例#2
0
文件: PropertyApi.cs 项目: E01D/Base
 public bool IsPublic(PropertyInfo property)
 {
     return(XPropertiesBase.IsPublic(property));
 }
示例#3
0
文件: PropertyApi.cs 项目: E01D/Base
 public bool IsVirtual(PropertyInfo propertyInfo)
 {
     return(XPropertiesBase.IsVirtual(propertyInfo));
 }
示例#4
0
文件: PropertyApi.cs 项目: E01D/Base
 public MethodInfo GetBaseDefinition(PropertyInfo propertyInfo)
 {
     return(XPropertiesBase.GetBaseDefinition(propertyInfo));
 }
示例#5
0
 public static bool IsPublic(this PropertyInfo property)
 {
     return(XPropertiesBase.IsPublic(property));
 }