/* System.Web.Configuration * Authors: * Leen Toelen (toelen@hotmail.com) * Copyright (C) 2001 Leen Toelen */ using System; using System.Configuration; namespace System.Web.Configuration { /// /// Summary description for ClientTargetSectionHandler. /// class ClientTargetSectionHandler: NameValueSectionHandler { /// /// ClientTargetSectionHandler Constructor /// public ClientTargetSectionHandler(){} /// /// Gets the name of the key in the key-value pair. /// protected override string KeyAttributeName { get { return "alias"; } } /// /// Gets the value for the key in the key-value pair. /// protected override string ValueAttributeName { get { return "userAgent"; } } } } //namespace System.Web.Configuration