| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum DicomOpenSslVerificationFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As DicomOpenSslVerificationFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum DicomOpenSslVerificationFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class DicomOpenSslVerificationFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| All | Internal use only. |
| ClientOnce | Server mode: During initial negotiation, a certificate is requested from the client. During renegotiation, no certificates are requested. This flag must be used with Peer">.
Client mode: This flag is ignored. |
| FailIfNoPeerCertificate | Server mode: If the client does not send a certificate, or if a certificate is sent that fails verification, then communication is terminated. This flag must be combined with Peer.
Client mode: This flag is ignored. |
| None | Server mode: No request for a certificate is sent to the client, and the client should not send a certificate.
Client mode: If the server sends a certificate, it will be verified, but failure will not terminate communication. This flag should not be used in conjunction with any other flag. |
| Peer | Server mode: A request for a certificate is sent to the client. The client can ignore the request, but if the client does send a certificate, it will be verified. If verification fails, communication is terminated.
Client mode: If the server sends a certificate, it is verified. If verification fails, communication is terminated. |
For an example, refer to DicomNet.Initialize.
System.Object
System.ValueType
System.Enum
Leadtools.Dicom.DicomOpenSslVerificationFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code