اقرأ باللغة الإنجليزية تحرير

مشاركة عبر


X509CertificateRecipientServiceCredential Class

Definition

Defines a certificate used by a service to identify itself.

public sealed class X509CertificateRecipientServiceCredential
Inheritance
X509CertificateRecipientServiceCredential

Examples

The following code shows how to use this method to set a certificate for a service credential.

NetTcpBinding b = new NetTcpBinding();
b.Security.Mode = SecurityMode.Message;
Type c = typeof(ICalculator);
Uri a = new Uri("net.tcp://MyMachineName/tcpBase");
Uri[] baseAddresses = new Uri[] { a };
ServiceHost sh = new ServiceHost(typeof(MyService), baseAddresses);
sh.AddServiceEndpoint(c, b, "Aloha");
sh.Credentials.ServiceCertificate.SetCertificate(
    StoreLocation.LocalMachine,
    StoreName.My,
    X509FindType.FindByThumbprint,
    "af1f50b20cd413ed9cd00c315bbb6dc1c08da5e6");
sh.Open();

Properties

Certificate

Gets or sets the certificate to use for representing the service when communicating back to the client.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
SetCertificate(StoreLocation, StoreName, X509FindType, Object)

Specifies the certificate to use for representing the service by specifying query parameters such as storeLocation, storeName, findType and findValue.

SetCertificate(String, StoreLocation, StoreName)

Specifies the certificate to use for representing the service by specifying the subject distinguished name, the certificate store name and store location.

SetCertificate(String)

Specifies the certificate to use for representing the service by specifying the subject distinguished name.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

منتج الإصدارات
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1