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

IAppDomainFactory.cs « System.Web.Hosting « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6bf3ae89eef4888103d8efe01b1631f6493ab3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// System.Web.Hosting.IAppDomainFactory.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Runtime.InteropServices;

namespace System.Web.Hosting
{
	[Guid ("e6e21054-a7dc-4378-877d-b7f4a2d7e8ba")]
	[InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
	public interface IAppDomainFactory
	{
		[return: MarshalAs (UnmanagedType.Interface)]
		object Create ([In, MarshalAs(UnmanagedType.BStr)] string module,
			       [In, MarshalAs(UnmanagedType.BStr)] string typeName,
			       [In, MarshalAs(UnmanagedType.BStr)] string appId,
			       [In, MarshalAs(UnmanagedType.BStr)] string appPath,
			       [In, MarshalAs(UnmanagedType.BStr)] string strUrlOfAppOrigin,
			       [In, MarshalAs(UnmanagedType.I4)] int iZone);
	}
}