/tags/stable-1.1.0/Client/Settings/RuntimeLimitsGlobals.cs
# · C# · 24 lines · 13 code · 3 blank · 8 comment · 0 complexity · 0334ce115d709a5e99c0575d0a5e41e0 MD5 · raw file
- //-----------------------------------------------------------------------
- // <copyright>
- // Copyright (C) Ruslan Yakushev for the PHP Manager for IIS project.
- //
- // This file is subject to the terms and conditions of the Microsoft Public License (MS-PL).
- // See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL for more details.
- // </copyright>
- //-----------------------------------------------------------------------
-
- using System;
-
- namespace Web.Management.PHP.Settings
- {
-
- internal static class RuntimeLimitsGlobals
- {
- public const int MaxExecutionTime = 0;
- public const int MaxInputTime = 1;
- public const int MemoryLimit = 2;
- public const int PostMaxSize = 3;
- public const int UploadMaxFilesize = 4;
- public const int MaxFileUploads = 5;
- }
- }