blob: 9922d6373930a1cd85ebff1d98634f4c1c620fd7 (
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("17F82C39-5433-493A-A396-36072C645B80")]
public class TestComponent3 : ServicedComponent
{
public TestComponent3()
{
//
// TODO: Add constructor logic here
//
}
[AutoComplete(true)]
public void TestMethod(string Name, string Address, int JobType, bool MakeFail)
{
}
}
}
|