Applies To: Operations Manager for System Center 2012
Note: This API is now obsolete.
Retrieves a collection of monitoring events for the specified class that match the specified filter, with the option to include instances of derived classes.
Namespace:   Microsoft.EnterpriseManagement
Assembly:  Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
[ObsoleteAttribute("Please use OperationalData.GetMonitoringEvents()")]
public ReadOnlyCollection<MonitoringEvent> GetMonitoringEvents(
    MonitoringEventCriteria criteria,
    MonitoringClass monitoringClass,
    TraversalDepth traversalDepth
)
public:
[ObsoleteAttribute("Please use OperationalData.GetMonitoringEvents()")]
ReadOnlyCollection<MonitoringEvent^>^ GetMonitoringEvents(
    MonitoringEventCriteria^ criteria,
    MonitoringClass^ monitoringClass,
    TraversalDepth traversalDepth
)
[<ObsoleteAttribute("Please use OperationalData.GetMonitoringEvents()")>]
member GetMonitoringEvents : 
        criteria:MonitoringEventCriteria *
        monitoringClass:MonitoringClass *
        traversalDepth:TraversalDepth -> ReadOnlyCollection<MonitoringEvent>
<ObsoleteAttribute("Please use OperationalData.GetMonitoringEvents()")>
Public Function GetMonitoringEvents (
    criteria As MonitoringEventCriteria,
    monitoringClass As MonitoringClass,
    traversalDepth As TraversalDepth
) As ReadOnlyCollection(Of MonitoringEvent)
Parameters
- criteria 
 Type: Microsoft.EnterpriseManagement.Monitoring.MonitoringEventCriteria- A value that specifies the kind of monitoring events. 
- monitoringClass 
 Type: Microsoft.EnterpriseManagement.Configuration.MonitoringClass- The monitoring base class, with all its derived classes, that defines the range of the returned results. 
- traversalDepth 
 Type: Microsoft.EnterpriseManagement.Common.TraversalDepth- A value that modifies the limits of themonitoringClassparameter. A value of OneLevelincludes only instances of the specified class in the scope of the returned results. A value of Recursiveincludes instances of the specified class and all instances that are contained by those instances 
Return Value
Type: System.Collections.ObjectModel.ReadOnlyCollection<MonitoringEvent>
Returns aReadOnlyCollection<T> object ofMonitoringEvent objects.
See Also
GetMonitoringEvents Overload
ManagementGroup Class
Microsoft.EnterpriseManagement Namespace
Return to top