Click or drag to resize

SecurIdTokenExport Method

When implemented in a derived class, creates a string representation of the token, which is encrypted using the supplied password and Device ID (Serial Number)

Namespace:  SamoyedSoftware.ursa
Assembly:  SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax
public abstract string Export(
	string pass,
	string devid
)

Parameters

pass
Type: SystemString
String containing the new password for the token. If an empty string is supplied, the exported token will not require a password
devid
Type: SystemString
String containing the Device ID/Serial Number for the token, if any.

Return Value

Type: String
A string representation of the token. The format of the string is determined by the implementation in the derived class.
Exceptions
ExceptionCondition
ursaExceptionThrown if the export fails. See ursaExceptionErrorCode for the specific reason for the failure.
Remarks
This is an abstract method, implemented by each derived class.
See Also