Share via


DataWarehouse.GetMonitoringClasses Method

Definition

Returns information about the monitoring classes in the current data warehouse.

Overloads

GetMonitoringClasses(IList<Guid>)

Returns MonitoringClassInfo from Guids

GetMonitoringClasses(IList<String>)

Returns MonitoringClassInfo from SystemNames

GetMonitoringClasses(IList<Guid>, String)

Returns MonitoringClassInfo from Guids

GetMonitoringClasses(IList<String>, String)

Returns MonitoringClassInfo from SystemNames

GetMonitoringClasses(IList<Guid>)

Returns MonitoringClassInfo from Guids

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Warehouse::MonitoringClassInfo ^> ^ GetMonitoringClasses(System::Collections::Generic::IList<Guid> ^ monitoringClassGuids);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo> GetMonitoringClasses (System.Collections.Generic.IList<Guid> monitoringClassGuids);
member this.GetMonitoringClasses : System.Collections.Generic.IList<Guid> -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo>
Public Function GetMonitoringClasses (monitoringClassGuids As IList(Of Guid)) As ReadOnlyCollection(Of MonitoringClassInfo)

Parameters

monitoringClassGuids
IList<Guid>

A list of GUIDs for the monitoring classes to get information about.

Returns

Returns a ReadOnlyCollection<T> of MonitoringClassInfo objects.

Applies to

GetMonitoringClasses(IList<String>)

Returns MonitoringClassInfo from SystemNames

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Warehouse::MonitoringClassInfo ^> ^ GetMonitoringClasses(System::Collections::Generic::IList<System::String ^> ^ systemNames);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo> GetMonitoringClasses (System.Collections.Generic.IList<string> systemNames);
member this.GetMonitoringClasses : System.Collections.Generic.IList<string> -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo>
Public Function GetMonitoringClasses (systemNames As IList(Of String)) As ReadOnlyCollection(Of MonitoringClassInfo)

Parameters

systemNames
IList<String>

A list of the system names of the monitoring classes to get.

Returns

Returns a ReadOnlyCollection<T> of MonitoringClassInfo objects.

Applies to

GetMonitoringClasses(IList<Guid>, String)

Returns MonitoringClassInfo from Guids

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Warehouse::MonitoringClassInfo ^> ^ GetMonitoringClasses(System::Collections::Generic::IList<Guid> ^ monitoringClassGuids, System::String ^ languageCode);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo> GetMonitoringClasses (System.Collections.Generic.IList<Guid> monitoringClassGuids, string languageCode);
member this.GetMonitoringClasses : System.Collections.Generic.IList<Guid> * string -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo>
Public Function GetMonitoringClasses (monitoringClassGuids As IList(Of Guid), languageCode As String) As ReadOnlyCollection(Of MonitoringClassInfo)

Parameters

monitoringClassGuids
IList<Guid>

A list of GUIDs for the monitoring classes to get information about.

languageCode
String

The language code for the language in which the information is returned.

Returns

Returns a ReadOnlyCollection<T> of MonitoringClassInfo objects.

Applies to

GetMonitoringClasses(IList<String>, String)

Returns MonitoringClassInfo from SystemNames

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Warehouse::MonitoringClassInfo ^> ^ GetMonitoringClasses(System::Collections::Generic::IList<System::String ^> ^ monitoringClassSystemNames, System::String ^ languageCode);
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo> GetMonitoringClasses (System.Collections.Generic.IList<string> monitoringClassSystemNames, string languageCode);
member this.GetMonitoringClasses : System.Collections.Generic.IList<string> * string -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Warehouse.MonitoringClassInfo>
Public Function GetMonitoringClasses (monitoringClassSystemNames As IList(Of String), languageCode As String) As ReadOnlyCollection(Of MonitoringClassInfo)

Parameters

monitoringClassSystemNames
IList<String>

A list of the system names of the monitoring classes to get.

languageCode
String

The language code for the language in which the information is returned.

Returns

Returns a ReadOnlyCollection<T> of MonitoringClassInfo objects.

Applies to