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:
Diffstat (limited to 'mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs')
-rw-r--r--mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs b/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
index a877f49fa96..b1cd995f56e 100644
--- a/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
+++ b/mcs/class/System.Web/System.Web.SessionState/IStateRuntime.cs
@@ -35,9 +35,6 @@ namespace System.Web.SessionState
{
[Guid ("7297744b-e188-40bf-b7e9-56698d25cf44")]
[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
-#if NET_2_0
- [ComImportAttribute]
-#endif
public interface IStateRuntime
{
void ProcessRequest (
@@ -51,19 +48,6 @@ 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,
- [In, MarshalAs(UnmanagedType.LPWStr)] string uri,
- [In, MarshalAs(UnmanagedType.I4)] int exclusive,
- [In, MarshalAs(UnmanagedType.I4)] int extraFlags,
- [In, MarshalAs(UnmanagedType.I4)] int timeout,
- [In, MarshalAs(UnmanagedType.I4)] int lockCookieExists,
- [In, MarshalAs(UnmanagedType.I4)] int lockCookie,
- [In, MarshalAs(UnmanagedType.I4)] int contentLength,
- [In, MarshalAs(UnmanagedType.SysInt)] IntPtr content);
-#endif
void StopProcessing ();
}
}