Click or drag to resize

SecurIdTokenDecodeToken Method

When implemented in a derived class, decodes the string representation of a token. This method is called by Parse(String, Int32) to initialize the current instance based on the values in the string representation.

Namespace:  SamoyedSoftware.ursa
Assembly:  SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax
protected abstract void DecodeToken(
	string token,
	int tokenNumber
)

Parameters

token
Type: SystemString
String containing a representation of a SecurID® token. The required format is determined by the implementation of this method in each derived class.
tokenNumber
Type: SystemInt32
Specifies which token will be parsed. This applies only if the required format is sdtid, otherwise this parameter is ignored.
Remarks
This is an abstract method, implemented by each derived class.
See Also