NewTOAPIA.Net.Rtp.SdesData.GetProperty C# (CSharp) Method

GetProperty() private method

private GetProperty ( SDESType type ) : string
type SDESType
return string
        private string GetProperty(SDESType type)
        {
            string ret = null;

            if (data[(int)type] != null)
            {
                lock (utf8)
                {
                    ret = utf8.GetString(data[(int)type]);
                }
            }

            return ret;
        }