[This is preliminary documentation and subject to change.]

Sets the given IPlayOnHost for this plugin.


Namespace: MediaMallTechnologies.Plugin
Assembly: Util (in Util.dll)

Syntax

Visual Basic (Declaration)
Sub SetPlayOnHost( _ 
   ByVal host As IPlayOnHost _ 
)
C#
void SetPlayOnHost(
   IPlayOnHost host
)
C++
void SetPlayOnHost(
   IPlayOnHost host
) abstract 
J#
void SetPlayOnHost(
   IPlayOnHost host
)
JScript
function SetPlayOnHost(
   host : IPlayOnHost
)

Parameters

host
The IPlayOnHost instance that owns this plugin.

Remarks

This method is guaranteed to be called once and only once, immediately after the plugin is instantiated. This gives all plugins the opportunity to initialize their state, and to query for custom properties via IPlayOnHost.Properties. The host object should be cached by the plugin instance for future reference.

See Also