TradeMe.Api.Client.CatalogueMethods.SearchBluRayCatalog C# (CSharp) Method

SearchBluRayCatalog() public method

Performs the category method: Searches the Trade Me Blu-ray catalogue for movie titles. GET

DOES NOT REQUIRE AUTHENTICATION.
public SearchBluRayCatalog ( String search = "" ) : MovieTitles
search String The partial title to search for.
return MovieTitles
        public MovieTitles SearchBluRayCatalog(String search = "")
        {
            var url = String.Format(Constants.Culture, "{0}/{1}{2}", Constants.BLURAY,
                                    "find", Constants.XML);

            var getRequest = _connection.UnauthenticatedConnection(url);
            var xml = getRequest.ToString();

            return Deserializer<MovieTitles>.Deserialize(new MovieTitles(), xml);
        }