* IClrObjectFactory.cs: added missing DispId attributes
[mono.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices.Internal / IComSoapMetadata.cs
1 // System.EnterpriseServices.Internal.IComSoapMetadata.cs
2 //
3 // Author:  Mike Kestner (mkestner@ximian.com)
4 //
5 // Copyright (C) 2004 Novell, Inc.
6 //
7
8 using System;
9 using System.Runtime.InteropServices;
10
11 namespace System.EnterpriseServices.Internal {
12
13 #if NET_1_1
14         [Guid("d8013ff0-730b-45e2-ba24-874b7242c425")]
15         public interface IComSoapMetadata {
16                 [DispId(1)]
17                 string Generate (string SrcTypeLibFileName, string OutPath);
18                 [DispId(2)]
19                 string GenerateSigned (string SrcTypeLibFileName, string OutPath, bool InstallGac, out string Error);
20         }
21 #endif
22 }