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