Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Constants, prefix the name with the module name and a period.
Crypt32 (Constants)
.
C# Constants:
public static class Crypt32
{
public const int X509_ASN_ENCODING = 0x00000001;
public const int PKCS_7_ASN_ENCODING = 0x00010000;
// for CertStrToName
public const int CERT_SIMPLE_NAME_STR = 1;
public const int CERT_OID_NAME_STR = 2;
public const int CERT_X500_NAME_STR = 3;
}
VB Constants:
' for CertStrToName
Public Const X509_ASN_ENCODING As Integer = &H1
Public Const PKCS_7_ASN_ENCODING As Integer = &H10000
Public Const CERT_SIMPLE_NAME_STR As Integer = 1
Public Const CERT_OID_NAME_STR As Integer = 2
Public Const CERT_X500_NAME_STR As Integer = 3
Notes:
None.
4
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!