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

AutomationProxyAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3dfdc572adb6103c62516c54c172190b6b94874c (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
//
// System.Runtime.InteropServices.AutomationProxyAttribute.cs
//
// Name: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class |
			 AttributeTargets.Interface)]
	public sealed class AutomationProxyAttribute : Attribute
	{
		bool val;
		
		public AutomationProxyAttribute (bool val)
		{
			this.val = val;
		}

		public bool Value {
			get { return val; }
		}
	}
}