GetLengthOfPDVs() public method

Calculates the total length of the PDVs in this P-DATA-TF
public GetLengthOfPDVs ( ) : uint
return uint
Ejemplo n.º 1
0
 private uint CurrentPduSize()
 {
     // PDU header + PDV header + PDV data
     return(6 + _pdu.GetLengthOfPDVs());
 }
Ejemplo n.º 2
0
 private int CurrentPduSize()
 {
     return(6 + (int)_pdu.GetLengthOfPDVs());
 }