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

Visual Basic
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

Visual Basic
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() _
)
C#
public static void DecodeNalPath (
		ConnectionManagerBase connectionManager,
		string nalPath,
		out string[] displayQualifiers,
		out string nalType,
		out string networkOSPath,
		out string[] networkConnectionQualifiers
)
C++
public:
static void DecodeNalPath (
		ConnectionManagerBase^ connectionManager, 
		String^ nalPath, 
		[OutAttribute] array<String^>^% displayQualifiers, 
		[OutAttribute] String^% nalType, 
		[OutAttribute] String^% networkOSPath, 
		[OutAttribute] array<String^>^% networkConnectionQualifiers
)
J#
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
)
JScript

Parameters

connectionManager

[in] ConnectionManagerBase object.

nalPath

[in] NAL path to be decoded.

displayQualifiers

[out] Array of display qualifiers that are used by the Configuration Manager console. See the DisplayQualifiers property of UnPackNALPath Method in Class SMS_NAL_Methods.

nalType

[out] The NAL type that is specified by the network operating system. See the NALType property of UnPackNALPath Method in Class SMS_NAL_Methods.

networkOSPath

[out] Network operating system path. See the NetworkOSPath property of UnPackNALPath Method in Class SMS_NAL_Methods.

networkConnectionQualifiers

[out] Array of network connection qualifiers. See the NetworkConnectionQualifiers property of UnPackNALPath Method in Class SMS_NAL_Methods.

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