Shaolinq.Persistence.TypeDescriptorProvider.GetEnumTypeDescriptor C# (CSharp) Method

GetEnumTypeDescriptor() public method

public GetEnumTypeDescriptor ( Type type ) : EnumTypeDescriptor
type System.Type
return EnumTypeDescriptor
		public EnumTypeDescriptor GetEnumTypeDescriptor(Type type)
		{
			EnumTypeDescriptor retval;

			return this.enumTypeDescriptorsByType.TryGetValue(type, out retval) ? retval : null;
		}