Retrieves the knowledge articles for the specified child elements of management pack elements. Namespace: Microsoft.EnterpriseManagement
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As ManagementGroup
Dim managementPackSubElement As ManagementPackSubElement
Dim returnValue As ReadOnlyCollection(Of MonitoringKnowledgeArticle)

returnValue = instance.GetMonitoringKnowledgeArticles(managementPackSubElement)

Syntax

Visual Basic
Public Function GetMonitoringKnowledgeArticles ( _
		managementPackSubElement As ManagementPackSubElement _
) As ReadOnlyCollection(Of MonitoringKnowledgeArticle)
C#
public ReadOnlyCollection<MonitoringKnowledgeArticle> GetMonitoringKnowledgeArticles (
		ManagementPackSubElement managementPackSubElement
)
C++
public:
ReadOnlyCollection<MonitoringKnowledgeArticle^>^ GetMonitoringKnowledgeArticles (
		ManagementPackSubElement^ managementPackSubElement
)
J#
public ReadOnlyCollection<MonitoringKnowledgeArticle> GetMonitoringKnowledgeArticles (
		ManagementPackSubElement managementPackSubElement
)
JScript
public function GetMonitoringKnowledgeArticles (
		managementPackSubElement : ManagementPackSubElement
) : ReadOnlyCollection<MonitoringKnowledgeArticle>

Parameters

managementPackSubElement

The child element of a management pack element to get knowledge articles for.

Return Value

A read-only collection of MonitoringKnowledgeArticle objects.

Remarks

A knowledge article contains information about the meaning and importance of an object that is defined in a management pack. For information about creating a knowledge article, see How to Create a Knowledge Article.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also