17 references to data
System.Net (17)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (4)
306if (po.data.cbData != 0){ 307data = new byte[po.data.cbData]; 308Marshal.Copy(po.data.pbData, data, 0, (int)po.data.cbData);
net\PeerToPeer\Collaboration\Peer.cs (4)
598if (pPeerObject->data.cbData != 0){ 599data = new byte[pPeerObject->data.cbData]; 600Marshal.Copy(pPeerObject->data.pbData, data, 0, (int)pPeerObject->data.cbData);
net\PeerToPeer\Collaboration\PeerCollaboration.cs (9)
821po.data.pbData = data.DangerousGetHandle(); 822po.data.cbData = (UInt32)peerObject.Data.Length; 824Marshal.Copy(peerObject.Data, 0, po.data.pbData, peerObject.Data.Length); 827po.data.pbData = IntPtr.Zero; 828po.data.cbData = 0; 950if (pPeerObject->data.cbData != 0){ 951data = new byte[pPeerObject->data.cbData]; 952Marshal.Copy(pPeerObject->data.pbData, data, 0, (int)pPeerObject->data.cbData);