PatternMatcher.cs 596 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // System.Web.Services.Protocols.PatternMatcher.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System.Web.Services;
  10. namespace System.Web.Services.Protocols {
  11. public sealed class PatternMatcher {
  12. #region Constructors
  13. [MonoTODO]
  14. public PatternMatcher (Type type)
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. #endregion // Constructors
  19. #region Methods
  20. [MonoTODO]
  21. public object Match (string text)
  22. {
  23. throw new NotImplementedException ();
  24. }
  25. #endregion // Methods
  26. }
  27. }