11 references to Data
System.Net (11)
net\PeerToPeer\Collaboration\PeerApplication.cs (4)
540
if (
Data
!= null){
544
Logging.DumpData(Logging.P2PTraceSource, TraceEventType.Verbose, Logging.P2PTraceSource.MaxDataSize,
Data
, 0,
Data
.Length);
547
Logging.P2PTraceSource.TraceEvent(TraceEventType.Information, 0, "\tApplication data length {0}",
Data
.Length);
net\PeerToPeer\Collaboration\PeerCollaboration.cs (7)
511
appRegInfo.application.data.cbData = (application.
Data
!=null) ?
512
(UInt32)application.
Data
.Length : 0;
520
if ((application.
Data
!=null) && (application.
Data
.Length > 0))
522
data = new SafeCollabMemory(application.
Data
.Length);
524
Marshal.Copy(application.
Data
, 0, appRegInfo.application.data.pbData, application.
Data
.Length);