X509CertificateRecipientServiceCredential Class
Defines a certificate used by a service to identify itself.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | Certificate | Gets or sets the certificate to use for representing the service when communicating back to the client. |
| Name | Description | |
|---|---|---|
![]() | 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() | |
![]() | 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) | Specifies the certificate to use for representing the service by specifying the subject distinguished name. |
![]() | 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. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
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();
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

