Loupe - Log - Monitor - Resolve
Loupe / Developer's Guide / For .NET Framework / For ASP.NET MVC / Agent Configuration / Through the Web.Config file / Developer's Guide - Properties Configuration
In This Topic
    Developer's Guide - Properties Configuration
    In This Topic

    Loupe supports adding any number of custom name/value pairs to the application configuration that will be captured at session startup and carried through with the session file.  This is often used to carry installation specific information such as customer or license identification through to the Loupe Desktop.

    Individual properties are added using the standard NameValueSectionHandler.  The following example shows a single property named "Customer Name" in the application configuration.

    Property Configuration
    Copy Code
    <configuration>
      <configSections>
        <sectionGroup name="gibraltar">
          <section name="properties" type="System.Configuration.NameValueSectionHandler" />
        </sectionGroup>
      </configSections>
      <gibraltar>
        <properties>
          <add key="customerName" value="Insert Customer Name During Installation" />
        </properties>
      </gibraltar>
    </configuration>
    

    See Also