| 123456789101112131415161718 |
- //
- // PeerReferralPolicy.cs
- //
- // Author:
- // Marcos Cobena ([email protected])
- //
- // Copyright 2007 Marcos Cobena (http://www.youcannoteatbits.org/)
- //
- namespace System.ServiceModel.PeerResolvers
- {
- public enum PeerReferralPolicy
- {
- Service,
- Share,
- DoNotShare
- }
- }
|