**** Merged from MCS ****
[mono-project.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices.Internal / ISoapServerVRoot.cs
blob1e3ed0cb6bffd81e9b06db01db69dfbd38566915
1 // System.EnterpriseServices.Internal.ISoapServerVRoot.cs
2 //
3 // Author: Mike Kestner (mkestner@ximian.com)
4 //
5 // Copyright (C) 2004 Novell, Inc.
6 //
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System;
30 using System.Runtime.InteropServices;
32 namespace System.EnterpriseServices.Internal {
34 #if NET_1_1
35 [Guid("A31B6577-71D2-4344-AEDF-ADC1B0DC5347")]
36 public interface ISoapServerVRoot {
37 [DispId(1)]
38 void CreateVirtualRootEx (
39 [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
40 [MarshalAs(UnmanagedType.BStr)] string inBaseUrl,
41 [MarshalAs(UnmanagedType.BStr)] string inVirtualRoot,
42 [MarshalAs(UnmanagedType.BStr)] string homePage,
43 [MarshalAs(UnmanagedType.BStr)] string discoFile,
44 [MarshalAs(UnmanagedType.BStr)] string secureSockets,
45 [MarshalAs(UnmanagedType.BStr)] string authentication,
46 [MarshalAs(UnmanagedType.BStr)] string operation,
47 [MarshalAs(UnmanagedType.BStr)] out string baseUrl,
48 [MarshalAs(UnmanagedType.BStr)] out string virtualRoot,
49 [MarshalAs(UnmanagedType.BStr)] out string physicalPath);
51 [DispId(2)]
52 void DeleteVirtualRootEx (
53 [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
54 [MarshalAs(UnmanagedType.BStr)] string baseUrl,
55 [MarshalAs(UnmanagedType.BStr)] string virtualRoot);
57 [DispId(3)]
58 void GetVirtualRootStatus (
59 [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
60 [MarshalAs(UnmanagedType.BStr)] string inBaseUrl,
61 [MarshalAs(UnmanagedType.BStr)] string inVirtualRoot,
62 [MarshalAs(UnmanagedType.BStr)] out string exists,
63 [MarshalAs(UnmanagedType.BStr)] out string secureSockets,
64 [MarshalAs(UnmanagedType.BStr)] out string windowsAuth,
65 [MarshalAs(UnmanagedType.BStr)] out string anonymous,
66 [MarshalAs(UnmanagedType.BStr)] out string homePage,
67 [MarshalAs(UnmanagedType.BStr)] out string discoFile,
68 [MarshalAs(UnmanagedType.BStr)] out string physicalPath,
69 [MarshalAs(UnmanagedType.BStr)] out string baseUrl,
70 [MarshalAs(UnmanagedType.BStr)] out string virtualRoot);
72 #endif