Delegate.Target Property

Definition

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

public:
 property System::Object ^ Target { System::Object ^ get(); };
public object Target { get; }
public object? Target { get; }
member this.Target : obj
Public ReadOnly Property Target As Object

Property Value

The object on which the current delegate invokes the instance method, if the delegate represents an instance method; null 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.

Applies to