SoapClientMethod.cs 504 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. internal class SoapClientMethod {
  13. #region Fields
  14. public string action;
  15. public LogicalMethodInfo methodInfo;
  16. public bool oneWay;
  17. public bool rpc;
  18. public SoapBindingUse use;
  19. #endregion // Fields
  20. }
  21. }