Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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 | |
|---|---|---|
| .jpeg) | ListGroup<TBusinessObject>(String) | Initializes a new instance of the ListGroup<TBusinessObject> class with the specified display name. | 
| .jpeg) | 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 | |
|---|---|---|
| .jpeg) | CollapsedByDefault | Gets or sets whether the ListGroup<TBusinessObject> object should be displayed as collapsed by default. | 
| .jpeg) | Description | Gets or sets the description of the ListGroup<TBusinessObject>. | 
| .jpeg) | DisplayName | Gets or sets the display name of the ListGroup<TBusinessObject> object. | 
| .jpeg) | 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. | 
| .jpeg) | Tag | Gets or sets an object that is used to identify the ListGroup<TBusinessObject>. | 
Methods
| Name | Description | |
|---|---|---|
| .jpeg) | CreateObjRef(Type) | (Inherited from MarshalByRefObject.) | 
| .jpeg) | Dispose() | Releases all resources used by the ListGroup<TBusinessObject> object. | 
| .jpeg) | Equals(Object) | (Inherited from Object.) | 
| .jpeg) | GetHashCode() | (Inherited from Object.) | 
| .jpeg) | GetLifetimeService() | (Inherited from MarshalByRefObject.) | 
| .jpeg) | GetType() | (Inherited from Object.) | 
| .jpeg) | InitializeLifetimeService() | (Inherited from MarshalByRefObject.) | 
| .jpeg) | 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