Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Applies To: Operations Manager for System Center 2012
Note: This API is now obsolete.
Retrieves a collection of the partial monitoring object instances that are related to the specified monitoring objects.
Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in Microsoft.EnterpriseManagement.OperationsManager.dll)
Syntax
[ObsoleteAttribute("Please use EntityObjects.GetRelatedPartialMonitoringObjects<T>()")]
public Dictionary<T, ReadOnlyCollection<PartialMonitoringObject>> GetRelatedPartialMonitoringObjects<T>(
ICollection<T> monitoringObjects,
MonitoringRelationshipClass relationshipClass
)
where T : PartialMonitoringObjectBase
public:
generic<typename T>
where T : PartialMonitoringObjectBase
[ObsoleteAttribute("Please use EntityObjects.GetRelatedPartialMonitoringObjects<T>()")]
Dictionary<T, ReadOnlyCollection<PartialMonitoringObject^>^>^ GetRelatedPartialMonitoringObjects(
ICollection<T>^ monitoringObjects,
MonitoringRelationshipClass^ relationshipClass
)
[<ObsoleteAttribute("Please use EntityObjects.GetRelatedPartialMonitoringObjects<T>()")>]
member GetRelatedPartialMonitoringObjects<'T when 'T : PartialMonitoringObjectBase> :
monitoringObjects:ICollection<'T> *
relationshipClass:MonitoringRelationshipClass -> Dictionary<'T, ReadOnlyCollection<PartialMonitoringObject>>
<ObsoleteAttribute("Please use EntityObjects.GetRelatedPartialMonitoringObjects<T>()")>
Public Function GetRelatedPartialMonitoringObjects(Of T As PartialMonitoringObjectBase) (
monitoringObjects As ICollection(Of T),
relationshipClass As MonitoringRelationshipClass
) As Dictionary(Of T, ReadOnlyCollection(Of PartialMonitoringObject))
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<PartialMonitoringObject>>
Returns aDictionary<TKey, TValue> object ofPartialMonitoringObject objects.
Type Parameters
- T
Must be of type PartialMonitoringObject.
See Also
GetRelatedPartialMonitoringObjects Overload
ManagementGroup Class
Microsoft.EnterpriseManagement Namespace
Return to top