Chill.RestRequest.Post C# (CSharp) Метод

Post() публичный Метод

public Post ( string body ) : RestResponse
body string
Результат RestResponse
        public RestResponse Post(string body)
        {
            return new RestResponse(Request("POST", body, "application/x-www-form-urlencoded"));
        }

Same methods

RestRequest::Post ( ) : RestResponse
RestRequest::Post ( object postParams ) : RestResponse