Bläddra i källkod

2002-07-24 Tim Coleman <[email protected]>
* ProcessInfo.cs:
Fix constructor, reference to shutdownreason.

svn path=/trunk/mcs/; revision=6138

Tim Coleman 23 år sedan
förälder
incheckning
304bb3e236

+ 4 - 0
mcs/class/System.Web/System.Web/ChangeLog

@@ -1,3 +1,7 @@
+2002-07-24  Tim Coleman <[email protected]>
+	* ProcessInfo.cs: 
+		Fix constructor, reference to shutdownreason.
+
 2002-07-24  Tim Coleman <[email protected]>
 	* HttpCachePolicy.cs:
 		Added stubbs to this class.

+ 8 - 2
mcs/class/System.Web/System.Web/ProcessInfo.cs

@@ -28,8 +28,14 @@ namespace System.Web {
 		}
 
 		public ProcessInfo (DateTime startTime, TimeSpan age, int processID, int requestCount, ProcessStatus status, ProcessShutdownReason shutdownReason, int peakMemoryUsed)
-			: SetAll (startTime, age, processID, requestCount, status, shutdownReason, peakMemoryUsed)
 		{
+			this.age = age;
+			this.peakMemoryUsed = peakMemoryUsed;
+			this.processID = processID;
+			this.requestCount = requestCount;
+			this.shutdownReason = shutdownReason;
+			this.startTime = startTime;
+			this.status = status;
 		}
 
 		#endregion
@@ -74,7 +80,7 @@ namespace System.Web {
 			this.peakMemoryUsed = peakMemoryUsed;
 			this.processID = processID;
 			this.requestCount = requestCount;
-			this.shutdownReason = shutdownreason;
+			this.shutdownReason = shutdownReason;
 			this.startTime = startTime;
 			this.status = status;
 		}