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