view Source/Reflection/Extension/ExtensionList.cs @ 8:a34cfdde80d6

removed strong signing added FrameworkPathOverride for linux builds
author cin
date Wed, 29 Nov 2017 12:43:52 +0300
parents f990fcb411a9
children
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace BLToolkit.Reflection.Extension
{
	public class ExtensionList : Dictionary<string,TypeExtension>
	{
		public new TypeExtension this[string typeName]
		{
			get
			{
				TypeExtension value;
				lock (this)
					return TryGetValue(typeName, out value) ? value : TypeExtension.Null;
			}
		}

		public TypeExtension this[Type type]
		{
			get
			{
				lock (this)
					foreach (var ext in Values)
						if (ext.Name == type.Name || ext.Name == type.FullName)
							return ext;

				if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
					return this[Nullable.GetUnderlyingType(type)];

				return TypeExtension.Null;
			}
		}

		public void Add(TypeExtension typeInfo)
		{
			lock (this)
				Add(typeInfo.Name, typeInfo);
		}
	}
}