PeerCredential.SetCertificate Method

Definition

Sets the certificate.

Overloads

SetCertificate(String, StoreLocation, StoreName)

Sets the certificate.

SetCertificate(StoreLocation, StoreName, X509FindType, Object)

Sets the certificate with the specified search criteria.

SetCertificate(String, StoreLocation, StoreName)

Sets the certificate.

public:
 void SetCertificate(System::String ^ subjectName, System::Security::Cryptography::X509Certificates::StoreLocation storeLocation, System::Security::Cryptography::X509Certificates::StoreName storeName);
public void SetCertificate (string subjectName, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation, System.Security.Cryptography.X509Certificates.StoreName storeName);
member this.SetCertificate : string * System.Security.Cryptography.X509Certificates.StoreLocation * System.Security.Cryptography.X509Certificates.StoreName -> unit
Public Sub SetCertificate (subjectName As String, storeLocation As StoreLocation, storeName As StoreName)

Parameters

subjectName
String

The subject name of the certificate.

storeLocation
StoreLocation

The location of the certificate store.

storeName
StoreName

The certificate store name.

Remarks

This overload is used to specify a certificate credential of the peer. It is provided as a shortcut to load the certificate from one of the available certificate stores that the user has access to.

Applies to

SetCertificate(StoreLocation, StoreName, X509FindType, Object)

Sets the certificate with the specified search criteria.

public:
 void SetCertificate(System::Security::Cryptography::X509Certificates::StoreLocation storeLocation, System::Security::Cryptography::X509Certificates::StoreName storeName, System::Security::Cryptography::X509Certificates::X509FindType findType, System::Object ^ findValue);
public void SetCertificate (System.Security.Cryptography.X509Certificates.StoreLocation storeLocation, System.Security.Cryptography.X509Certificates.StoreName storeName, System.Security.Cryptography.X509Certificates.X509FindType findType, object findValue);
member this.SetCertificate : System.Security.Cryptography.X509Certificates.StoreLocation * System.Security.Cryptography.X509Certificates.StoreName * System.Security.Cryptography.X509Certificates.X509FindType * obj -> unit
Public Sub SetCertificate (storeLocation As StoreLocation, storeName As StoreName, findType As X509FindType, findValue As Object)

Parameters

storeLocation
StoreLocation

The location of the certificate store.

storeName
StoreName

The certificate store name.

findType
X509FindType

The search criteria.

findValue
Object

The value to search on.

Applies to