Share via


ManagementGroup.GetMonitoringViewTypes Method

Definition

Retrieves a collection of monitoring view type objects.

Overloads

GetMonitoringViewTypes(ManagementPackViewTypeCriteria)
Obsolete.

Gets MonitoringViewTypes based on criteria.

GetMonitoringViewTypes(ICollection<Guid>)
Obsolete.

Retrieves the view types in this management group.

GetMonitoringViewTypes()
Obsolete.

Retrieves all the view types defined in this management group.

GetMonitoringViewTypes(String)
Obsolete.

Retrieves view types defined in this management group.

GetMonitoringViewTypes(ManagementPackViewTypeCriteria)

Caution

Please use Presentation.GetViewTypes()

Gets MonitoringViewTypes based on criteria.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::MonitoringViewType ^> ^ GetMonitoringViewTypes(Microsoft::EnterpriseManagement::Configuration::ManagementPackViewTypeCriteria ^ criteria);
[System.Obsolete("Please use Presentation.GetViewTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType> GetMonitoringViewTypes (Microsoft.EnterpriseManagement.Configuration.ManagementPackViewTypeCriteria criteria);
member this.GetMonitoringViewTypes : Microsoft.EnterpriseManagement.Configuration.ManagementPackViewTypeCriteria -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType>
Public Function GetMonitoringViewTypes (criteria As ManagementPackViewTypeCriteria) As ReadOnlyCollection(Of MonitoringViewType)

Parameters

criteria
ManagementPackViewTypeCriteria

The criteria.

Returns

A collection of MonitoringViewType that match the criteria.

Attributes

Remarks

A view is a depiction of data with predefined criteria.

Applies to

GetMonitoringViewTypes(ICollection<Guid>)

Caution

Please use Presentation.GetViewTypes()

Retrieves the view types in this management group.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::MonitoringViewType ^> ^ GetMonitoringViewTypes(System::Collections::Generic::ICollection<Guid> ^ ids);
[System.Obsolete("Please use Presentation.GetViewTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType> GetMonitoringViewTypes (System.Collections.Generic.ICollection<Guid> ids);
member this.GetMonitoringViewTypes : System.Collections.Generic.ICollection<Guid> -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType>
Public Function GetMonitoringViewTypes (ids As ICollection(Of Guid)) As ReadOnlyCollection(Of MonitoringViewType)

Parameters

ids
ICollection<Guid>

The ids of the types.

Returns

The types.

Attributes

Remarks

A view is a depiction of data with predefined criteria.

Applies to

GetMonitoringViewTypes()

Caution

Please use Presentation.GetViewTypes()

Retrieves all the view types defined in this management group.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::MonitoringViewType ^> ^ GetMonitoringViewTypes();
[System.Obsolete("Please use Presentation.GetViewTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType> GetMonitoringViewTypes ();
member this.GetMonitoringViewTypes : unit -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType>
Public Function GetMonitoringViewTypes () As ReadOnlyCollection(Of MonitoringViewType)

Returns

A collection of ViewType objects.

Attributes

Remarks

A view is a depiction of data with predefined criteria.

Applies to

GetMonitoringViewTypes(String)

Caution

Please use Presentation.GetViewTypes()

Retrieves view types defined in this management group.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<Microsoft::EnterpriseManagement::Configuration::MonitoringViewType ^> ^ GetMonitoringViewTypes(System::String ^ typeName);
[System.Obsolete("Please use Presentation.GetViewTypes()")]
public System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType> GetMonitoringViewTypes (string typeName);
member this.GetMonitoringViewTypes : string -> System.Collections.ObjectModel.ReadOnlyCollection<Microsoft.EnterpriseManagement.Configuration.MonitoringViewType>
Public Function GetMonitoringViewTypes (typeName As String) As ReadOnlyCollection(Of MonitoringViewType)

Parameters

typeName
String

The implementation view type name.

Returns

An instantiated ViewType collection.

Attributes

Exceptions

A ViewType with that name was not found.

typeName is null.

typeName.Length is 0.

Remarks

A view is a depiction of data with predefined criteria.

Applies to