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 crypt32, prefix the name with the module name and a period.
Declare Function CertFindCertificateInStore Lib "crypt32.dll" ( _
Declare Function CertFindCertificateInStore Lib "crypt32.dll" (
hCertStore As IntPtr, dwCertEncodingType As Integer, dwFindFlags As Integer, _
dwFindType As Integer, pszFindPara As IntPtr, pPrevCertContext As IntPtr) As IntPtr
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
You can define overloads with pszFindPara defined as different types (such as string) to more easily handle different scenarios.
Sample Code:
public class Simplecert
{
const string MY = "MY";
const string OTHERS = "AddressBook";
const uint PKCS_7_ASN_ENCODING = 0x00010000;
const uint X509_ASN_ENCODING = 0x00000001;
const uint CERT_FIND_SUBJECT_STR = 0x00080007;
In the Web Services Development Kit (WSDK) Technology Preview and .NET Whidbey.
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).