|
IKVM11
11
Java SE 11 Virtual Machine for .NET
|
Public Member Functions | |
| IkvmReflectionEventSymbol (IkvmReflectionSymbolContext context, IkvmReflectionTypeSymbol type, EventInfo underlyingEvent) | |
| Initializes a new instance. | |
| IMethodSymbol? | GetAddMethod () |
| Returns the method used to add an event handler delegate to the event source. | |
| IMethodSymbol? | GetAddMethod (bool nonPublic) |
| Returns the method used to add an event handler delegate to the event source, specifying whether to return non-public methods. | |
| IMethodSymbol[] | GetOtherMethods () |
| Returns the public methods that have been associated with an event in metadata using the .other directive. | |
| IMethodSymbol[] | GetOtherMethods (bool nonPublic) |
| Returns the methods that have been associated with the event in metadata using the .other directive, specifying whether to include non-public methods. | |
| IMethodSymbol? | GetRaiseMethod () |
| Returns the method that is called when the event is raised. | |
| IMethodSymbol? | GetRaiseMethod (bool nonPublic) |
| When overridden in a derived class, returns the method that is called when the event is raised, specifying whether to return non-public methods. | |
| IMethodSymbol? | GetRemoveMethod (bool nonPublic) |
| When overridden in a derived class, retrieves the IMethodSymbol object for removing a method of the event, specifying whether to return non-public methods. | |
| IMethodSymbol? | GetRemoveMethod () |
| Returns the method used to remove an event handler delegate from the event source. | |
Public Member Functions inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionMemberSymbol | |
| IkvmReflectionMemberSymbol (IkvmReflectionSymbolContext context, IkvmReflectionModuleSymbol module, IkvmReflectionTypeSymbol? type, MemberInfo underlyingMember) | |
| Initializes a new instance. | |
| virtual ImmutableArray< CustomAttributeSymbol > | GetCustomAttributes () |
| Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes. | |
| virtual ImmutableArray< CustomAttributeSymbol > | GetCustomAttributes (ITypeSymbol attributeType) |
| Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type. | |
| virtual bool | IsDefined (ITypeSymbol attributeType) |
| Indicates whether one or more instance of attributeType is defined on this member. | |
Public Member Functions inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionSymbol | |
| IkvmReflectionSymbol (IkvmReflectionSymbolContext context) | |
| Initializes a new instance. | |
Public Member Functions inherited from IKVM.CoreLib.Symbols.ICustomAttributeSymbolProvider | |
Public Member Functions inherited from IKVM.CoreLib.Symbols.IEventSymbol | |
Properties | |
| IMethodSymbol? | AddMethod [get] |
| Returns the method used to add an event handler delegate to the event source. | |
| global::System.Reflection.EventAttributes | Attributes [get] |
| Gets the attributes for this event. | |
| ITypeSymbol? | EventHandlerType [get] |
| Gets the object of the underlying event-handler delegate associated with this event. | |
| bool | IsSpecialName [get] |
| Gets a value indicating whether the IEventSymbol has a name with a special meaning. | |
| IMethodSymbol? | RaiseMethod [get] |
| Returns the method that is called when the event is raised. | |
| IMethodSymbol? | RemoveMethod [get] |
| Returns the method used to remove an event handler delegate from the event source. | |
Properties inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionMemberSymbol | |
| virtual ? ITypeSymbol | DeclaringType [get] |
| Gets the class that declares this member. | |
| virtual global::System.Reflection.MemberTypes | MemberType [get] |
| When overridden in a derived class, gets a value indicating the type of the member - method, constructor, event, and so on. | |
| virtual int | MetadataToken [get] |
| Gets a value that identifies a metadata element. | |
| virtual IModuleSymbol | Module [get] |
| Gets the module in which the type that declares the member represented by the current is defined. | |
| virtual string | Name [get] |
| Gets the name of the current member. | |
| override bool | IsMissing [get] |
Returns true if the symbol is missing. | |
Properties inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionSymbol | |
| IkvmReflectionSymbolContext | Context [get] |
| Gets the associated IkvmReflectionSymbolContext. | |
| virtual bool | IsMissing [get] |
Returns true if the symbol is missing. | |
Properties inherited from IKVM.CoreLib.Symbols.ISymbol | |
Properties inherited from IKVM.CoreLib.Symbols.IMemberSymbol | |
Properties inherited from IKVM.CoreLib.Symbols.IEventSymbol | |
Additional Inherited Members | |
Protected Member Functions inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionSymbol | |
| virtual IkvmReflectionMemberSymbol | ResolveMemberSymbol (MemberInfo member) |
| Resolves the symbol for the specified type. | |
Package Functions inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionMemberSymbol | |
Package Functions inherited from IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionSymbol | |
Definition at line 8 of file IkvmReflectionEventSymbol.cs.
| IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.IkvmReflectionEventSymbol | ( | IkvmReflectionSymbolContext | context, |
| IkvmReflectionTypeSymbol | type, | ||
| EventInfo | underlyingEvent ) |
Initializes a new instance.
| context | |
| type | |
| underlyingEvent |
Definition at line 19 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetAddMethod | ( | ) |
Returns the method used to add an event handler delegate to the event source.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 37 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetAddMethod | ( | bool | nonPublic | ) |
Returns the method used to add an event handler delegate to the event source, specifying whether to return non-public methods.
| nonPublic |
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 42 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol[] IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetOtherMethods | ( | ) |
Returns the public methods that have been associated with an event in metadata using the .other directive.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 47 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol[] IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetOtherMethods | ( | bool | nonPublic | ) |
Returns the methods that have been associated with the event in metadata using the .other directive, specifying whether to include non-public methods.
| nonPublic |
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 52 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetRaiseMethod | ( | ) |
Returns the method that is called when the event is raised.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 57 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetRaiseMethod | ( | bool | nonPublic | ) |
When overridden in a derived class, returns the method that is called when the event is raised, specifying whether to return non-public methods.
| nonPublic |
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 62 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetRemoveMethod | ( | ) |
Returns the method used to remove an event handler delegate from the event source.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 72 of file IkvmReflectionEventSymbol.cs.
| IMethodSymbol? IKVM.CoreLib.Symbols.IkvmReflection.IkvmReflectionEventSymbol.GetRemoveMethod | ( | bool | nonPublic | ) |
When overridden in a derived class, retrieves the IMethodSymbol object for removing a method of the event, specifying whether to return non-public methods.
| nonPublic |
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 67 of file IkvmReflectionEventSymbol.cs.
|
get |
Returns the method used to add an event handler delegate to the event source.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 25 of file IkvmReflectionEventSymbol.cs.
|
get |
Gets the attributes for this event.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 27 of file IkvmReflectionEventSymbol.cs.
|
get |
Gets the object of the underlying event-handler delegate associated with this event.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 29 of file IkvmReflectionEventSymbol.cs.
|
get |
Gets a value indicating whether the IEventSymbol has a name with a special meaning.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 31 of file IkvmReflectionEventSymbol.cs.
|
get |
Returns the method that is called when the event is raised.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 33 of file IkvmReflectionEventSymbol.cs.
|
get |
Returns the method used to remove an event handler delegate from the event source.
Implements IKVM.CoreLib.Symbols.IEventSymbol.
Definition at line 35 of file IkvmReflectionEventSymbol.cs.