[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices.Internal / IComSoapPublisher.cs
blob4527906deae86bee752d46bff482ffdf90719e98
1 // System.EnterpriseServices.Internal.IComSoapPublisher.cs
2 //
3 // Author:
4 // Alejandro Sánchez Acosta (raciel@es.gnu.org)
5 //
6 // Copyright (C) 2002 Alejandro Sánchez Acosta
7 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 using System;
31 using System.Runtime.InteropServices;
33 namespace System.EnterpriseServices.Internal
35 [Guid("d8013eee-730b-45e2-ba24-874b7242c425")]
36 public interface IComSoapPublisher
38 [DispId(6)]
39 void CreateMailBox (
40 [MarshalAs(UnmanagedType.BStr)] string RootMailServer,
41 [MarshalAs(UnmanagedType.BStr)] string MailBox,
42 [MarshalAs(UnmanagedType.BStr)] out string SmtpName,
43 [MarshalAs(UnmanagedType.BStr)] out string Domain,
44 [MarshalAs(UnmanagedType.BStr)] out string PhysicalPath,
45 [MarshalAs(UnmanagedType.BStr)] out string Error);
47 [DispId(4)]
48 void CreateVirtualRoot (
49 [MarshalAs(UnmanagedType.BStr)] string Operation,
50 [MarshalAs(UnmanagedType.BStr)] string FullUrl,
51 [MarshalAs(UnmanagedType.BStr)] out string BaseUrl,
52 [MarshalAs(UnmanagedType.BStr)] out string VirtualRoot,
53 [MarshalAs(UnmanagedType.BStr)] out string PhysicalPath,
54 [MarshalAs(UnmanagedType.BStr)] out string Error);
56 [DispId(7)]
57 void DeleteMailBox (
58 [MarshalAs(UnmanagedType.BStr)] string RootMailServer,
59 [MarshalAs(UnmanagedType.BStr)] string MailBox,
60 [MarshalAs(UnmanagedType.BStr)] out string Error);
62 [DispId(5)]
63 void DeleteVirtualRoot (
64 [MarshalAs(UnmanagedType.BStr)] string RootWebServer,
65 [MarshalAs(UnmanagedType.BStr)] string FullUrl,
66 [MarshalAs(UnmanagedType.BStr)] out string Error);
68 [DispId(13)]
69 void GacInstall ([MarshalAs(UnmanagedType.BStr)] string AssemblyPath);
71 [DispId(14)]
72 void GacRemove ([MarshalAs(UnmanagedType.BStr)] string AssemblyPath);
74 [DispId(15)]
75 void GetAssemblyNameForCache (
76 [MarshalAs(UnmanagedType.BStr)] string TypeLibPath,
77 [MarshalAs(UnmanagedType.BStr)] out string CachePath);
79 [return: MarshalAs(UnmanagedType.BStr)]
80 [DispId(10)]
81 string GetTypeNameFromProgId (
82 [MarshalAs(UnmanagedType.BStr)] string AssemblyPath,
83 [MarshalAs(UnmanagedType.BStr)] string ProgId);
85 [DispId(9)]
86 void ProcessClientTlb (
87 [MarshalAs(UnmanagedType.BStr)] string ProgId,
88 [MarshalAs(UnmanagedType.BStr)] string SrcTlbPath,
89 [MarshalAs(UnmanagedType.BStr)] string PhysicalPath,
90 [MarshalAs(UnmanagedType.BStr)] string VRoot,
91 [MarshalAs(UnmanagedType.BStr)] string BaseUrl,
92 [MarshalAs(UnmanagedType.BStr)] string Mode,
93 [MarshalAs(UnmanagedType.BStr)] string Transport,
94 [MarshalAs(UnmanagedType.BStr)] out string AssemblyName,
95 [MarshalAs(UnmanagedType.BStr)] out string TypeName,
96 [MarshalAs(UnmanagedType.BStr)] out string Error);
98 [DispId(8)]
99 void ProcessServerTlb (
100 [MarshalAs(UnmanagedType.BStr)] string ProgId,
101 [MarshalAs(UnmanagedType.BStr)] string SrcTlbPath,
102 [MarshalAs(UnmanagedType.BStr)] string PhysicalPath,
103 [MarshalAs(UnmanagedType.BStr)] string Operation,
104 [MarshalAs(UnmanagedType.BStr)] out string AssemblyName,
105 [MarshalAs(UnmanagedType.BStr)] out string TypeName,
106 [MarshalAs(UnmanagedType.BStr)] out string Error);
108 [DispId(11)]
109 void RegisterAssembly ([MarshalAs(UnmanagedType.BStr)] string AssemblyPath);
111 [DispId(12)]
112 void UnRegisterAssembly ([MarshalAs(UnmanagedType.BStr)] string AssemblyPath);