SIPSorcery.SIP.SIPCDR.GetProgressDuration C# (CSharp) Method

GetProgressDuration() public method

public GetProgressDuration ( ) : int
return int
        public int GetProgressDuration()
        {
            return (ProgressTime != null && AnswerTime != null) ? Convert.ToInt32(AnswerTime.Value.Subtract(ProgressTime.Value).TotalSeconds) : 0;
        }