Compartilhar via


PageContent Class

 

Provides the content that is displayed in a Page that is associated with a tab in the Dashboard.

Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)

Inheritance Hierarchy

System.Object
  System.MarshalByRefObject
    Microsoft.WindowsServerSolutions.Administration.ObjectModel.PageContent

Syntax

public abstract class PageContent : MarshalByRefObject, IDisposable
public ref class PageContent abstract : MarshalByRefObject, IDisposable
Public MustInherit Class PageContent
    Inherits MarshalByRefObject
    Implements IDisposable

Properties

Name Description
System_CAPS_protproperty Tasks

Gets the TaskCollection that is associated with the PageContent object.

Methods

Name Description
System_CAPS_pubmethodSystem_CAPS_static Create(Func<Object, IComponent, Control>, TaskCollection, Object)

Creates new page content, using the specified view factory, tasks, and object ID.

System_CAPS_pubmethodSystem_CAPS_static Create(Func<Object, IComponent, UIElement>, TaskCollection, Object)

Creates new page content, using the specified view factory, tasks and object ID.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, ListGroupingCollection<TBusinessObject>, TaskCollection)

Initializes a new instance of the PageContent class that is used by a page in the Dashboard to provide a list pane, a task pane, and a details pane. This method also provides information for grouping data in the list pane of the page.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, ListGroupingCollection<TBusinessObject>, TaskCollection, Converter<TBusinessObject, DetailColumnCollection>)

Initializes a new instance of the PageContent class that is used by a page in the Dashboard to provide a list pane, a task pane, and a details pane.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, TaskCollection)

Initializes a new instance of the PageContent class that is used by a page in the Dashboard to provide a list pane and a task pane.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, TaskCollection, Converter<TBusinessObject, DetailColumnCollection>)

Initializes a new instance of the PageContent class that is used by a page in the Dashboard to provide a list pane, a task pane, and a details pane.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject, TDetailBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, ListGroupingCollection<TBusinessObject>, TaskCollection, Converter<TDetailBusinessObject, DetailColumnCollection>, Converter<TBusinessObject, TDetailBusinessObject>)

Initializes an instance of the PageContent class that is used by a page in the Dashboard to provide a list pane, a task pane, and a details pane. This method also provides additional detail information about a business object that is displayed in the details pane, and defines the groups that are displayed in the list pane.

System_CAPS_pubmethodSystem_CAPS_static Create<TBusinessObject, TDetailBusinessObject>(ListProvider<TBusinessObject>, ListColumnCollection<TBusinessObject>, TaskCollection, Converter<TDetailBusinessObject, DetailColumnCollection>, Converter<TBusinessObject, TDetailBusinessObject>)

Initializes an instance of the PageContent class that is used by a page in the Dashboard to provide a list pane, a task pane, and a details pane. This method also provides additional detail information about a business object that is displayed in the details pane.

System_CAPS_pubmethod CreateObjRef(Type)

Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Overrides MarshalByRefObject.CreateObjRef(Type).)

System_CAPS_pubmethod Dispose()

Releases all resources used by the PageContent object.

System_CAPS_protmethod Dispose(Boolean)

Releases the unmanaged resources used by the PageContent object and optionally releases the managed resources.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

Releases unmanaged resources and performs other cleanup operations before the PageContent object is reclaimed by garbage collection.(Overrides Object.Finalize().)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_protmethod GetObjectDisplayName(Object)

Returns the name of the specified object that will be displayed on the page in the Dashboard.

System_CAPS_protmethod GetObjectId(Object)

Returns the identifier for the specified object.

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod InitializeLifetimeService()

Obtains a lifetime service object to control the lifetime policy for this instance.(Overrides MarshalByRefObject.InitializeLifetimeService().)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone(Boolean)

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

A PageContent object is not directly instantiated. An instance of PageContent is created using one of the Create methods.

Thread Safety

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace

Return to top