aboutsummaryrefslogtreecommitdiff
path: root/src/test/msi/TestData/ComPlusExtensionTests/Components/TestComponentNET4/TestComponentNET4.cs
blob: 7aabd1696db2e389a5e12abfa1ed29bc5e61979c (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
using System;
using System.EnterpriseServices;
using System.Runtime.InteropServices;

[assembly: ApplicationActivation(ActivationOption.Library)]
namespace TestApplication
{
    /// <summary>
    /// TestComponent
    /// </summary>
    [ComVisible(true)]
    [Transaction(TransactionOption.Required)]
	[ObjectPooling(true, 5, 10)]
    [Guid("146AB3A2-4472-4DB9-94D5-311536E799BD")]
    public class TestComponent4 : ServicedComponent
	{
		public TestComponent4()
		{
			//
			// TODO: Add constructor logic here
			//
		}

        [AutoComplete(true)]
        public void TestMethod(string Name, string Address, int JobType, bool MakeFail)
		{

		}
	}
}