FederationCertificates.ExportCertificateChain Method (String)
This method supports the AD FS infrastructure and is not intended to be used directly from your code. Exports the certificates used in the certificate chain in base-64 encoded form.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public StringCollection ExportCertificateChain(
string thumbprint
)
public:
StringCollection^ ExportCertificateChain(
String^ thumbprint
)
member ExportCertificateChain :
thumbprint:string -> StringCollection
Public Function ExportCertificateChain (
thumbprint As String
) As StringCollection
Parameters
thumbprint
Type: System.StringThe thumbprint to use to find the certificate chain to export.
Return Value
Type: System.Collections.Specialized.StringCollection
Returns a StringCollection that contains the names of certificates in the certificate chain.
Remarks
Certificate chains are stored in the TrustPolicy. These are used to create the Federation Service Certificate Store and verification chains are built from this store.
See Also
FederationCertificates Class
System.Web.Security.SingleSignOn Namespace
Return to top