TradeMe.Api.Client.Client.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 = "")
        {
            if (_catalogue == null)
            {
                _catalogue = new CatalogueMethods(_connection);
            }

            return _catalogue.SearchBluRayCatalog(search);
        }
Client