Click or drag to resize
RandomCodeGenerator Constructor
Initializes new instance of RandomCodeGenerator generating random codes starting with prefix. Format of codes is specified by codePattern parameter.

Namespace: CMS.Ecommerce
Assembly: CMS.Ecommerce (in CMS.Ecommerce.dll) Version: 10.0.0
Syntax
C#
public RandomCodeGenerator(
	string codePattern,
	string codePrefix = ""
)

Parameters

codePattern
Type: SystemString
Pattern for codes. Hash # stands for random digit, dollar $ stands for random character and asterisk for any alphanumeric symbol. Other characters are copied to output.
codePrefix (Optional)
Type: SystemString
Every generated code will start with this prefix.
See Also