3 instantiations of Cloud
System.Net (3)
net\PeerToPeer\Cloud.cs (3)
45
public static readonly Cloud Available = new
Cloud
("AllAvailable", PnrpScope.All, -1);
50
public static readonly Cloud AllLinkLocal = new
Cloud
("AllLinkLocal", PnrpScope.LinkLocal, -1);
230
Cloud c = new
Cloud
(nativeCloudName, (PnrpScope)((int)cloudinfo.dwScope), (int)cloudinfo.dwScopeId);
38 references to Cloud
System.Net (38)
net\PeerToPeer\Cloud.cs (17)
33
public class Cloud : ISerializable, IEquatable<
Cloud
>
45
public static readonly
Cloud
Available = new Cloud("AllAvailable", PnrpScope.All, -1);
50
public static readonly
Cloud
AllLinkLocal = new Cloud("AllLinkLocal", PnrpScope.LinkLocal, -1);
87
if (this ==
Cloud
.AllLinkLocal || this ==
Cloud
.Available)
97
if (this ==
Cloud
.AllLinkLocal)
99
else if (this ==
Cloud
.Available)
123
public static
Cloud
Global
133
Cloud
cloud = null;
144
public static
Cloud
GetCloudByName(string cloudName)
151
Cloud
cloud = null;
167
Cloud
dummy = null;
185
private static void GetCloudOrClouds(string cloudName, bool bGlobalCloudOnly, out CloudCollection clouds, out
Cloud
cloud)
230
Cloud
c = new Cloud(nativeCloudName, (PnrpScope)((int)cloudinfo.dwScope), (int)cloudinfo.dwScopeId);
280
public bool Equals(
Cloud
other)
289
Cloud
other = obj as
Cloud
;
net\PeerToPeer\CloudCollection.cs (3)
14
public class CloudCollection : Collection<
Cloud
>
17
protected override void SetItem(int index,
Cloud
item)
25
protected override void InsertItem(int index,
Cloud
item)
net\PeerToPeer\PeerNameRegistration.cs (6)
35
private
Cloud
m_Cloud;
96
public PeerNameRegistration(PeerName name, int port,
Cloud
cloud)
104
cloud =
Cloud
.Available;
174
public
Cloud
Cloud
693
m_Cloud = info.GetValue("_Cloud", typeof(
Cloud
)) as
Cloud
;
net\PeerToPeer\PeerNameResolver.cs (12)
110
internal
Cloud
m_Cloud;
165
internal PeerNameResolverHelper(PeerName peerName,
Cloud
cloud, int MaxRecords, object userState, PeerNameResolver parent, int NewTraceEventId)
572
return Resolve(peerName,
Cloud
.Available, int.MaxValue);
574
public PeerNameRecordCollection Resolve(PeerName peerName,
Cloud
cloud)
580
return Resolve(peerName,
Cloud
.Available, maxRecords);
606
public PeerNameRecordCollection Resolve(PeerName peerName,
Cloud
cloud, int maxRecords)
627
cloud =
Cloud
.Available;
731
ResolveAsync(peerName,
Cloud
.Available, Int32.MaxValue, userState);
734
public void ResolveAsync(PeerName peerName,
Cloud
cloud, object userState)
741
ResolveAsync(peerName,
Cloud
.Available, maxRecords, userState);
750
public void ResolveAsync(PeerName peerName,
Cloud
cloud, int maxRecords, object userState)
761
cloud =
Cloud
.Available;