19 lines
291 B
C#
Raw Normal View History

//
// PeerReferralPolicy.cs
//
// Author:
// Marcos Cobena (marcoscobena@gmail.com)
//
// Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
//
namespace System.ServiceModel.PeerResolvers
{
public enum PeerReferralPolicy
{
Service,
Share,
DoNotShare
}
}