public void Set(LobbySearchGetSearchResultCountOptions other)
 {
     if (other != null)
     {
         m_ApiVersion = LobbySearch.LobbysearchGetsearchresultcountApiLatest;
     }
 }
        /// <summary>
        /// Get the number of search results found by the search parameters in this search
        /// </summary>
        /// <param name="options">Options associated with the search count</param>
        /// <returns>
        /// return the number of search results found by the query or 0 if search is not complete
        /// </returns>
        public uint GetSearchResultCount(LobbySearchGetSearchResultCountOptions options)
        {
            System.IntPtr optionsAddress = new System.IntPtr();
            Helper.TryMarshalSet <LobbySearchGetSearchResultCountOptionsInternal, LobbySearchGetSearchResultCountOptions>(ref optionsAddress, options);

            var funcResult = EOS_LobbySearch_GetSearchResultCount(InnerHandle, optionsAddress);

            Helper.TryMarshalDispose(ref optionsAddress);

            return(funcResult);
        }