GetLengthOfPDVs() public method

Calculates the total length of the PDVs in this P-DATA-TF
public GetLengthOfPDVs ( ) : uint
return uint
コード例 #1
0
 private uint CurrentPduSize()
 {
     // PDU header + PDV header + PDV data
     return(6 + _pdu.GetLengthOfPDVs());
 }
コード例 #2
0
ファイル: DicomService.cs プロジェクト: sczx888/fo-dicom
 private int CurrentPduSize()
 {
     return(6 + (int)_pdu.GetLengthOfPDVs());
 }