IJavaScriptObject.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
源码类别:

Ajax

开发平台:

C#

  1. using System;
  2. namespace AjaxPro
  3. {
  4. /// <summary>
  5. /// Represents a JavaScript ECMA type.
  6. /// </summary>
  7. public interface IJavaScriptObject
  8. {
  9. /// <summary>
  10. /// Returns the string representation of the object.
  11. /// </summary>
  12. string Value{ get; }
  13. }
  14. }