CertificateAuthorityEnumEnterpriseCAs Method |
Enumerates registered in Certification Authorities from the current Active Directory forest.
Namespace:
PKI.CertificateServices
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public static CertificateAuthority[] EnumEnterpriseCAs(
string findType = "Server",
string findValue = "*"
)
Public Shared Function EnumEnterpriseCAs (
Optional findType As String = "Server",
Optional findValue As String = "*"
) As CertificateAuthority()
public:
static array<CertificateAuthority^>^ EnumEnterpriseCAs(
String^ findType = L"Server",
String^ findValue = L"*"
)
static member EnumEnterpriseCAs :
?findType : string *
?findValue : string
(* Defaults:
let _findType = defaultArg findType "Server"
let _findValue = defaultArg findValue "*"
*)
-> CertificateAuthority[]
Parameters
- findType (Optional)
- Type: SystemString
Specifies CA object search type. The search type can be either: Name
or Server. - findValue (Optional)
- Type: SystemString
Specifies search pattern for a type specified in findType argument.
Wildcard characters: * and ? are accepted.
Return Value
Type:
CertificateAuthorityAn array of Certification Authorities.
See Also