a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
291 B
C#
19 lines
291 B
C#
//
|
|
// 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
|
|
}
|
|
}
|