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

AppDomainFactory.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: 7cf5b14a9c1e4ec8defbe1814df9ba720ef6b3da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Web.Hosting.AppDomainFactory.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;

namespace System.Web.Hosting
{
        public sealed class AppDomainFactory : IAppDomainFactory
        {
                public AppDomainFactory();
                public object Create(string module, string typeName, string appId, string appPath, string strUrlOfAppOrigin, int iZone);
        }
}