| Visual Basic (Declaration) | |
|---|---|
Public Event PrivateKeyPassword As PrivateKeyPasswordDelegate | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As DicomConnection Dim handler As PrivateKeyPasswordDelegate AddHandler instance.PrivateKeyPassword, handler | |
| C# | |
|---|---|
public event PrivateKeyPasswordDelegate PrivateKeyPassword | |
| Managed Extensions for C++ | |
|---|---|
public: __event PrivateKeyPasswordDelegate* PrivateKeyPassword | |
| C++/CLI | |
|---|---|
public: event PrivateKeyPasswordDelegate^ PrivateKeyPassword | |
The event handler receives an argument of type PrivateKeyPasswordEventArgs containing data related to this event. The following PrivateKeyPasswordEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| PrivateKeyPassword | Gets or sets the private key password. |
| Scp (Inherited from Leadtools.Dicom.Scu.Common.BaseEventArgs) | Gets the SCP. |
This event is generated after a call to SetTlsClientCertificate with a private key file that is password encrypted, in order to obtain the password.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code