//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Net.PeerToPeer { using System; using System.Collections.Generic; using System.Text; /// /// PnrpScope represents the scope of the cloud /// public enum PnrpScope { /// /// Represents All clouds /// All = 0, /// /// Represents Global cloud /// Global = 1, /// /// Represents site local cloud /// SiteLocal = 2, /// /// Represents Link Local cloud /// LinkLocal = 3 } }