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

GenerateMetadata.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: bb96d896df78b8d8a9c83627a9bd606398e01bcc (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
45
46
47
48
49
// System.EnterpriseServices.Internal.GenerateMetadata.cs
//
// Author:  Mike Kestner (mkestner@ximian.com)
//
// Copyright (C) 2004 Novell, Inc.

using System;
using System.Reflection;
using System.Runtime.InteropServices;

namespace System.EnterpriseServices.Internal
{
#if NET_1_1
	[Guid("d8013ff1-730b-45e2-ba24-874b7242c425")]
	public class GenerateMetadata : IComSoapMetadata {

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

		[MonoTODO]
		public string Generate (string strSrcTypeLib, string outPath)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public string GenerateMetaData (string strSrcTypeLib, string outPath, byte[] PublicKey, StrongNameKeyPair KeyPair)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public string GenerateSigned (string strSrcTypeLib, string outPath, bool InstallGac, out string Error)
		{
			throw new NotImplementedException ();
		}

		[MonoTODO]
		public static int SearchPath (string path, string fileName, string extension, int numBufferChars, string buffer, int[] filePart)
		{
			throw new NotImplementedException ();
		}

	}
#endif
}