7 writes to cbData
System.Net (7)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (2)
232pd.cbData = 0; 241pd.cbData = 0;
net\PeerToPeer\Collaboration\Peer.cs (2)
676pi.applicationData.cbData = (invitationData != null) ? (UInt32)invitationData.Length : 0; 1103pi.applicationData.cbData = (m_inviteData != null) ? (UInt32)m_inviteData.Length : 0;
net\PeerToPeer\Collaboration\PeerCollaboration.cs (3)
511appRegInfo.application.data.cbData = (application.Data!=null) ? 822po.data.cbData = (UInt32)peerObject.Data.Length; 828po.data.cbData = 0;
26 references to cbData
System.Net (26)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (11)
143if (pc.credentials.cbData != 0){ 144data = new byte[pc.credentials.cbData]; 145Marshal.Copy(pc.credentials.pbData, data, 0, (int)pc.credentials.cbData); 220if ((pd.cbData != 0) && (returnCode)){ 221safeCredentials = new SafeCollabMemory((int)pd.cbData); 306if (po.data.cbData != 0){ 307data = new byte[po.data.cbData]; 308Marshal.Copy(po.data.pbData, data, 0, (int)po.data.cbData); 327if (pa.data.cbData != 0){ 328data = new byte[pa.data.cbData]; 329Marshal.Copy(pa.data.pbData, data, 0, (int)pa.data.cbData);
net\PeerToPeer\Collaboration\Peer.cs (3)
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)
272if (pi.applicationData.cbData != 0){ 273data = new byte[pi.applicationData.cbData]; 274Marshal.Copy(pi.applicationData.pbData, data, 0, (int)pi.applicationData.cbData); 721if (pPeerApp->data.cbData != 0){ 722data = new byte[pPeerApp->data.cbData]; 723Marshal.Copy(pPeerApp->data.pbData, data, 0, (int)pPeerApp->data.cbData); 950if (pPeerObject->data.cbData != 0){ 951data = new byte[pPeerObject->data.cbData]; 952Marshal.Copy(pPeerObject->data.pbData, data, 0, (int)pPeerObject->data.cbData);
net\PeerToPeer\Collaboration\PeerContact.cs (3)
1086if (pPeerApp->data.cbData != 0) 1088data = new byte[pPeerApp->data.cbData]; 1089Marshal.Copy(pPeerApp->data.pbData, data, 0, (int)pPeerApp->data.cbData);