ReplicationNeighbor.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /******************************************************************************
  2. * The MIT License
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a copy
  5. * of this software and associated documentation files (the Software), to deal
  6. * in the Software without restriction, including without limitation the rights
  7. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. * copies of the Software, and to permit persons to whom the Software is
  9. * furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  20. * SOFTWARE.
  21. *******************************************************************************/
  22. using System;
  23. using System.Collections;
  24. namespace System.DirectoryServices.ActiveDirectory
  25. {
  26. public class ReplicationNeighbor
  27. {
  28. [Flags]
  29. public enum ReplicationNeighborOptions : long
  30. {
  31. Writeable = 16L,
  32. SyncOnStartup = 32L,
  33. ScheduledSync = 64L,
  34. UseInterSiteTransport = 128L,
  35. TwoWaySync = 512L,
  36. ReturnObjectParent = 2048L,
  37. FullSyncInProgress = 65536L,
  38. FullSyncNextPacket = 131072L,
  39. NeverSynced = 2097152L,
  40. Preempted = 16777216L,
  41. IgnoreChangeNotifications = 67108864L,
  42. DisableScheduledSync = 134217728L,
  43. CompressChanges = 268435456L,
  44. NoChangeNotifications = 536870912L,
  45. PartialAttributeSet = 1073741824L
  46. }
  47. public string PartitionName {
  48. get {
  49. throw new NotImplementedException ();
  50. }
  51. }
  52. public string SourceServer {
  53. get {
  54. throw new NotImplementedException ();
  55. }
  56. }
  57. public ActiveDirectoryTransportType TransportType {
  58. get {
  59. throw new NotImplementedException ();
  60. }
  61. }
  62. public ReplicationNeighbor.ReplicationNeighborOptions ReplicationNeighborOption {
  63. get {
  64. throw new NotImplementedException ();
  65. }
  66. }
  67. public Guid SourceInvocationId {
  68. get {
  69. throw new NotImplementedException ();
  70. }
  71. }
  72. public long UsnLastObjectChangeSynced {
  73. get {
  74. throw new NotImplementedException ();
  75. }
  76. }
  77. public long UsnAttributeFilter {
  78. get {
  79. throw new NotImplementedException ();
  80. }
  81. }
  82. public DateTime LastSuccessfulSync {
  83. get {
  84. throw new NotImplementedException ();
  85. }
  86. }
  87. public DateTime LastAttemptedSync {
  88. get {
  89. throw new NotImplementedException ();
  90. }
  91. }
  92. public int LastSyncResult {
  93. get {
  94. throw new NotImplementedException ();
  95. }
  96. }
  97. public string LastSyncMessage {
  98. get {
  99. throw new NotImplementedException ();
  100. }
  101. }
  102. public int ConsecutiveFailureCount {
  103. get {
  104. throw new NotImplementedException ();
  105. }
  106. }
  107. }
  108. }