ManagementGroup.GetMonitoringReports<T> Method (ICollection<T>)
Applies To: Operations Manager for System Center 2012
Note: This API is now obsolete.
Retrieves a collection of the monitoring reports that target the specified monitoring objects.
Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
[ObsoleteAttribute("Please use Reporting.GetReports<T>()")]
public ReadOnlyCollection<MonitoringReport> GetMonitoringReports<T>(
ICollection<T> monitoringObjects
)
where T : PartialMonitoringObject
public:
generic<typename T>
where T : PartialMonitoringObject
[ObsoleteAttribute("Please use Reporting.GetReports<T>()")]
ReadOnlyCollection<MonitoringReport^>^ GetMonitoringReports(
ICollection<T>^ monitoringObjects
)
[<ObsoleteAttribute("Please use Reporting.GetReports<T>()")>]
member GetMonitoringReports<'T when 'T : PartialMonitoringObject> :
monitoringObjects:ICollection<'T> -> ReadOnlyCollection<MonitoringReport>
<ObsoleteAttribute("Please use Reporting.GetReports<T>()")>
Public Function GetMonitoringReports(Of T As PartialMonitoringObject) (
monitoringObjects As ICollection(Of T)
) As ReadOnlyCollection(Of MonitoringReport)
Parameters
monitoringObjects
Type: System.Collections.Generic.ICollection<T>The monitoring reports that target these specified monitoring object instances.
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<MonitoringReport>
Returns aReadOnlyCollection<T>object ofMonitoringReport objects.
Type Parameters
- T
Must be of type PartialMonitoringObject.
See Also
GetMonitoringReports Overload
ManagementGroup Class
Microsoft.EnterpriseManagement Namespace
Return to top