IKnowledgeManagement.GetKnowledgeArticles Method

Definition

Gets a list of management pack knowledge articles for Operations Manager that are stored on the Service Manager store.

Overloads

GetKnowledgeArticles()

Gets a list of all the management pack knowledge articles for Operations Manager on the Service Manager store.

GetKnowledgeArticles(ManagementPackElement)

Gets a list of all management pack knowledge articles for Operations Manager related to the provided management pack element.

GetKnowledgeArticles(ManagementPackKnowledgeArticleCriteria)

Gets a list of management pack knowledge articles for Operations Manager based on the specified criteria. Only knowledge articles that match the criteria are returned.

GetKnowledgeArticles(ManagementPackSubElement)

Gets a list of management pack knowledge articles for Operations Manager that are related to the provided management pack sub element.

GetKnowledgeArticles(Guid)

Gets a list of management pack knowledge articles for Operations Manager that are related to the specific identified object.

GetKnowledgeArticles()

Gets a list of all the management pack knowledge articles for Operations Manager on the Service Manager store.

public:
 System::Collections::Generic::IList<Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticle ^> ^ GetKnowledgeArticles();
public System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle> GetKnowledgeArticles ();
abstract member GetKnowledgeArticles : unit -> System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle>
Public Function GetKnowledgeArticles () As IList(Of ManagementPackKnowledgeArticle)

Returns

Type: IList<T>

The list of knowledge articles.

Applies to

GetKnowledgeArticles(ManagementPackElement)

Gets a list of all management pack knowledge articles for Operations Manager related to the provided management pack element.

public:
 System::Collections::Generic::IList<Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticle ^> ^ GetKnowledgeArticles(Microsoft::EnterpriseManagement::Configuration::ManagementPackElement ^ managementPackElement);
public System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle> GetKnowledgeArticles (Microsoft.EnterpriseManagement.Configuration.ManagementPackElement managementPackElement);
abstract member GetKnowledgeArticles : Microsoft.EnterpriseManagement.Configuration.ManagementPackElement -> System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle>
Public Function GetKnowledgeArticles (managementPackElement As ManagementPackElement) As IList(Of ManagementPackKnowledgeArticle)

Parameters

managementPackElement
ManagementPackElement

Type: ManagementPackElement

The management pack element.

Returns

Type: IList<T>

The list of knowledge articles.

Exceptions

The managementPackElement parameter is a null reference (Nothing in Visual Basic).

Applies to

GetKnowledgeArticles(ManagementPackKnowledgeArticleCriteria)

Gets a list of management pack knowledge articles for Operations Manager based on the specified criteria. Only knowledge articles that match the criteria are returned.

public:
 System::Collections::Generic::IList<Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticle ^> ^ GetKnowledgeArticles(Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticleCriteria ^ criteria);
public System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle> GetKnowledgeArticles (Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticleCriteria criteria);
abstract member GetKnowledgeArticles : Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticleCriteria -> System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle>
Public Function GetKnowledgeArticles (criteria As ManagementPackKnowledgeArticleCriteria) As IList(Of ManagementPackKnowledgeArticle)

Parameters

Returns

Type: IList<T>

The list of knowledge articles.

Applies to

GetKnowledgeArticles(ManagementPackSubElement)

Gets a list of management pack knowledge articles for Operations Manager that are related to the provided management pack sub element.

public:
 System::Collections::Generic::IList<Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticle ^> ^ GetKnowledgeArticles(Microsoft::EnterpriseManagement::Configuration::ManagementPackSubElement ^ managementPackSubElement);
public System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle> GetKnowledgeArticles (Microsoft.EnterpriseManagement.Configuration.ManagementPackSubElement managementPackSubElement);
abstract member GetKnowledgeArticles : Microsoft.EnterpriseManagement.Configuration.ManagementPackSubElement -> System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle>
Public Function GetKnowledgeArticles (managementPackSubElement As ManagementPackSubElement) As IList(Of ManagementPackKnowledgeArticle)

Parameters

managementPackSubElement
ManagementPackSubElement

Type: ManagementPackSubElement

The management pack sub element.

Returns

Type: IList<T>

The list of knowledge articles.

Exceptions

The managementPackSubElement parameter is a null reference (Nothing in Visual Basic).

Applies to

GetKnowledgeArticles(Guid)

Gets a list of management pack knowledge articles for Operations Manager that are related to the specific identified object.

public:
 System::Collections::Generic::IList<Microsoft::EnterpriseManagement::Configuration::ManagementPackKnowledgeArticle ^> ^ GetKnowledgeArticles(Guid referenceId);
public System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle> GetKnowledgeArticles (Guid referenceId);
abstract member GetKnowledgeArticles : Guid -> System.Collections.Generic.IList<Microsoft.EnterpriseManagement.Configuration.ManagementPackKnowledgeArticle>
Public Function GetKnowledgeArticles (referenceId As Guid) As IList(Of ManagementPackKnowledgeArticle)

Parameters

referenceId
Guid

Type: Guid

The specific object’s unique identifier.

Returns

Type: IList<T>

The list of knowledge articles.

Applies to