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

SoapServerVRoot.cs « System.EnterpriseServices.Internal « System.EnterpriseServices « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e621cff86907959fdd9c47def91acca34bbd5d1c (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
34
35
36
37
38
39
40
41
42
43
44
// System.EnterpriseServices.Internal.SoapServerVRoot.cs
//
// Author:  Mike Kestner (mkestner@ximian.com)
//
// Copyright (C) 2004 Novell, Inc.
//

using System;
using System.Runtime.InteropServices;

namespace System.EnterpriseServices.Internal
{
#if NET_1_1
	[Guid("CAA817CC-0C04-4d22-A05C-2B7E162F4E8F")]
	public sealed class SoapServerVRoot : ISoapServerVRoot {

		[MonoTODO]
		public SoapServerVRoot ()
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void CreateVirtualRootEx (string rootWebServer, string inBaseUrl, string inVirtualRoot, string homePage, string discoFile, string secureSockets, string authentication, string operation, out string baseUrl, out string virtualRoot, out string physicalPath)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public void DeleteVirtualRootEx (string rootWebServer, string inBaseUrl, string inVirtualRoot)
		{
			throw new NotImplementedException ();
		}


		[MonoTODO]
		public void GetVirtualRootStatus (string RootWebServer, string inBaseUrl, string inVirtualRoot, out string Exists, out string SSL, out string WindowsAuth, out string Anonymous, out string HomePage, out string DiscoFile, out string PhysicalPath, out string BaseUrl, out string VirtualRoot)
		{
			throw new NotImplementedException ();
		}

	}
#endif
}