Amido.Testing.WebApi.WebApiRequest.WithVerb C# (CSharp) Method

WithVerb() public method

Sets the http verb to be used in the request.
public WithVerb ( Verb httpVerb ) : WebApiRequest
httpVerb Verb The .
return WebApiRequest
        public WebApiRequest WithVerb(Verb httpVerb)
        {
            verb = httpVerb;
            return this;
        }