PageRenderTime 39ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/stable-1.1.0/Client/Settings/RuntimeLimitsGlobals.cs

#
C# | 24 lines | 13 code | 3 blank | 8 comment | 0 complexity | 0334ce115d709a5e99c0575d0a5e41e0 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. //-----------------------------------------------------------------------
  2. // <copyright>
  3. // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
  4. //
  5. // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
  6. // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
  7. // </copyright>
  8. //-----------------------------------------------------------------------
  9. using System;
  10. namespace Web.Management.PHP.Settings
  11. {
  12. internal static class RuntimeLimitsGlobals
  13. {
  14. public const int MaxExecutionTime = 0;
  15. public const int MaxInputTime = 1;
  16. public const int MemoryLimit = 2;
  17. public const int PostMaxSize = 3;
  18. public const int UploadMaxFilesize = 4;
  19. public const int MaxFileUploads = 5;
  20. }
  21. }