TRock.Music.Grooveshark.GroovesharkClientWrapper.GetStreamKey C# (CSharp) Method

GetStreamKey() public method

public GetStreamKey ( int songId ) : GetStreamKeyFromSongIDEx.GetStreamKeyFromSongIDExResult
songId int
return GetStreamKeyFromSongIDEx.GetStreamKeyFromSongIDExResult
        public GetStreamKeyFromSongIDEx.GetStreamKeyFromSongIDExResult GetStreamKey(int songId)
        {
            if (!IsConnected)
            {
                Connect();
            }

            return _client.GetStreamKey(songId);
        }