| 1234567891011121314151617181920 |
- //
- // System.Runtime.Remoting.Messaging.OneWayAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- namespace System.Runtime.Remoting.Messaging {
- [AttributeUsage (AttributeTargets.Method)]
- public class OneWayAttribute : Attribute
- {
- public OneWayAttribute ()
- {
- }
- }
- }
|