Partager via


Comment : Définir la propriété de configuration authenticationMode

Cet exemple de code montre comment définir par programme la propriété de configuration authenticationMode.

Exemple

// Specify server channel properties.
IDictionary dict = new Hashtable();
dict["port"] = 9090;
dict["authenticationMode"] = "IdentifyCallers";
// Set up a server channel.
TcpServerChannel serverChannel = new TcpServerChannel(dict,null);
//Create an HttpChannel object and register the channel
ChannelServices.RegisterChannel(serverChannel);

Compilation du code

Cet exemple nécessite :

Voir aussi

Concepts

Authentification avec le canal TCP