ShowIt.ConferenceSession.ConferenceSession C# (CSharp) Method

ConferenceSession() public method

Most fundamental constructor. We need at least an IP address and identifiers to get a session going. The uniqueName is generated from: Guid.NewGuid().ToString() The friendlyName is generated from: Environment.UserName
public ConferenceSession ( IPEndPoint endPoint ) : System
endPoint System.Net.IPEndPoint
return System
        public ConferenceSession(IPEndPoint endPoint)
            : this(endPoint, Guid.NewGuid().ToString(), Environment.UserName, true, true, null)
        {
        }

Same methods

ConferenceSession::ConferenceSession ( IPEndPoint endPoint, string uniqueName, string friendlyName, bool rtpTraffic, bool receiveData, IPEndPoint reflector ) : System