Click or drag to resize
NetworkNameIdentifierAlgorithmGetIdentifiers Method
Generates a generic list of ComputerNameIdentifier objects.

Namespace: com.softwarekey.Client.Licensing
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax
public override List<SystemIdentifier> GetIdentifiers()

Return Value

Type: ListSystemIdentifier
Returns a generic list of NetworkNameIdentifier objects.
Remarks

The list contains a single NetworkNameIdentifier object, which contains an identifier based on the UNC-formatted network path. Non-UNC-formatted paths (such as ones which use a mapped drive letter) are automatically formatted using the IOHelper.ToUncPath method.

Caution note Caution

This algorithm is not meant to be used on the same machine which is hosting the share. For these machines (which you may want to support via Citrix/Remote Desktop services), we recommend using algorithms that target machine/hardware-specific details (such as NicIdentifierAlgorithm, HardDiskVolumeSerialIdentifierAlgorithm, or ComputerNameIdentifierAlgorithm).

Caution note Caution

Although it is not officially supported, it is possible to use Microsoft's WebDAV redirector. When doing so, you should expect the identifiers generated when accessing the share from a remote network to differ from the identifiers generated when accessing from the same/local network where the share is hosted.

See Also