Secure Exchanges SDK Documentation
Search Results for

    Show / Hide Table of Contents

    Class RandomHelper

    Helper to generate random string

    Inheritance
    object
    RandomHelper
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: SecureExchangesSDK.Helpers
    Assembly: SecureExchangesSDK.dll
    Syntax
    public static class RandomHelper

    Fields

    LOWER_CHARS

    lower alpha char

    Declaration
    public const string LOWER_CHARS = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z"
    Field Value
    Type Description
    string

    NUMERIC_CHARS

    Numeric const

    Declaration
    public const string NUMERIC_CHARS = "0,1,2,3,4,5,6,7,8,9"
    Field Value
    Type Description
    string

    SPECIAL_CHARS

    Special schar

    Declaration
    public const string SPECIAL_CHARS = "!,$,*,@,#,<,>,[,]"
    Field Value
    Type Description
    string

    UPPER_CHARS

    Upper chars

    Declaration
    public const string UPPER_CHARS = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z"
    Field Value
    Type Description
    string

    Properties

    ALPHAS_CHARS

    Alpha string, with case sensitive

    Declaration
    public static string ALPHAS_CHARS { get; }
    Property Value
    Type Description
    string

    Methods

    CombineCharsList(params string[])

    Combiene multiple list into one

    Declaration
    public static string CombineCharsList(params string[] list)
    Parameters
    Type Name Description
    string[] list
    Returns
    Type Description
    string

    GenerateCode(int)

    Generate code with number only

    Declaration
    public static string GenerateCode(int length)
    Parameters
    Type Name Description
    int length

    Length of the generated number

    Returns
    Type Description
    string

    GenerateCode(int, string)

    Declaration
    public static string GenerateCode(int length, string charString)
    Parameters
    Type Name Description
    int length
    string charString
    Returns
    Type Description
    string

    GenerateComplexPassword(int)

    Generate password with numeric, special chars and alphachars

    Declaration
    public static string GenerateComplexPassword(int length)
    Parameters
    Type Name Description
    int length

    The lenght of the string

    Returns
    Type Description
    string

    GeneratePasswordWithPolicy(BusinessPasswordSuggestionPolicy)

    That will generate password by policy

    Declaration
    public static string GeneratePasswordWithPolicy(BusinessPasswordSuggestionPolicy policy)
    Parameters
    Type Name Description
    BusinessPasswordSuggestionPolicy policy
    Returns
    Type Description
    string

    Next(int, int)

    Declaration
    public static int Next(int minValue, int maxExclusiveValue)
    Parameters
    Type Name Description
    int minValue
    int maxExclusiveValue
    Returns
    Type Description
    int
    In this article
    Back to top Secure Exchanges Inc. - Documentation