X509CRL2ToString Method (Boolean) |
Displays an X.509 certificate revocation list in text format.
Namespace:
System.Security.Cryptography.X509Certificates
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public string ToString(
bool verbose = false
)
Public Function ToString (
Optional verbose As Boolean = false
) As String
public:
String^ ToString(
bool verbose = false
)
member ToString :
?verbose : bool
(* Defaults:
let _verbose = defaultArg verbose false
*)
-> string
Parameters
- verbose (Optional)
- Type: SystemBoolean
Specifies whether the simple or enhanced/verbose output is necessary.
If this parameter is set to False (default value), the method returns a brief information about the
current object. If this parameter is set to True, the method will return a full dump of the
current object.
Return Value
Type:
StringThe CRL information.
Remarks If the object is not initialized, the method returns class name.
See Also