Exemplo n.º 1
0
        public Command BuildChatCommand()
        {
            var command = new Command("chat");
            var builder = new ChatRequestBuilder(PathParameters, RequestAdapter);

            command.AddCommand(builder.BuildGetCommand());
            return(command);
        }
Exemplo n.º 2
0
 public Task SendSocketAsync(ChatRequestBuilder builder, RequestOptions options = null)
 => SendSocketAsync(builder.Command, builder.Parameters, builder.GetTagString(), options);