コード例 #1
0
 /// <summary>
 /// Gets information about a user.
 /// </summary>
 public Task <UserResponse> InfoAsync(UserToGetInfo userToGetInfo)
 => SendGetAsync <UserToGetInfo, UserResponse>("info", userToGetInfo);
コード例 #2
0
ファイル: SlackClient.cs プロジェクト: Fuse8/SlackBot.Api
 /// <inheritdoc cref="UsersClient.InfoAsync(UserToGetInfo)"/>
 public Task <UserResponse> UserInfoAsync(UserToGetInfo userToGetInfo)
 => Users.InfoAsync(userToGetInfo);