System.Security.Cryptography.DerEncoder.IsValidPrintableString C# (CSharp) Method

IsValidPrintableString() static private method

Test to see if the input characters contains only characters permitted by the ASN.1 PrintableString restricted character set.
static private IsValidPrintableString ( char chars ) : bool
chars char The characters to test.
return bool
        internal static bool IsValidPrintableString(char[] chars)
        {
            Debug.Assert(chars != null);

            return IsValidPrintableString(chars, 0, chars.Length);
        }

Same methods

DerEncoder::IsValidPrintableString ( char chars, int offset, int count ) : bool