ContractSearchPattern.cs 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // System.Web.Services.Protocols.ContractSearchPattern.cs
  3. //
  4. // Author:
  5. // Dave Bettin ([email protected])
  6. //
  7. // Copyright (C) Dave Bettin, 2002
  8. //
  9. namespace System.Web.Services.Discovery {
  10. public sealed class ContractSearchPattern : DiscoverySearchPattern {
  11. #region Fields
  12. private string pattern = "*.asmx";
  13. #endregion // Fields
  14. #region Constructors
  15. [MonoTODO]
  16. public ContractSearchPattern ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. #endregion // Constructors
  21. #region Properties
  22. public override string Pattern {
  23. get { return pattern; }
  24. }
  25. #endregion // Properties
  26. #region Methods
  27. [MonoTODO]
  28. public override DiscoveryReference GetDiscoveryReference (string filename)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. #endregion // Methods
  33. }
  34. }