| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* System.Web.Configuration
- * Authors:
- * Leen Toelen ([email protected])
- * Copyright (C) 2001 Leen Toelen
- */
- using System;
- using System.Configuration;
- namespace System.Web.Configuration
- {
- /// <summary>
- /// Summary description for ClientTargetSectionHandler.
- /// </summary>
- public class ClientTargetSectionHandler: NameValueSectionHandler
- {
- /// <summary>
- /// ClientTargetSectionHandler Constructor
- /// </summary>
- public ClientTargetSectionHandler(){}
- /// <summary>
- /// Gets the name of the key in the key-value pair.
- /// </summary>
- protected override string KeyAttributeName
- {
- get
- {
- return "alias";
- }
- }
- /// <summary>
- /// Gets the value for the key in the key-value pair.
- /// </summary>
- protected override string ValueAttributeName
- {
- get
- {
- return "userAgent";
- }
- }
- }
- } //namespace System.Web.Configuration
|