Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose overloads of GetAdapter with NameValueCollection parameter #423

Merged
merged 1 commit into from
Dec 17, 2018
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