Beispiel #1
0
        public static void MethodBase_Invoke(MethodBase methodBase, Object obj, Object[] parameters)
        {
            String declaringTypeName = methodBase.DeclaringTypeNameString();

            if (declaringTypeName == null)
            {
                return;
            }
            String methodName = methodBase.NameString();

            if (methodName == null)
            {
                return;
            }
            ReflectionEventSource.Log.MethodBase_Invoke(declaringTypeName, methodName);
        }
Beispiel #2
0
        public static void MethodBase_GetParameters(MethodBase methodBase)
        {
            String declaringTypeName = methodBase.DeclaringTypeNameString();

            if (declaringTypeName == null)
            {
                return;
            }
            String methodName = methodBase.NameString();

            if (methodName == null)
            {
                return;
            }
            ReflectionEventSource.Log.MethodBase_GetParameters(declaringTypeName, methodName);
        }
 public static void MethodBase_Invoke(MethodBase methodBase, Object obj, Object[] parameters)
 {
     String declaringTypeName = methodBase.DeclaringTypeNameString();
     if (declaringTypeName == null)
         return;
     String methodName = methodBase.NameString();
     if (methodName == null)
         return;
     ReflectionEventSource.Log.MethodBase_Invoke(declaringTypeName, methodName);
 }
 public static void MethodBase_GetParameters(MethodBase methodBase)
 {
     String declaringTypeName = methodBase.DeclaringTypeNameString();
     if (declaringTypeName == null)
         return;
     String methodName = methodBase.NameString();
     if (methodName == null)
         return;
     ReflectionEventSource.Log.MethodBase_GetParameters(declaringTypeName, methodName);
 }