Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Secure.config « System.DirectoryServices « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cc2c4f6909557d8f9d461af4407d741d10a01a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<configuration>
	<configSections>
  		<sectionGroup name="System.DirectoryServices.Test">
     		<section name="Settings" type="System.Configuration.NameValueSectionHandler"/>
  	</sectionGroup>
	</configSections>
	<System.DirectoryServices.Test>
    	<Settings>
       	<add key="servername" value="ldap.example.com"/>
       	<add key="port" value="389"/>
       	<add key="basedn" value="dc=example,dc=com"/>
	<add key="username" value="root/admin"/>
       	<add key="password" value="password"/>
       	<add key="authenticationtype" value="Sealing | Secure"/>
    	</Settings>
 	</System.DirectoryServices.Test>
</configuration>