ManagementGroup.GetMonitoringModuleTypes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves management pack monitoring module types.
Overloads
| GetMonitoringModuleTypes() |
Obsolete.
Retrieves all the module types defined in this management group. |
| GetMonitoringModuleTypes(ManagementPackModuleTypeCriteria) |
Obsolete.
Gets MonitoringModuleTypes based on criteria. |
| GetMonitoringModuleTypes(ICollection<Guid>) |
Obsolete.
Retrieves the module types in this management group. |
| GetMonitoringModuleTypes(String) |
Obsolete.
Retrieves module types defined in this management group. |
GetMonitoringModuleTypes()
Caution
Please use Monitoring.GetModuleTypes()
Retrieves all the module types defined in this management group.
public:
System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::ManagementPackModuleType ^> ^ GetMonitoringModuleTypes();
[System.Obsolete("Please use Monitoring.GetModuleTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType> GetMonitoringModuleTypes ();
member this.GetMonitoringModuleTypes : unit -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType>
Public Function GetMonitoringModuleTypes () As ReadOnlyCollection(Of ManagementPackModuleType)
Returns
A collection of MonitoringModuleType objects.
- Attributes
Applies to
GetMonitoringModuleTypes(ManagementPackModuleTypeCriteria)
Caution
Please use Monitoring.GetModuleTypes()
Gets MonitoringModuleTypes based on criteria.
public:
System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::ManagementPackModuleType ^> ^ GetMonitoringModuleTypes(Microsoft::EnterpriseManagement::Configuration::ManagementPackModuleTypeCriteria ^ criteria);
[System.Obsolete("Please use Monitoring.GetModuleTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType> GetMonitoringModuleTypes (Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleTypeCriteria criteria);
member this.GetMonitoringModuleTypes : Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleTypeCriteria -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType>
Public Function GetMonitoringModuleTypes (criteria As ManagementPackModuleTypeCriteria) As ReadOnlyCollection(Of ManagementPackModuleType)
Parameters
- criteria
- ManagementPackModuleTypeCriteria
The criteria.
Returns
A collection of MonitoringModuleType that match the criteria.
- Attributes
Applies to
GetMonitoringModuleTypes(ICollection<Guid>)
Caution
Please use Monitoring.GetModuleTypes()
Retrieves the module types in this management group.
public:
System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::ManagementPackModuleType ^> ^ GetMonitoringModuleTypes(System::Collections::Generic::ICollection<Guid> ^ ids);
[System.Obsolete("Please use Monitoring.GetModuleTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType> GetMonitoringModuleTypes (System.Collections.Generic.ICollection<Guid> ids);
member this.GetMonitoringModuleTypes : System.Collections.Generic.ICollection<Guid> -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType>
Public Function GetMonitoringModuleTypes (ids As ICollection(Of Guid)) As ReadOnlyCollection(Of ManagementPackModuleType)
Parameters
- ids
- ICollection<Guid>
The ids of the types.
Returns
The types.
- Attributes
Applies to
GetMonitoringModuleTypes(String)
Caution
Please use Monitoring.GetModuleTypes()
Retrieves module types defined in this management group.
public:
System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::ManagementPackModuleType ^> ^ GetMonitoringModuleTypes(System::String ^ typeName);
[System.Obsolete("Please use Monitoring.GetModuleTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType> GetMonitoringModuleTypes (string typeName);
member this.GetMonitoringModuleTypes : string -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.ManagementPackModuleType>
Public Function GetMonitoringModuleTypes (typeName As String) As ReadOnlyCollection(Of ManagementPackModuleType)
Parameters
- typeName
- String
The module type name.
Returns
An instantiated MonitoringModuleType collection.
- Attributes
Exceptions
A MonitoringModuleType with that name was not found.
typeName is null.
typeName.Length is 0.