VkNet.Categories.MessagesCategory.SearchDialogs C# (CSharp) Méthode

SearchDialogs() private méthode

private SearchDialogs ( string query, ProfileFields fields = null, uint limit = null ) : SearchDialogsResponse
query string
fields ProfileFields
limit uint
Résultat SearchDialogsResponse
        public SearchDialogsResponse SearchDialogs(string query, ProfileFields fields = null, uint? limit = null)
        {
            var parameters = new VkParameters
            {
                { "q", query },
                { "fields", fields },
                { "limit", limit }
            };

            return _vk.Call("messages.searchDialogs", parameters);
        }

Usage Example

Exemple #1
0
 public void SearchDialogs_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var cat = new MessagesCategory(new VkApi());
     cat.SearchDialogs("hello");
 }
All Usage Examples Of VkNet.Categories.MessagesCategory::SearchDialogs