This type represents a Perl blessed reference: the equivalent of an object in Perl.
An example to come, one day.
Blessed Constructor
Creates a new blessed object.
Parameters
- perl
- The context that will contain the object.
- package
- The object's package.
- args
- The arguments to pass to the package's "new" function.
Remarks
This is equivalent to the Perl code new package(args).
Call
Calls a method on the object.
Parameters
- method
- The name of the method.
- args
- The arguments to pass to the method.
Returns
The return value of the method.
Exceptions
Remarks
This is equivalent to the Perl code this->method(args).
CallParams
Calls a method on the object.
Parameters
- method
- The name of the method.
- args
- The arguments to pass to the method, as a param array.
Returns
The return value of the method.
Exceptions
Remarks
This is equivalent to the Perl code this->method(args).
Package
public
string Package
{
get;
}
Returns the package that this object instantiates.
Value
The package that this object instantiates.