| 12345678910111213141516171819 |
- //
- // System.Web.Services.Description.OperationFlow.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Description {
- [Serializable]
- public enum OperationFlow {
- None,
- Notification,
- OneWay,
- RequestResponse,
- SolicitResponse
- }
- }
|