23 lines
723 B
C#
23 lines
723 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Runtime.Remoting.Channels
|
|
{
|
|
/// <summary>Indicates the status of the server message processing.</summary>
|
|
// Token: 0x020003B5 RID: 949
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public enum ServerProcessing
|
|
{
|
|
/// <summary>The server synchronously processed the message.</summary>
|
|
// Token: 0x04000EC4 RID: 3780
|
|
Complete,
|
|
/// <summary>The message was dispatched and no response can be sent.</summary>
|
|
// Token: 0x04000EC5 RID: 3781
|
|
OneWay,
|
|
/// <summary>The call was dispatched asynchronously, which indicates that the sink must store response data on the stack for later processing.</summary>
|
|
// Token: 0x04000EC6 RID: 3782
|
|
Async
|
|
}
|
|
}
|