SIPSorcery.SIP.SIPDNSLookupResult.AddSRVResult C# (CSharp) Method

AddSRVResult() public method

public AddSRVResult ( SIPDNSServiceResult sipSRVResult ) : void
sipSRVResult SIPDNSServiceResult
return void
        public void AddSRVResult(SIPDNSServiceResult sipSRVResult)
        {
            if (SIPSRVResults == null)
            {
                SIPSRVResults = new List<SIPDNSServiceResult>() { sipSRVResult };
            }
            else
            {
                SIPSRVResults.Add(sipSRVResult);
            }
        }