DictionaryAdapterAttribute
Identifies the dictionary adapter types.
using System;
namespace Castle.Components.DictionaryAdapter
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public class DictionaryAdapterAttribute : Attribute
{
public Type InterfaceType { get; set; }
public DictionaryAdapterAttribute(Type interfaceType)
{
InterfaceType = interfaceType;
}
}
}