Definition at line 27 of file GenericPropertyInfo.cs.
◆ Equals()
| override bool IKVM.Reflection.GenericPropertyInfo.Equals |
( |
object | obj | ) |
|
Definition at line 44 of file GenericPropertyInfo.cs.
45 {
46 var other = obj as GenericPropertyInfo;
47 return other != null && other.typeInstance == typeInstance && other.property == property;
48 }
◆ GetAccessors()
| override MethodInfo[] IKVM.Reflection.GenericPropertyInfo.GetAccessors |
( |
bool | nonPublic | ) |
|
Definition at line 88 of file GenericPropertyInfo.cs.
89 {
90 var accessors = property.GetAccessors(nonPublic);
91 for (int i = 0; i < accessors.Length; i++)
92 accessors[i] = Wrap(accessors[i]);
93
94 return accessors;
95 }
◆ GetGetMethod()
| override MethodInfo IKVM.Reflection.GenericPropertyInfo.GetGetMethod |
( |
bool | nonPublic | ) |
|
◆ GetHashCode()
| override int IKVM.Reflection.GenericPropertyInfo.GetHashCode |
( |
| ) |
|
Definition at line 50 of file GenericPropertyInfo.cs.
51 {
52 return typeInstance.GetHashCode() * 537 + property.GetHashCode();
53 }
◆ GetRawConstantValue()
| override object IKVM.Reflection.GenericPropertyInfo.GetRawConstantValue |
( |
| ) |
|
◆ GetSetMethod()
| override MethodInfo IKVM.Reflection.GenericPropertyInfo.GetSetMethod |
( |
bool | nonPublic | ) |
|
◆ Attributes
| override PropertyAttributes IKVM.Reflection.GenericPropertyInfo.Attributes |
|
get |
◆ CanRead
| override bool IKVM.Reflection.GenericPropertyInfo.CanRead |
|
get |
◆ CanWrite
| override bool IKVM.Reflection.GenericPropertyInfo.CanWrite |
|
get |
◆ DeclaringType
| override Type IKVM.Reflection.GenericPropertyInfo.DeclaringType |
|
get |
◆ MetadataToken
| override int IKVM.Reflection.GenericPropertyInfo.MetadataToken |
|
get |
◆ Module
| override Module IKVM.Reflection.GenericPropertyInfo.Module |
|
get |
◆ Name
| override string IKVM.Reflection.GenericPropertyInfo.Name |
|
get |
The documentation for this class was generated from the following file: