| Visual Basic (Declaration) | |
|---|---|
Public ReadOnly Property Hash As Byte() | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As Certificate Dim value() As Byte value = instance.Hash | |
| C# | |
|---|---|
public byte[] Hash {get;} | |
| Managed Extensions for C++ | |
|---|---|
public: __property byte[]* get_Hash(); | |
| C++/CLI | |
|---|---|
public: property array<byte>^ Hash { array<byte>^ get(); } | |
Property Value
A byte array containing the certificate's hash value.The hash value of a certificate is a check sum created with a hash algorithm that the recipient uses to determine if the certificate has been altered.
Target Platforms: Microsoft .NET Framework 2.0
Copy Code