Castle.MicroKernel.Handlers.DefaultGenericHandler.GetGenericArguments C# (CSharp) Method

GetGenericArguments() private method

private GetGenericArguments ( CreationContext context ) : System.Type[]
context CreationContext
return System.Type[]
		private Type[] GetGenericArguments(CreationContext context)
		{
			if (implementationMatchingStrategy == null)
			{
				return context.GenericArguments;
			}
			return implementationMatchingStrategy.GetGenericArguments(ComponentModel, context) ?? context.GenericArguments;
		}