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

GetTypeDescriptor() public method

public GetTypeDescriptor ( Type type ) : TypeDescriptor
type System.Type
return TypeDescriptor
		public TypeDescriptor GetTypeDescriptor(Type type)
		{
			TypeDescriptor retval;

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