AcUtils
A high performance abstraction layer for AccuRev
List of all members
AcUtils.RepoCollection Class Reference

The list of AccuRev repository server-port pairs from <prog_name>.exe.config. More...

Collaboration diagram for AcUtils.RepoCollection:
Collaboration graph
[legend]

Detailed Description

The list of AccuRev repository server-port pairs from <prog_name>.exe.config.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="repositories" type="AcUtils.RepoSection, AcUtils, Version=1.6.4.0, Culture=neutral, PublicKeyToken=26470c2daf5c2e2f, processorArchitecture=MSIL" />
...
</configSections>
<repositories>
<instance>
<add server="host1_omitted.com" port="5050" />
<add server="host2_omitted.com" port="5050" />
...
</instance>
</repositories>
...
RepoSection repoSection = ConfigurationManager.GetSection("repositories") as RepoSection;
RepoCollection repoCol = repoSection.Repositories;

Definition at line 45 of file RepoCollection.cs.