This topic has not yet been rated - Rate this topic

SilverlightHost Class

Silverlight

Reports details about the Silverlight-based application's instantiation settings, and exposes some of the HTML DOM values for the hosted Silverlight plug-in instance.

System.Object
  System.Windows.Interop.SilverlightHost

Namespace:  System.Windows.Interop
Assembly:  System.Windows (in System.Windows.dll)
public class SilverlightHost

The SilverlightHost type exposes the following members.

  Name Description
Public method Supported by Silverlight for Windows Phone SilverlightHost Infrastructure. Initializes a new instance of the SilverlightHost class.
Top
  Name Description
Public property Supported by Silverlight for Windows Phone Background Gets the background color value that was applied to the Silverlight plug-in as part of instantiation settings.
Public property Supported by Silverlight for Windows Phone Content Gets the "Content" sub-object of this SilverlightHost.
Public property InitParams Gets the initialization parameters that were passed as part of HTML initialization of a Silverlight plug-in.
Public property Supported by Silverlight for Windows Phone IsLoaded Gets a value that indicates whether the hosted Silverlight plug-in has finished loading.
Public property Supported by Silverlight for Windows Phone NavigationState Gets or sets a URI fragment that represents the current navigation state.
Public property Supported by Silverlight for Windows Phone Settings Gets the "Settings" sub-object of this SilverlightHost.
Public property Source Gets the URI of the package or XAML file that specifies the XAML content to render.
Top
  Name Description
Public method Supported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Silverlight for Windows Phone Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone IsVersionSupported Returns a value that indicates whether the installed Silverlight plug-in supports the specified version.
Protected method Supported by Silverlight for Windows Phone MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Public event Supported by Silverlight for Windows Phone NavigationStateChanged Occurs when the NavigationState property changes value.
Top

Much of the information that is reported by a SilverlightHost object is the same information that could be obtained from properties of the Silverlight plug-in object in the JavaScript API of the Silverlight object model. For instance, the Background color that was set as part of the Silverlight plug-in instantiation can be obtained by getting the current SilverlightHost instance from the Application.Host property, and then getting the Background property.

The Content property returns a value of type Content, which represents the visual state of the plug-in. This type enables you to perform common tasks, such as display the plug-in in full-screen mode or retrieve its current size.

The Settings property returns a value of type Settings, which provides access to some plug-in configuration values.

The following code example demonstrates how to use this class.


// The Host object, which represents the host Silverlight plug-in.
System.Windows.Interop.SilverlightHost host = 
    Application.Current.Host;

// The following code demonstrates how to use the Host object
// to access other APIs in the System.Windows.Interop namespace.

// The IsVersionSupported method. This method is useful when
// you want to implement an upgrade experience in managed code.
bool isSupported = host.IsVersionSupported("2.0.30908.0");

// Read-only properties of the Host object.
System.Windows.Media.Color pluginBackground = host.Background;
bool loaded = host.IsLoaded;
Uri source = host.Source;

// The Settings object, which represents Web browser settings.
System.Windows.Interop.Settings settings = host.Settings;

// Read/write properties of the Settings object.
settings.EnableFrameRateCounter = true;
settings.EnableRedrawRegions = true;
settings.MaxFrameRate = 60;

// Read-only properties of the Settings object.
bool windowless = settings.Windowless;
bool htmlAccessEnabled = settings.EnableHTMLAccess;

// The Content object, which represents the plug-in display area.
System.Windows.Interop.Content content = host.Content;

// The read/write IsFullScreen property of the Content object.
// See also the Content.FullScreenChanged event.
bool isFullScreen = content.IsFullScreen;

// Read-only properties of the Content object. These properties do 
// not contain meaningful values until after the Content.Resized 
// event occurs for the first time. 
double actualWidth = content.ActualWidth;
double actualHeight = content.ActualHeight;


Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ