Joshilewis.Testing.CallBuilders.PostCallBuilder.PostCallBuilder C# (CSharp) Method

PostCallBuilder() public method

public PostCallBuilder ( HttpClient client, Tokeniser tokeniser, AuthenticatedCommand command, bool failIfUnsuccessful ) : System
client System.Net.Http.HttpClient
tokeniser Joshilewis.Infrastructure.Auth.Tokeniser
command Joshilewis.Cqrs.Command.AuthenticatedCommand
failIfUnsuccessful bool
return System
        public PostCallBuilder(HttpClient client, Tokeniser tokeniser, AuthenticatedCommand command, bool failIfUnsuccessful)
            : base(client, tokeniser)
        {
            Command = command;
            this.failIfUnsuccessful = failIfUnsuccessful;
        }