| Visual Basic (Declaration) | |
|---|---|
Public Function New( _ ByVal location As CertificateStoreLocation, _ ByVal name As String, _ ByVal filter As KeyUsage _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim location As CertificateStoreLocation Dim name As String Dim filter As KeyUsage Dim instance As New CertificateStore(location, name, filter) | |
| Managed Extensions for C++ | |
|---|---|
public: CertificateStore( CertificateStoreLocation location, string* name, KeyUsage filter ) | |
| C++/CLI | |
|---|---|
public: CertificateStore( CertificateStoreLocation location, String^ name, KeyUsage filter ) | |
Parameters
- location
- The location of the certificate store.
- name
- The name of the certificate store.
- filter
- A KeyUsage value specifying what type of certificates to access.
This constructor accesses the certificates located at the parameters specified by location and name, and only grabs the certificates which match the filter specified by filter.
Target Platforms: Microsoft .NET Framework 2.0