SIPSorcery.SIP.SIPURI.ToAOR C# (CSharp) Method

ToAOR() public method

Returns an address of record for the SIP URI which is a string in the format user@host.
public ToAOR ( ) : string
return string
        public string ToAOR()
        {
            return User + USER_HOST_SEPARATOR + Host;
        }