PageSession.LoadPage Method

Loads a page.

Overload List

  protected void LoadPage(
  string  
  source
  ,
  IDictionary<string, object>  
  sourceData
  ,
  IDictionary<string, object>  
  uiProperties
  
);
protected void LoadPage(
  string  source,
  IDictionary<string, object>  sourceData,
  IDictionary<string, object>  uiProperties,
  bool  navigateForward
);
protected virtual void LoadPage(
  object  target,
  string  source,
  IDictionary<string, object>  sourceData,
  IDictionary<string, object>  uiProperties,
  bool  navigateForward
);

Parameters

source

System.String. The uniform resource identifier (URI) that points to the page. For more information, see Using Resources in MCML.

sourceData

System.Collections.Generic.IDictionary<string,object>. Contains parameters passed in the web request that are used to fetch the page if the source URI is an HTTP or HTTPS URI.

uiProperties

System.Collections.Generic.IDictionary<string,object>. Contains parameters passed to the new page.

navigateForward

System.Boolean.  Used by classes that implement a page stack to determine whether the current page should be pushed on the stack.

target

System.Object.  Reserved for future use. Use null for this value.

Return Value

This method does not return a value.

Requirements

Reference: Microsoft.MediaCenter

Namespace: Microsoft.MediaCenter.Hosting

Assembly: Microsoft.MediaCenter.dll

Platform: Windows Vista Ultimate, Windows Vista Home Premium, and later

See Also