using System; using System.Runtime.InteropServices; namespace System.Runtime.Remoting.Messaging { /// Marks a method as one way, without a return value and out or ref parameters. // Token: 0x02000400 RID: 1024 [AttributeUsage(AttributeTargets.Method)] [ComVisible(true)] public class OneWayAttribute : Attribute { } }