30 references to PeerScope
System.Net (30)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (2)
311return new PeerObject(ConvertGUIDToGuid(po.guid), data, (PeerScope)po.dwPublicationScope); 335null, null, PeerScope.None);
net\PeerToPeer\Collaboration\Peer.cs (1)
603PeerObject peerObject = new PeerObject(CollaborationHelperFunctions.ConvertGUIDToGuid(pPeerObject->guid), data, (PeerScope)pPeerObject->dwPublicationScope);
net\PeerToPeer\Collaboration\PeerApplication.cs (4)
35private PeerScope m_peerScope; 54string commandLineArgs, PeerScope peerScope) 78m_peerScope = (PeerScope) serializationInfo.GetInt32("_Scope"); 149public PeerScope PeerScope
net\PeerToPeer\Collaboration\PeerCollaboration.cs (15)
156public static PeerScope SignInScope 165PeerScope peerScope = PeerScope.None; 268null, null, null, null, PeerScope.None); 319public static void SignIn(PeerScope peerScope) 325if ((peerScope < PeerScope.None) || (peerScope > PeerScope.All)) 328if (peerScope == PeerScope.None) 349public static void SignOut(PeerScope peerScope) 357if ((peerScope < PeerScope.None) || (peerScope > PeerScope.All)) 360if (peerScope != PeerScope.None){ 727description, data, null, null, PeerScope.None); 766peerApplication.PeerScope = (PeerScope)pari.dwPublicationScope; 955PeerObject peerObject = new PeerObject(CollaborationHelperFunctions.ConvertGUIDToGuid(pPeerObject->guid), data, (PeerScope)pPeerObject->dwPublicationScope);
net\PeerToPeer\Collaboration\PeerContact.cs (1)
1092PeerApplication peerApp = new PeerApplication(CollaborationHelperFunctions.ConvertGUIDToGuid(pPeerApp->guid), description, data, null, null, PeerScope.None);
net\PeerToPeer\Collaboration\PeerObject.cs (4)
32private PeerScope m_peerScope; 53public PeerObject(Guid Id, byte[] data, PeerScope peerScope) 71m_peerScope = (PeerScope) serializationInfo.GetInt32("_Scope"); 102public PeerScope PeerScope
net\PeerToPeer\Collaboration\UnsafeCollabNativeMethods.cs (3)
693internal extern static int PeerCollabSignin(IntPtr hwndParent, PeerScope dwSignInOptions); 699internal extern static int PeerCollabSignout(PeerScope dwSignInOptions); 702internal extern static int PeerCollabGetSigninOptions(ref PeerScope dwSignInOptions);