RefreshResult.cs 325 B

123456789101112
  1. //------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //------------------------------------------------------------
  4. namespace System.ServiceModel.PeerResolvers
  5. {
  6. public enum RefreshResult
  7. {
  8. Success,
  9. RegistrationNotFound
  10. }
  11. }