17 lines
277 B
C#
17 lines
277 B
C#
|
//
|
||
|
// RefreshResult.cs
|
||
|
//
|
||
|
// Author:
|
||
|
// Marcos Cobena (marcoscobena@gmail.com)
|
||
|
//
|
||
|
// Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
|
||
|
//
|
||
|
|
||
|
namespace System.ServiceModel.PeerResolvers
|
||
|
{
|
||
|
public enum RefreshResult {
|
||
|
Success,
|
||
|
RegistrationNotFound
|
||
|
}
|
||
|
}
|