![]() | CLREvent |
The CLREventData type exposes the following members.
Name | Description | |
---|---|---|
![]() | CLREventData | Initialize a new instance of CLREventData |
Name | Description | |
---|---|---|
![]() | 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 data |
Name | Description | |
---|---|---|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
![]() | 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(); } }