The manager used to create method exit requests
The class manager associated with the virtual machine, used to retrieve class and method information
Creates a new method exit request for the specified class and method.
Creates a new method exit request for the specified class and method.
The name of the class whose method exit events to watch
The name of the method whose exit to watch
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
The method name is purely used for indexing the request in the internal list. You should set a method name filter on the event handler for the method exit event.
Creates a method exit request based on the specified information.
Creates a method exit request based on the specified information.
The information used to create the method exit request
Success(id) if successful, otherwise Failure
Creates a new method exit request for the specified class and method.
Creates a new method exit request for the specified class and method.
The id of the request used to retrieve and delete it
The name of the class whose method exit events to watch
The name of the method whose exit to watch
Any additional arguments to provide to the request
Success(id) if successful, otherwise Failure
The method name is purely used for indexing the request in the internal list. You should set a method name filter on the event handler for the method exit event.
Retrieves the method exit requests for the specific class and method.
Retrieves the method exit requests for the specific class and method.
The name of the class targeted by the method exit request
The name of the method targeted by the method exit request
Some collection of method exit requests if they exist, otherwise None
Returns the information for a method exit request with the specified id.
Returns the information for a method exit request with the specified id.
The id of the request
Some method exit information if found, otherwise None
Retrieves the method exit request with the specified id.
Retrieves the method exit request with the specified id.
The id of the request
Some method exit request if it exists, otherwise None
Determines if a method exit request for the specific class and method exists.
Determines if a method exit request for the specific class and method exists.
The name of the class targeted by the method exit request
The name of the method targeted by the method exit request
True if a method exit request exists, otherwise false
Determines if a method exit request exists with the specified id.
Determines if a method exit request exists with the specified id.
The id of the request
True if a method exit request exists, otherwise false
Retrieves the list of method exit requests contained by this manager.
Retrieves the list of method exit requests contained by this manager.
The collection of method exit request information
Retrieves the list of method exit requests contained by this manager.
Retrieves the list of method exit requests contained by this manager.
The collection of method exit requests by id
Generates an id for a new request.
Generates an id for a new request.
The id as a string
Removes the specified method exit request.
Removes the specified method exit request.
The name of the class targeted by the method exit request
The name of the method targeted by the method exit request
True if the method exit request was removed (if it existed), otherwise false
Removes the specified method exit request.
Removes the specified method exit request.
The id of the request
True if the method exit request was removed (if it existed), otherwise false
Represents the manager for method exit requests.