本文整理汇总了C#中System.Reflection.GetTypes方法的典型用法代码示例。如果您正苦于以下问题:C# Reflection.GetTypes方法的具体用法?C# Reflection.GetTypes怎么用?C# Reflection.GetTypes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Reflection
的用法示例。
在下文中一共展示了Reflection.GetTypes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetQueryHandlers
private static IEnumerable<Type> GetQueryHandlers(Reflection.Assembly assembly)
{
return from t in assembly.GetTypes()
from i in t.GetInterfaces()
where i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IQueryHandler<>)
select t;
}
示例2: GetInjectees
private InjecteeCollection GetInjectees(SR.Assembly targetAssembly, SR.Assembly injectionAssembly)
{
_classInjectees = new List<TypeInjecteeBase>();
var injectees = new InjecteeCollection();
var injectionAssemblyTypes = injectionAssembly.GetTypes();
foreach (var injectionType in injectionAssemblyTypes)
{
var classAttrs = injectionType.GetCustomAttributes(typeof(InjectionAttributeBase), false);
if (classAttrs.Count(a => a != null) >= 2)
throw new InvalidOperationException("Can not define multiple class attributes for the same class");
var classAttr = classAttrs.Select(a => a as ITypeAttribute).FirstOrDefault(a => a != null);
if (classAttr == null)
continue;
if (classAttr is TypeAddInjectionAttribute)
{
var classAddInjectee = (TypeAddInjectee)classAttr.GetInjectee(null, injectionType);
if (!String.IsNullOrEmpty(classAddInjectee.Attr.ParentFullName))
classAddInjectee.ParentType = targetAssembly.GetType(classAddInjectee.Attr.ParentFullName, true);
injectees.Add(classAddInjectee);
_classInjectees.Add(classAddInjectee);
}
else
{
var name = !String.IsNullOrEmpty(classAttr.FullName) ? classAttr.FullName : injectionType.GetNormalizedName();
var targetType = targetAssembly.GetType(name, true);
var baseClassInjectee = classAttr.GetInjectee(targetType, injectionType);
injectees.Add(baseClassInjectee);
_classInjectees.Add(baseClassInjectee);
}
}
foreach (var baseClassInjectee in _classInjectees)
{
var classInjectee = baseClassInjectee as TypeInjectee;
if (classInjectee != null)
{
foreach (var field in classInjectee.InjecteeType.GetFields(BINDING_FLAGS))
{
var fieldAttrs = field.GetCustomAttributes(typeof(InjectionAttributeBase), false);
if (fieldAttrs.Count(a => a != null) >= 2)
throw new InvalidOperationException("Can not define multiple field attributes for the same field");
var fieldAttr = fieldAttrs.Select(a => a as IFieldAttribute).FirstOrDefault(a => a != null);
if (fieldAttr == null)
continue;
var targetField = GetTargetField(fieldAttr, classInjectee.TargetType, field);
var fieldInjectee = fieldAttr.GetInjectee(targetField, field, classInjectee);
classInjectee.Injectees.Add(fieldInjectee);
}
foreach (var method in classInjectee.InjecteeType.GetMethods(BINDING_FLAGS))
{
var methodAttrs = method.GetCustomAttributes(typeof(InjectionAttributeBase), false);
if (methodAttrs.Count(a => a != null) >= 2)
throw new InvalidOperationException("Can not define multiple method attributes for the same method");
var methodAttr = methodAttrs.Select(a => a as IMethodAttribute).FirstOrDefault(a => a != null);
if (methodAttr == null)
continue;
var targetMethod = GetTargetMethod(methodAttr, classInjectee.TargetType, method);
var methodInjectee = methodAttr.GetInjectee(targetMethod, method, classInjectee);
classInjectee.Injectees.Add(methodInjectee);
}
}
}
return injectees;
}
示例3: GetTypes
private static Type[] GetTypes(SR.Assembly assembly)
{
IEnumerable<Type> types;
try
{
types = assembly.GetTypes();
}
catch (ReflectionTypeLoadException e)
{
types = e.Types;
}
return types.Where(t => t != null).ToArray();
}