コード例 #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
ファイル: PropertyBaseExts.cs プロジェクト: E01D/Base
 public static bool IsPublic(this PropertyInfo property)
 {
     return(XPropertiesBase.IsPublic(property));
 }