Clerk.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // System.EnterpriseServices.CompensatingResourceManager.Clerk.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. using System;
  10. using System.EnterpriseServices;
  11. namespace System.EnterpriseServices.CompensatingResourceManager {
  12. public sealed class Clerk {
  13. #region Constructors
  14. //internal Clerk (CrmLogControl logControl)
  15. //{
  16. //}
  17. [MonoTODO]
  18. public Clerk (string compensator, string description, CompensatorOptions flags)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public Clerk (Type compensator, string description, CompensatorOptions flags)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. #endregion // Constructors
  28. #region Properties
  29. public int LogRecordCount {
  30. [MonoTODO]
  31. get { throw new NotImplementedException (); }
  32. }
  33. public string TransactionUOW {
  34. [MonoTODO]
  35. get { throw new NotImplementedException (); }
  36. }
  37. #endregion // Properties
  38. #region Methods
  39. [MonoTODO]
  40. ~Clerk ()
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public void ForceLog ()
  46. {
  47. throw new NotImplementedException ();
  48. }
  49. [MonoTODO]
  50. public void ForceTransactionToAbort ()
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. [MonoTODO]
  55. public void ForgetLogRecord ()
  56. {
  57. throw new NotImplementedException ();
  58. }
  59. [MonoTODO]
  60. public void WriteLogRecord (object record)
  61. {
  62. throw new NotImplementedException ();
  63. }
  64. #endregion // Methods
  65. }
  66. }