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;
        }