SearchDialogs() 개인적인 메소드

private SearchDialogs ( string query, ProfileFields fields = null, uint limit = null ) : SearchDialogsResponse
query string
fields ProfileFields
limit uint
리턴 SearchDialogsResponse
예제 #1
0
 public void SearchDialogs_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var cat = new MessagesCategory(new VkApi());
     cat.SearchDialogs("hello");
 }
예제 #2
0
 public void SearchDialogs_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var cat = new MessagesCategory(new VkApi());
     This.Action(() => cat.SearchDialogs("hello")).Throws<AccessTokenInvalidException>();
 }
예제 #3
0
 public void SearchDialogs_AccessTokenInvalid_ThrowAccessTokenInvalidException()
 {
     var cat = new MessagesCategory(new VkApi());
     Assert.That(() => cat.SearchDialogs("hello"), Throws.InstanceOf<AccessTokenInvalidException>());
 }