SoapClientMethod.cs 551 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Web.Services.Protocols.SoapClientMethod.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. using System.Web.Services.Description;
  11. namespace System.Web.Services.Protocols {
  12. [MonoTODO ("Determine what this class does.")]
  13. internal class SoapClientMethod {
  14. #region Fields
  15. public string action;
  16. public LogicalMethodInfo methodInfo;
  17. public bool oneWay;
  18. public bool rpc;
  19. public SoapBindingUse use;
  20. #endregion // Fields
  21. }
  22. }