| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // System.Web.Services.Protocols.PatternMatcher.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Web.Services;
- namespace System.Web.Services.Protocols {
- public sealed class PatternMatcher {
- #region Constructors
- [MonoTODO]
- public PatternMatcher (Type type)
- {
- throw new NotImplementedException ();
- }
-
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public object Match (string text)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|