Invoker.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. public static class Invoker
  8. {
  9. /**
  10. * Invoke a constructor taking zero arguments.
  11. */
  12. public static U InvokeConstructor<U>(System.Reflection.ConstructorInfo constructor) {
  13. try {
  14. return (U)(constructor.Invoke(new object[]{}));
  15. } catch(System.Reflection.TargetInvocationException xcp) {
  16. throw xcp.GetBaseException();
  17. }
  18. }
  19. /**
  20. * Invoke a constructor taking a single arguments.
  21. */
  22. public static U InvokeConstructor<U>(System.Reflection.ConstructorInfo constructor, object arg) {
  23. try {
  24. return (U)(constructor.Invoke(new object[]{ arg }));
  25. } catch(System.Reflection.TargetInvocationException xcp) {
  26. throw xcp.GetBaseException();
  27. }
  28. }
  29. /**
  30. * Invoke a zero-argument instance method.
  31. */
  32. public static U Invoke<U>(System.Reflection.MethodInfo method, object instance) {
  33. try {
  34. return (U)(method.Invoke(instance, null));
  35. } catch(System.Reflection.TargetInvocationException xcp) {
  36. throw xcp.GetBaseException();
  37. }
  38. }
  39. /**
  40. * Invoke a single-argument instance method.
  41. */
  42. public static U Invoke<U>(System.Reflection.MethodInfo method, object instance, object arg) {
  43. try {
  44. return (U)(method.Invoke(instance, new object [] { arg }));
  45. } catch(System.Reflection.TargetInvocationException xcp) {
  46. throw xcp.GetBaseException();
  47. }
  48. }
  49. /**
  50. * Invoke a two-argument instance method.
  51. */
  52. public static U Invoke<U>(System.Reflection.MethodInfo method, object instance, object arg1, object arg2) {
  53. try {
  54. return (U)(method.Invoke(instance, new object [] { arg1, arg2 }));
  55. } catch(System.Reflection.TargetInvocationException xcp) {
  56. throw xcp.GetBaseException();
  57. }
  58. }
  59. /**
  60. * Invoke a single-argument instance method with no return value.
  61. */
  62. public static void Invoke(System.Reflection.MethodInfo method, object instance, object arg)
  63. {
  64. try
  65. {
  66. method.Invoke(instance, new object[] { arg });
  67. }
  68. catch (System.Reflection.TargetInvocationException xcp)
  69. {
  70. throw xcp.GetBaseException();
  71. }
  72. }
  73. /**
  74. * Invoke a two-argument instance method with no return value.
  75. */
  76. public static void Invoke(System.Reflection.MethodInfo method, object instance, object arg1, object arg2)
  77. {
  78. try
  79. {
  80. method.Invoke(instance, new object[] { arg1, arg2 });
  81. }
  82. catch (System.Reflection.TargetInvocationException xcp)
  83. {
  84. throw xcp.GetBaseException();
  85. }
  86. }
  87. /**
  88. * Invoke a single-argument static method.
  89. */
  90. public static U InvokeStatic<U>(System.Reflection.MethodInfo method, object arg) {
  91. try {
  92. return (U)(method.Invoke(null, new object[] { arg } ));
  93. } catch(System.Reflection.TargetInvocationException xcp) {
  94. throw xcp.GetBaseException();
  95. }
  96. }
  97. /**
  98. * Invoke a two-argument static method.
  99. */
  100. public static U InvokeStatic<U>(System.Reflection.MethodInfo method, object arg1, object arg2) {
  101. try {
  102. return (U)(method.Invoke(null, new object [] { arg1, arg2 }));
  103. } catch(System.Reflection.TargetInvocationException xcp) {
  104. throw xcp.GetBaseException();
  105. }
  106. }
  107. }