This documentation is archived and is not being maintained.
X509CertificateRecipientServiceCredential Class
Visual Studio 2008
Defines a certificate used by a service to identify itself.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
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();
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: