IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Reflection.MissingProperty Class Referencesealed

Public Member Functions

override MethodInfo GetGetMethod (bool nonPublic)
 
override MethodInfo GetSetMethod (bool nonPublic)
 
override MethodInfo[] GetAccessors (bool nonPublic)
 
override object GetRawConstantValue ()
 

Properties

override PropertyAttributes Attributes [get]
 
override bool CanRead [get]
 
override bool CanWrite [get]
 
override string Name [get]
 
override Type DeclaringType [get]
 
override Module Module [get]
 

Detailed Description

Definition at line 28 of file MissingProperty.cs.

Member Function Documentation

◆ GetAccessors()

override MethodInfo[] IKVM.Reflection.MissingProperty.GetAccessors ( bool nonPublic)

Definition at line 73 of file MissingProperty.cs.

74 {
75 throw new MissingMemberException(this);
76 }

◆ GetGetMethod()

override MethodInfo IKVM.Reflection.MissingProperty.GetGetMethod ( bool nonPublic)

Definition at line 63 of file MissingProperty.cs.

64 {
65 throw new MissingMemberException(this);
66 }

◆ GetRawConstantValue()

override object IKVM.Reflection.MissingProperty.GetRawConstantValue ( )

Definition at line 78 of file MissingProperty.cs.

79 {
80 throw new MissingMemberException(this);
81 }

◆ GetSetMethod()

override MethodInfo IKVM.Reflection.MissingProperty.GetSetMethod ( bool nonPublic)

Definition at line 68 of file MissingProperty.cs.

69 {
70 throw new MissingMemberException(this);
71 }

Property Documentation

◆ Attributes

override PropertyAttributes IKVM.Reflection.MissingProperty.Attributes
get

Definition at line 48 of file MissingProperty.cs.

49 {
50 get { throw new MissingMemberException(this); }
51 }

◆ CanRead

override bool IKVM.Reflection.MissingProperty.CanRead
get

Definition at line 53 of file MissingProperty.cs.

54 {
55 get { throw new MissingMemberException(this); }
56 }

◆ CanWrite

override bool IKVM.Reflection.MissingProperty.CanWrite
get

Definition at line 58 of file MissingProperty.cs.

59 {
60 get { throw new MissingMemberException(this); }
61 }

◆ DeclaringType

override Type IKVM.Reflection.MissingProperty.DeclaringType
get

Definition at line 108 of file MissingProperty.cs.

109 {
110 get { return declaringType; }
111 }

◆ Module

override Module IKVM.Reflection.MissingProperty.Module
get

Definition at line 113 of file MissingProperty.cs.

114 {
115 get { return declaringType.Module; }
116 }

◆ Name

override string IKVM.Reflection.MissingProperty.Name
get

Definition at line 103 of file MissingProperty.cs.

104 {
105 get { return name; }
106 }

The documentation for this class was generated from the following file: