Share via


Target Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets the class instance on which the current delegate invokes the instance method.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public ReadOnly Property Target As Object
public Object Target { get; }
public:
property Object^ Target {
    Object^ get ();
}
member Target : Object with get
function get Target () : Object

Property Value

Type: System. . :: . .Object
The object on which the current delegate invokes the instance method, if the delegate represents an instance method; nullNothingnullptrunita null reference (Nothing in Visual Basic) if the delegate represents a static method.

Remarks

An instance method is a method that is associated with an instance of a class; a static method is a method that is associated with the class itself.

If the delegate invokes one or more instance methods, this property returns the target of the last instance method in the invocation list.

.NET Framework Security

See Also

Reference

Delegate Class

System Namespace