Share via


ManagementPack.ProcessElementReference Method

Definition

Overloads

ProcessElementReference(String)
Obsolete.

This method is now obsolete. Please use ProcessElementReference<ManagementPackElement>.

ProcessElementReference<T>(String)

Processes a reference found in this management pack to a ManagementPackElement object.

ProcessElementReference(String)

Caution

Use ProcessElementReference<ManagementPackElement>

This method is now obsolete. Please use ProcessElementReference&lt;ManagementPackElement&gt;.

public:
 Microsoft::EnterpriseManagement::Configuration::ManagementPackElementReference<Microsoft::EnterpriseManagement::Configuration::ManagementPackElement ^> ^ ProcessElementReference(System::String ^ reference);
[System.Obsolete("Use ProcessElementReference<ManagementPackElement>")]
public Microsoft.EnterpriseManagement.Configuration.ManagementPackElementReference<Microsoft.EnterpriseManagement.Configuration.ManagementPackElement> ProcessElementReference (string reference);
member this.ProcessElementReference : string -> Microsoft.EnterpriseManagement.Configuration.ManagementPackElementReference<Microsoft.EnterpriseManagement.Configuration.ManagementPackElement>
Public Function ProcessElementReference (reference As String) As ManagementPackElementReference(Of ManagementPackElement)

Parameters

reference
String

The element reference string.

Returns

The reference to a ManagementPackElement object.

Attributes

Applies to

ProcessElementReference<T>(String)

Processes a reference found in this management pack to a ManagementPackElement object.

public:
generic <typename T>
 where T : Microsoft::EnterpriseManagement::Configuration::ManagementPackElement Microsoft::EnterpriseManagement::Configuration::ManagementPackElementReference<T> ^ ProcessElementReference(System::String ^ reference);
public Microsoft.EnterpriseManagement.Configuration.ManagementPackElementReference<T> ProcessElementReference<T> (string reference) where T : Microsoft.EnterpriseManagement.Configuration.ManagementPackElement;
member this.ProcessElementReference : string -> Microsoft.EnterpriseManagement.Configuration.ManagementPackElementReference<'T (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackElement)> (requires 'T :> Microsoft.EnterpriseManagement.Configuration.ManagementPackElement)
Public Function ProcessElementReference(Of T As ManagementPackElement) (reference As String) As ManagementPackElementReference(Of T)

Type Parameters

T

The management pack element

Parameters

reference
String

The reference string to the process. Example: $MPElement[Name=&quot;Microsoft.Windows.InternetInformationServices.2003.FTPServer&quot;]$

Returns

The ManagementPackElementReference<T> reference.

Applies to