using System; using System.Collections.Generic; using System.Text; using System.Net; namespace LumiSoft.Net.SIP.Stack { /// <summary> /// This class represents SIP end point info, what includes protocol and IP end point. /// Normally this SIP end point info is used to find right UDP socket or TCP onnection. /// </summary> public class SIP_EndPointInfo { private string m_Transport = "UDP"; private IPEndPoint m_pEndPoint = null; /// <summary> /// Default constructor. /// </summary> /// <param name="transport">Transport.</param> /// <param name="endPoint">IP end point.</param> /// <exception cref="ArgumentException">Is raised when any of arguments has invalid value.</exception> public SIP_EndPointInfo(string transport,IPEndPoint endPoint) { if(string.IsNullOrEmpty(transport)){ throw new ArgumentException("Argumnet 'transport' value may not be null or empty !"); } if(endPoint == null){ throw new ArgumentException("Argument 'endPoint' value may not be null !"); } m_Transport = transport; m_pEndPoint = endPoint; } #region Properties Implementation /// <summary> /// Gets transport. /// </summary> public string Transport { get{ return m_Transport; } } /// <summary> /// Gets IP end point. /// </summary> public IPEndPoint EndPoint { get{ return m_pEndPoint; } } #endregion } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Old Japanese Man Creates Amazing Art Using Excel (Wait, Excel?)