5 instantiations of PeerName
System.Net (5)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (1)
134peerContact.PeerName = new PeerName(pc.pwzPeerName);
net\PeerToPeer\PeerName.cs (2)
237PeerName p = new PeerName(peerName, authority, classifier); 313PeerName p = new PeerName(newPeerName, authority, newClassifier);
net\PeerToPeer\PeerNameResolver.cs (2)
309record.PeerName = new PeerName(Marshal.PtrToStringUni(pEndPointInfo->pwszPeerName)); 675record.PeerName = new PeerName(Marshal.PtrToStringUni(pEndPointInfo->pwszPeerName));
33 references to PeerName
System.Net (33)
net\PeerToPeer\Collaboration\ContactManager.cs (2)
1327public PeerContact GetContact(PeerName peerName) 1702public void DeleteContact(PeerName peerName)
net\PeerToPeer\Collaboration\PeerContact.cs (4)
83private PeerName m_peerName; 93public PeerName PeerName 328m_peerName = (PeerName) serializationInfo.GetValue("_PeerName", typeof(PeerName));
net\PeerToPeer\PeerName.cs (9)
25public class PeerName : ISerializable, IEquatable<PeerName> 207public static PeerName CreateFromPeerHostName(string peerHostName) 237PeerName p = new PeerName(peerName, authority, classifier); 259public static PeerName CreateRelativePeerName( 260PeerName peerName, 313PeerName p = new PeerName(newPeerName, authority, newClassifier); 332public bool Equals(PeerName other) 341PeerName other = obj as PeerName;
net\PeerToPeer\PeerNameRecord.cs (4)
22private PeerName m_PeerName; 39m_PeerName = info.GetValue("_PeerName", typeof(PeerName)) as PeerName; 100public PeerName PeerName
net\PeerToPeer\PeerNameRegistration.cs (4)
52private PeerName m_RegisteredPeerName; 86public PeerNameRegistration(PeerName name, int port) : this(name, port, null) 96public PeerNameRegistration(PeerName name, int port, Cloud cloud) 152public PeerName PeerName
net\PeerToPeer\PeerNameResolver.cs (10)
105internal PeerName m_PeerName; 165internal PeerNameResolverHelper(PeerName peerName, Cloud cloud, int MaxRecords, object userState, PeerNameResolver parent, int NewTraceEventId) 570public PeerNameRecordCollection Resolve(PeerName peerName) 574public PeerNameRecordCollection Resolve(PeerName peerName, Cloud cloud) 578public PeerNameRecordCollection Resolve(PeerName peerName, int maxRecords) 606public PeerNameRecordCollection Resolve(PeerName peerName, Cloud cloud, int maxRecords) 729public void ResolveAsync(PeerName peerName, object userState) 734public void ResolveAsync(PeerName peerName, Cloud cloud, object userState) 739public void ResolveAsync(PeerName peerName, int maxRecords, object userState) 750public void ResolveAsync(PeerName peerName, Cloud cloud, int maxRecords, object userState)