public static void TypeInfo_Namespace(TypeInfo typeInfo)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_Namespace(typeName);
 }
 public static void TypeInfo_MakeArrayType(TypeInfo typeInfo, int rank)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_MakeArrayType(typeName);
 }
 public static void TypeInfo_MakeGenericType(TypeInfo typeInfo, Type[] typeArguments)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     String typeArgumentStrings = typeArguments.GenericTypeArgumentStrings();
     if (typeArgumentStrings == null)
         return;
     ReflectionEventSource.Log.TypeInfo_MakeGenericType(typeName, typeArgumentStrings);
 }
 public static void TypeInfo_GetDeclaredMethod(TypeInfo typeInfo, String methodName)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     if (methodName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_GetDeclaredMethod(typeName, methodName);
 }
 public static void TypeInfo_GetDeclaredProperty(TypeInfo typeInfo, String propertyName)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     if (propertyName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_GetDeclaredProperty(typeName, propertyName);
 }
 public static void TypeInfo_GetDeclaredEvent(TypeInfo typeInfo, String eventName)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     if (eventName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_GetDeclaredEvent(typeName, eventName);
 }
 public static void TypeInfo_DeclaringMethod(TypeInfo typeInfo)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_DeclaringMethod(typeName);
 }
 public static void TypeInfo_DeclaredConstructors(TypeInfo typeInfo)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_DeclaredConstructors(typeName);
 }
 public static void TypeInfo_CustomAttributes(TypeInfo typeInfo)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_CustomAttributes(typeName);
 }
 public static void TypeInfo_AssemblyQualifiedName(TypeInfo typeInfo)
 {
     String typeName = typeInfo.NameString();
     if (typeName == null)
         return;
     ReflectionEventSource.Log.TypeInfo_AssemblyQualifiedName(typeName);
 }