HttpUrlEncodedBinding.cs 556 B

123456789101112131415161718192021222324
  1. //
  2. // System.Web.Services.Description.HttpUrlEncodedBinding.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services.Configuration;
  10. namespace System.Web.Services.Description {
  11. [XmlFormatExtension ("urlEncoded", "http://schemas.xmlsoap.org/wsdl/http/", typeof (InputBinding))]
  12. public sealed class HttpUrlEncodedBinding : ServiceDescriptionFormatExtension {
  13. #region Constructors
  14. public HttpUrlEncodedBinding ()
  15. {
  16. }
  17. #endregion // Constructors
  18. }
  19. }