IMediaPlayerActionDelegate Interface |
The MediaPlayerActionDelegate protocol declares the two methods that a class must implement in order to become an
MediaPlayer actionDelegate. The object implementing
MediaPlayer will receive information about the URLs that need to be executed as the user interacts with the player.
Namespace: Veeplay.utillitiesAssembly: Veeplay (in Veeplay.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public interface IMediaPlayerActionDelegate
Public Interface IMediaPlayerActionDelegate
public interface class IMediaPlayerActionDelegate
type IMediaPlayerActionDelegate = interface end
The IMediaPlayerActionDelegate type exposes the following members.
Methods
| Name | Description |
---|
| canRespondTo |
Returns a Boolean value indicating whether the receiver is able to interpret and react to the given input URL.
|
| respondTo |
If the MediaPlayerActionDelegate implementing object returns true from the canRespondTo method for a certain URL, this method will be triggered to request effective execution.
|
TopSee Also