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