Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@@ -35,9 +35,7 @@ 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,7 +49,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,
@@ -63,7 +60,6 @@ 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 ();
}
}