JavaScriptParameters.cs 994 B

12345678910111213141516171819202122232425262728293031323334
  1. #region License
  2. // Copyright 2006 James Newton-King
  3. // http://www.newtonsoft.com
  4. //
  5. // This work is licensed under the Creative Commons Attribution 2.5 License
  6. // http://creativecommons.org/licenses/by/2.5/
  7. //
  8. // You are free:
  9. // * to copy, distribute, display, and perform the work
  10. // * to make derivative works
  11. // * to make commercial use of the work
  12. //
  13. // Under the following conditions:
  14. // * For any reuse or distribution, you must make clear to others the license terms of this work.
  15. // * Any of these conditions can be waived if you get permission from the copyright holder.
  16. #endregion
  17. using System;
  18. using System.Collections.Generic;
  19. using System.Text;
  20. using System.Collections.ObjectModel;
  21. namespace Newtonsoft.Json
  22. {
  23. sealed class JavaScriptParameters : ReadOnlyCollection<object>
  24. {
  25. public static readonly JavaScriptParameters Empty = new JavaScriptParameters(new List<object>());
  26. public JavaScriptParameters(IList<object> list)
  27. : base(list)
  28. {
  29. }
  30. }
  31. }