123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Configuration;
- using System.Xml;
- using System.Xml.Serialization;
- using System.Xml.XPath;
- namespace URLRewriter.Config
- {
-
-
-
- public class RewriterConfigSerializerSectionHandler : IConfigurationSectionHandler
- {
-
-
-
-
-
-
- public object Create(object parent, object configContext, System.Xml.XmlNode section)
- {
-
- XmlSerializer ser = new XmlSerializer(typeof(RewriterConfiguration));
-
- return ser.Deserialize(new XmlNodeReader(section));
- }
- }
- }
|