ManagementGroup.GetRelatedMonitoringObjects<T> Method (ICollection<T>, MonitoringRelationshipClass)
Applies To: Operations Manager for System Center 2012
Note: This API is now obsolete.
Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
[ObsoleteAttribute("Please use EntityObjects.GetRelatedObjects<T>()")]
public Dictionary<T, ReadOnlyCollection<MonitoringObject>> GetRelatedMonitoringObjects<T>(
ICollection<T> monitoringObjects,
MonitoringRelationshipClass relationshipClass
)
where T : PartialMonitoringObjectBase
public:
generic<typename T>
where T : PartialMonitoringObjectBase
[ObsoleteAttribute("Please use EntityObjects.GetRelatedObjects<T>()")]
Dictionary<T, ReadOnlyCollection<MonitoringObject^>^>^ GetRelatedMonitoringObjects(
ICollection<T>^ monitoringObjects,
MonitoringRelationshipClass^ relationshipClass
)
[<ObsoleteAttribute("Please use EntityObjects.GetRelatedObjects<T>()")>]
member GetRelatedMonitoringObjects<'T when 'T : PartialMonitoringObjectBase> :
monitoringObjects:ICollection<'T> *
relationshipClass:MonitoringRelationshipClass -> Dictionary<'T, ReadOnlyCollection<MonitoringObject>>
<ObsoleteAttribute("Please use EntityObjects.GetRelatedObjects<T>()")>
Public Function GetRelatedMonitoringObjects(Of T As PartialMonitoringObjectBase) (
monitoringObjects As ICollection(Of T),
relationshipClass As MonitoringRelationshipClass
) As Dictionary(Of T, ReadOnlyCollection(Of MonitoringObject))
Parameters
monitoringObjects
Type: System.Collections.Generic.ICollection<T>The monitoring objects to find related objects for.
relationshipClass
Type: Microsoft.EnterpriseManagement.Configuration.MonitoringRelationshipClassThe relationship class that is used in the search for related monitoring objects.
Return Value
Type: System.Collections.Generic.Dictionary<T, ReadOnlyCollection<MonitoringObject>>
Returns aDictionary<TKey, TValue> object ofMonitoringObject objects.
Type Parameters
- T
Must be of type PartialMonitoringObject.
See Also
GetRelatedMonitoringObjects Overload
ManagementGroup Class
Microsoft.EnterpriseManagement Namespace
Return to top