SoapRpcServiceAttribute.cs 767 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // System.Web.Services.Protocols.SoapRpcServiceAttribute.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Protocols {
  10. [AttributeUsage (AttributeTargets.Class, Inherited = true)]
  11. public sealed class SoapRpcServiceAttribute : Attribute {
  12. #region Fields
  13. SoapServiceRoutingStyle routingStyle;
  14. #endregion // Fields
  15. #region Constructors
  16. public SoapRpcServiceAttribute ()
  17. {
  18. routingStyle = SoapServiceRoutingStyle.SoapAction;
  19. }
  20. #endregion // Constructors
  21. #region Properties
  22. public SoapServiceRoutingStyle RoutingStyle {
  23. get { return routingStyle; }
  24. set { routingStyle = value; }
  25. }
  26. #endregion // Properties
  27. }
  28. }