// // System.Web.Services.Protocols.PatternMatcher.cs // // Author: // Tim Coleman (tim@timcoleman.com) // // 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 } }