2
0

OperationFlow.cs 334 B

12345678910111213141516171819
  1. //
  2. // System.Web.Services.Description.OperationFlow.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Description {
  10. [Serializable]
  11. public enum OperationFlow {
  12. None,
  13. Notification,
  14. OneWay,
  15. RequestResponse,
  16. SolicitResponse
  17. }
  18. }