ServiceCredentials.Clone Méthode

Définition

Crée une copie de l'instance active.

C#
public System.ServiceModel.Description.ServiceCredentials Clone ();

Retours

ServiceCredentials

Instance de ServiceCredentials.

Exemples

L'exemple de code suivant montre comment appeler cette méthode.

C#
// Create a service host.
Uri httpUri = new Uri("http://localhost/Calculator");
ServiceHost sh = new ServiceHost(typeof(Calculator), httpUri);

// Create a binding that uses a WindowsServiceCredential .
WSHttpBinding b = new WSHttpBinding(SecurityMode.Message);
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;

// Add an endpoint.
sh.AddServiceEndpoint(typeof(ICalculator), b, "WindowsCalculator");

// Clone these credentials.
ServiceCredentials cloneCredential =
    sh.Credentials.Clone();

S’applique à

Produit Versions
.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