Exemplo n.º 1
0
        public SCComment GetComment()
        {
            var comment = soundCloudRawClient.Request <Comment>(prefix, string.Empty, HttpMethod.Get);

            return(commentConverter.Convert(comment));
        }
Exemplo n.º 2
0
        public SCComment GetComment(string commentId)
        {
            var comment = soundCloudRawClient.Request <Comment>(prefix, string.Format("comments/{0}", commentId), HttpMethod.Get);

            return(commentConverter.Convert(comment));
        }