Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ namespace Castle.Components.DictionaryAdapter
{
using System;
using System.Collections;
#if FEATURE_DICTIONARYADAPTER_XML
using System.Collections.Specialized;
using System.Xml.XPath;
#endif

/// <summary>
/// Defines the contract for building typed dictionary adapters.
Expand Down Expand Up @@ -61,7 +58,6 @@ public interface IDictionaryAdapterFactory
/// </remarks>
object GetAdapter(Type type, IDictionary dictionary, PropertyDescriptor descriptor);

#if FEATURE_DICTIONARYADAPTER_XML
/// <summary>
/// Gets a typed adapter bound to the <see cref="NameValueCollection"/>.
/// </summary>
Expand All @@ -84,6 +80,7 @@ public interface IDictionaryAdapterFactory
/// </remarks>
object GetAdapter(Type type, NameValueCollection nameValues);

#if FEATURE_DICTIONARYADAPTER_XML
/// <summary>
/// Gets a typed adapter bound to the <see cref="System.Xml.XmlNode"/>.
/// </summary>
Expand Down