| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Name As String | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As CertificateStore Dim value As String value = instance.Name | |
| C# | |
|---|---|
public string Name {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property string* get_Name(); | |
Property Value
A string value identifying the name of the certificate store.Certificate stores are uniquely identified by two pieces of information found in the registry: location and name. Some common names are:
| Name | Description |
|---|---|
| "MY" | Personal certificates. |
| "CA" | Certifying authority certificates. |
| "ROOT" | Trusted root certification authorities certificates. |
| "SPC" | Software publisher certificates. |
This property defaults to CertificateStoreLocation.My.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code