SIPSorcery.SIP.SIPCDR.GetProgressDuration C# (CSharp) Метод

GetProgressDuration() публичный Метод

public GetProgressDuration ( ) : int
Результат int
        public int GetProgressDuration()
        {
            return (ProgressTime != null && AnswerTime != null) ? Convert.ToInt32(AnswerTime.Value.Subtract(ProgressTime.Value).TotalSeconds) : 0;
        }