Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-07-12 23:19:55 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2002-07-12 23:19:55 +0400
commit8f35dc38edeec0001979331ca7655de94022dc85 (patch)
treea30b20a0cf212ea62d64693b4c0b0378a1872d38 /mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
parent2df50233076c68f6e344c0d9dede3b430073f745 (diff)
2002-07-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* System.Web.build: removed some more excludes. * System.Web.Hosting/AppDomainFactory.cs: * System.Web.Hosting/IAppDomainFactory.cs: * System.Web.Hosting/IISAPIRuntime.cs: * System.Web.Hosting/ISAPIRuntime.cs: make them compile. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a Hashtable. Added internal .ctor. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented Equals and GetHashCode. * System.Web.UI/DataBoundLiteralControl.cs: (LoadViewState): (SaveViewState): implemented. * System.Web.UI/Page.cs: FileDependencies is not public. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default. (GetHashCode): (Equals): (IsDefaultAttribute): implemented. svn path=/trunk/mcs/; revision=5743
Diffstat (limited to 'mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
index bad6cc4ef80..cf4d7bf6937 100644
--- a/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
+++ b/mcs/class/System.Web/System.Web.Hosting/IISAPIRuntime.cs
@@ -13,9 +13,9 @@ namespace System.Web.Hosting
{
public interface IISAPIRuntime
{
- void DoGCCollect();
- int ProcessRequest(in IntPtr ecb, in int useProcessModel);
- void StartProcessing();
- void StopProcessing();
+ void DoGCCollect ();
+ int ProcessRequest (IntPtr ecb, int useProcessModel);
+ void StartProcessing ();
+ void StopProcessing ();
}
}