IObjectConverter.cs 287 B

123456789101112
  1. using Jint.Native;
  2. namespace Jint.Runtime.Interop
  3. {
  4. /// <summary>
  5. /// When implemented, converts a CLR value to a <see cref="JsValue"/> instance
  6. /// </summary>
  7. public interface IObjectConverter
  8. {
  9. bool TryConvert(object value, out JsValue result);
  10. }
  11. }