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

The list of AccuRev groups from <prog_name>.exe.config. More...

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

Detailed Description

The list of AccuRev groups from <prog_name>.exe.config.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="Groups" type="AcUtils.GroupsSection, AcUtils, Version=1.2.1.0, Culture=neutral, PublicKeyToken=26470c2daf5c2e2f, processorArchitecture=MSIL" />
...
</configSections>
<Groups>
<groups>
<add group="DEV" />
<add group="SYSTEST" />
<add group="ADMIN" />
<add group="UAT" />
...
</groups>
</Groups>
<appSettings>
...
GroupsSection groupsSection = ConfigurationManager.GetSection("Groups") as GroupsSection;
GroupsCollection groupsCol = groupsSection.Groups;

Definition at line 48 of file GroupsCollection.cs.