BaconographyW8.PlatformServices.SimpleHttpService.SendPost C# (CSharp) Method

SendPost() public method

public SendPost ( string cookie, string>.Dictionary urlEncodedData, string uri ) : Task
cookie string
urlEncodedData string>.Dictionary
uri string
return Task
        public Task<string> SendPost(string cookie, Dictionary<string, string> urlEncodedData, string uri)
        {
            return SendPost(cookie, new FormUrlEncodedContent(urlEncodedData), uri);
        }

Same methods

SimpleHttpService::SendPost ( string cookie, HttpContent data, string uri ) : Task
SimpleHttpService::SendPost ( string cookie, string data, string uri ) : Task