ResultObjectHelpers.DecodeNalPath Method

Decodes the network abstraction layer (NAL) path. This method is similar to UnPackNALPath Method in Class SMS_NAL_Methods.

Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

'Usage
Dim connectionManager As ConnectionManagerBase
Dim nalPath As String
Dim displayQualifiers As String()
Dim nalType As String
Dim networkOSPath As String
Dim networkConnectionQualifiers As String()

ResultObjectHelpers.DecodeNalPath(connectionManager, nalPath, displayQualifiers, nalType, networkOSPath, networkConnectionQualifiers)

Syntax

'Declaration
Public Shared Sub DecodeNalPath ( _
    connectionManager As ConnectionManagerBase, _
    nalPath As String, _
    <OutAttribute> ByRef displayQualifiers As String(), _
    <OutAttribute> ByRef nalType As String, _
    <OutAttribute> ByRef networkOSPath As String, _
    <OutAttribute> ByRef networkConnectionQualifiers As String() _
)
public static void DecodeNalPath (
    ConnectionManagerBase connectionManager,
    string nalPath,
    out string[] displayQualifiers,
    out string nalType,
    out string networkOSPath,
    out string[] networkConnectionQualifiers
)
public:
static void DecodeNalPath (
    ConnectionManagerBase^ connectionManager, 
    String^ nalPath, 
    [OutAttribute] array<String^>^% displayQualifiers, 
    [OutAttribute] String^% nalType, 
    [OutAttribute] String^% networkOSPath, 
    [OutAttribute] array<String^>^% networkConnectionQualifiers
)
public static void DecodeNalPath (
    ConnectionManagerBase connectionManager, 
    String nalPath, 
    /** @attribute OutAttribute() */ /** @ref */ String[] displayQualifiers, 
    /** @attribute OutAttribute() */ /** @ref */ String nalType, 
    /** @attribute OutAttribute() */ /** @ref */ String networkOSPath, 
    /** @attribute OutAttribute() */ /** @ref */ String[] networkConnectionQualifiers
)

Parameters

  • nalPath
    [in] NAL path to be decoded.

Remarks

Exception type Condition

ArgumentNullException

The connectionManager parameter cannot be null.

ArgumentException

The nalPath parameter cannot be null or an empty string.

ArgumentOutOfRangeException

The NAL path could not be decoded.

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 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also

Reference

ResultObjectHelpers Class
ResultObjectHelpers Members
Microsoft.ConfigurationManagement.AdminConsole Namespace
ConnectionManagerBase

Other Resources

UnPackNALPath Method in Class SMS_NAL_Methods