OperationFlow.cs 364 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 = 0x0,
  13. Notification = 0x2,
  14. OneWay = 0x1,
  15. RequestResponse = 0x3,
  16. SolicitResponse = 0x4
  17. }
  18. }