RefreshResult.cs 277 B

12345678910111213141516
  1. //
  2. // RefreshResult.cs
  3. //
  4. // Author:
  5. // Marcos Cobena ([email protected])
  6. //
  7. // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
  8. //
  9. namespace System.ServiceModel.PeerResolvers
  10. {
  11. public enum RefreshResult {
  12. Success,
  13. RegistrationNotFound
  14. }
  15. }