/// <summary>
 /// Uses reflection to dynamically invoke a method
 /// if that method is implemented on the target object.
 /// </summary>
 /// <param name="method">
 /// Name of the method.
 /// </param>
 /// <param name="parameters">
 /// Parameters to pass to method.
 /// </param>
 public object CallMethodIfImplemented(string method, params object[] parameters)
 {
     return(MethodCaller.CallMethodIfImplemented(this.Instance, method, parameters));
 }