Share via


ListGroup<TBusinessObject> Class

 

Represents a group of business objects in the list pane of 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.ListGroup<TBusinessObject>

Syntax

public sealed class ListGroup<TBusinessObject> : MarshalByRefObject
where TBusinessObject : class
generic<typename TBusinessObject>
where TBusinessObject : ref class
public ref class ListGroup sealed : MarshalByRefObject
Public NotInheritable Class ListGroup(Of TBusinessObject As Class)
    Inherits MarshalByRefObject

Type Parameters

  • TBusinessObject
    Represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.

Constructors

Name Description
System_CAPS_pubmethod ListGroup<TBusinessObject>(String)

Initializes a new instance of the ListGroup<TBusinessObject> class with the specified display name.

System_CAPS_pubmethod ListGroup<TBusinessObject>(String, String)

Initializes a new instance of the ListGroup<TBusinessObject> class with the specified display name and the specified description.

Properties

Name Description
System_CAPS_pubproperty CollapsedByDefault

Gets or sets whether the ListGroup<TBusinessObject> object should be displayed as collapsed by default.

System_CAPS_pubproperty Description

Gets or sets the description of the ListGroup<TBusinessObject>.

System_CAPS_pubproperty DisplayName

Gets or sets the display name of the ListGroup<TBusinessObject> object.

System_CAPS_pubproperty IconProvider

Gets or sets a delegate method that is used to associate an icon to a collection of business objects that are represented by a ListGroup<TBusinessObject> object.

System_CAPS_pubproperty Tag

Gets or sets an object that is used to identify the ListGroup<TBusinessObject>.

Methods

Name Description
System_CAPS_pubmethod CreateObjRef(Type)

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethod Dispose()

Releases all resources used by the ListGroup<TBusinessObject> object.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod InitializeLifetimeService()

(Inherited from MarshalByRefObject.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

To be displayed in the list pane of the Dashboard, a ListGroup<TBusinessObject> object must be added to a ListGrouping<TBusinessObject> object, which is added to a ListGroupingCollection<TBusinessObject>

List groups can be defined to contain and display business objects based on related properties. For example, if "Operating System" is a property that is available in the business object, a list group can be created to contain only business objects that represent computers which are running the same operating system.

TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.

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