// System.EnterpriseServices.CompensatingResourceManager.ClerkMonitor.cs // // Author: Mike Kestner (mkestner@ximian.com) // // Copyright (C) 2004 Novell, Inc. // using System; using System.Collections; namespace System.EnterpriseServices.CompensatingResourceManager { public sealed class ClerkMonitor : IEnumerable { [MonoTODO] ~ClerkMonitor () { } #region Constructors [MonoTODO] public ClerkMonitor () { throw new NotImplementedException (); } #endregion #region Properties [MonoTODO] public int Count { get { throw new NotImplementedException (); } } [MonoTODO] public ClerkInfo this [string index] { get { throw new NotImplementedException (); } } [MonoTODO] public ClerkInfo this [int index] { get { throw new NotImplementedException (); } } #endregion #region Properties [MonoTODO] public IEnumerator GetEnumerator () { throw new NotImplementedException (); } [MonoTODO] public void Populate () { throw new NotImplementedException (); } #endregion } }