| 123456789101112131415161718 |
- //
- // System.Runtime.Remoting.Channels.ServerProcessing.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- namespace System.Runtime.Remoting.Channels {
- [Serializable]
- public enum ServerProcessing
- {
- Complete = 0,
- OneWay = 1,
- Async = 2,
- }
- }
|