CLREvent |
The CLREventData type exposes the following members.
| Name | Description | |
|---|---|---|
| CLREventData | Initialize a new instance of CLREventData |
| Name | Description | |
|---|---|---|
| DoNotDisposeEventData | Override to return to prevent automatic disposal of EventData when Dispose is called on this instance. Default is . | |
| DynEventData | Dynamic accessor to the information about event information received from the JVM | |
| DynExtraData | A dynamic array of extra information ordered with the same order of the caller, or null if HasExtraData is | |
| EventData | Accessor to the information about event information received from the JVM | |
| ExtraData | An array of extra information ordered with the same order of the caller, or null if HasExtraData is | |
| ExtraDataLength | Returns how many Object contains extra information. | |
| HasExtraData | True if the event has other objects associated | |
| Item | Returns the indexed IJavaObject |
| Name | Description | |
|---|---|---|
| CheckDisposed | Test if this instance was disposed | |
| Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | |
| Dispose(Boolean) | Implements the pattern described in https://learn.microsoft.com/en-en/dotnet/standard/garbage-collection/implementing-dispose | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize |
Finalizer
(Overrides ObjectFinalize) | |
| GetAt | Returns the indexed IJavaObject | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| Name | Description | |
|---|---|---|
| ConvertTReturn |
Converts a generic object
(Defined by JCOBridgeExtensions) | |
| ToTObject |
Converts data associated to CLREventData into TObject (Defined by JCOBridgeExtensions) | |
| ToTObject |
Converts extra data associated to CLREventData into TObject (Defined by JCOBridgeExtensions) | |
| ToNative |
Converts a generic input to an object manageable from the JVM
(Defined by JCOBridgeExtensions) |
public class CLREventObjectData : CLREventData { public CLREventObjectData(object actionData) : base(actionData) { } public dynamic Source { get { return DynEventData.getSource(); } } public override string ToString() { return DynEventData.toString(); } }