Subtext.Web.Controls.Captcha.CaptchaInfo.ToString C# (CSharp) Method

ToString() public method

Returns the fully qualified type name of this instance.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format("{0}|{1}|{2}|{3}|{4}|{5}"
                                 , this.Width
                                 , this.Height
                                 , this.WarpFactor
                                 , this.FontFamily
                                 , this.Text
                                 , this.DateGenerated.ToString("yyyy/MM/dd HH:mm:ss", CultureInfo.InvariantCulture));
        }