| 12345678910111213141516171819202122232425262728 |
- //
- // System.Runtime.InteropServices.AutomationProxyAttribute.cs
- //
- // Name: Duncan Mak ([email protected])
- //
- // (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; }
- }
- }
- }
|