This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,22 @@
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
}
}