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

Usage

Visual Basic
Dim instance As ManagementGroup
Dim managementPackElement As ManagementPackElement
Dim returnValue As ReadOnlyCollection(Of MonitoringKnowledgeArticle)

returnValue = instance.GetMonitoringKnowledgeArticles(managementPackElement)

Syntax

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

Parameters

managementPackElement

The 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