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

ManagedInstallerClass.cs « System.Configuration.Install « System.Configuration.Install « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ef9c5dbc021403f240d57cf750d86a3adb146ed (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
29
30
31
32
33
// System.Configuration.Install.ManagedInstallerClass.cs
//
// Author:
// 	Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) Novell
//

using System.Runtime.InteropServices;

namespace System.Configuration.Install
{
	[GuidAttribute ("42EB0342-0393-448f-84AA-D4BEB0283595")]
	[ComVisible (true)]
	public class ManagedInstallerClass : IManagedInstaller
	{
		public ManagedInstallerClass ()
		{
		}

		[MonoTODO]
		public static void InstallHelper (string[] args)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		int IManagedInstaller.ManagedInstall (string argString, int hInstall)
		{
			throw new NotImplementedException ();
		}
	}
}