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
path: root/mcs
diff options
context:
space:
mode:
authorChris Toshok <toshok@novell.com>2006-02-28 22:41:42 +0300
committerChris Toshok <toshok@novell.com>2006-02-28 22:41:42 +0300
commit558cca4186c14affbefe2cde7857bb9f4cd47933 (patch)
tree6757009678c61bea9389cd77fae67f7fe545cca3 /mcs
parent5a062bdb74ae17fae0eddc302b4e6c51eda3189e (diff)
2006-02-28 Chris Toshok <toshok@ximian.com>
* IStateRuntime.cs: wrap new interface method with NET_2_0. svn path=/trunk/mcs/; revision=57420
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System.Web/System.Web.SessionState/ChangeLog4
-rw-r--r--mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs3
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.Web/System.Web.SessionState/ChangeLog b/mcs/class/System.Web/System.Web.SessionState/ChangeLog
index 6c6833ac848..874bd0500b2 100644
--- a/mcs/class/System.Web/System.Web.SessionState/ChangeLog
+++ b/mcs/class/System.Web/System.Web.SessionState/ChangeLog
@@ -1,5 +1,9 @@
2006-02-28 Chris Toshok <toshok@ximian.com>
+ * IStateRuntime.cs: wrap new interface method with NET_2_0.
+
+2006-02-28 Chris Toshok <toshok@ximian.com>
+
* SessionStateActions.cs: oops, actually rename the enum, not just
the file.
diff --git a/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs b/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
index fb33dfee513..a877f49fa96 100644
--- a/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
+++ b/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
@@ -51,6 +51,7 @@ namespace System.Web.SessionState
[In, MarshalAs(UnmanagedType.I4)] int contentLength,
[In, MarshalAs(UnmanagedType.SysInt)] IntPtr content);
+#if NET_2_0
void ProcessRequest (
[In, MarshalAs(UnmanagedType.SysInt)] IntPtr tracker,
[In, MarshalAs(UnmanagedType.I4)] int verb,
@@ -62,7 +63,7 @@ namespace System.Web.SessionState
[In, MarshalAs(UnmanagedType.I4)] int lockCookie,
[In, MarshalAs(UnmanagedType.I4)] int contentLength,
[In, MarshalAs(UnmanagedType.SysInt)] IntPtr content);
-
+#endif
void StopProcessing ();
}
}