3 writes to Data
System.Net (3)
net\PeerToPeer\PeerNameRegistration.cs (1)
205
m_PeerNameRecord.
Data
= value;
net\PeerToPeer\PeerNameResolver.cs (2)
317
record.
Data
= new byte[pEndPointInfo->payLoad.cbPayload];
684
record.
Data
= new byte[pEndPointInfo->payLoad.cbPayload];
13 references to Data
System.Net (13)
net\PeerToPeer\PeerNameRecord.cs (4)
182
if (
Data
!= null)
186
Logging.DumpData(Logging.P2PTraceSource, TraceEventType.Verbose, Logging.P2PTraceSource.MaxDataSize,
Data
, 0,
Data
.Length);
190
Logging.P2PTraceSource.TraceEvent(TraceEventType.Information, 0, "\tCustom data length {0}",
Data
.Length);
net\PeerToPeer\PeerNameRegistration.cs (7)
201
return m_PeerNameRecord.
Data
;
336
if (m_PeerNameRecord.
Data
!= null)
338
regInfo.payLoad.cbPayload = (UInt32)m_PeerNameRecord.
Data
.Length;
339
handle = GCHandle.Alloc(m_PeerNameRecord.
Data
, GCHandleType.Pinned);
526
if (m_PeerNameRecord.
Data
!= null)
528
regInfo.payLoad.cbPayload = (UInt32)m_PeerNameRecord.
Data
.Length;
531
GCHandle handle = GCHandle.Alloc(m_PeerNameRecord.
Data
, GCHandleType.Pinned);
net\PeerToPeer\PeerNameResolver.cs (2)
318
Marshal.Copy(pEndPointInfo->payLoad.pbPayload, record.
Data
, 0, (int)pEndPointInfo->payLoad.cbPayload);
685
Marshal.Copy(pEndPointInfo->payLoad.pbPayload, record.
Data
, 0, (int)pEndPointInfo->payLoad.cbPayload);