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

App.config « System.DirectoryServices « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09f5095b31fc30c0d17861af283c87136721a41e (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="cn=admin,dc=example,dc=com"/>
      		<add key="password" value="password"/>
      		<add key="authenticationtype" value="ServerBind"/>
   		</Settings>
	</System.DirectoryServices.Test>
</configuration>