C# Class Elastacloud.AzureManagement.Fluent.Clients.Helpers.WebsiteRequestHelper

Inheritance: IWebsiteRequestHelper
Mostrar archivo Open project: azurecoder/fluent-management

Public Methods

Method Description
ExecuteCommand ( string uri, int status ) : void

Executes a command request and doesn't wait or process the response but checks the status and throws an exception if not acheived

GetStringResponse ( string username, string password, string uri ) : string

Used to get a string response given a uri, username and password

PostStringResponse ( string username, string password, string uri, string content ) : string

Used to get a return value from a post request

Private Methods

Method Description
GetBasicAuthenticationCredentials ( string username, string password ) : string
GetWebClient ( ) : HttpClient
GetWebClient ( string username, string password ) : HttpClient

Method Details

ExecuteCommand() public method

Executes a command request and doesn't wait or process the response but checks the status and throws an exception if not acheived
public ExecuteCommand ( string uri, int status ) : void
uri string the uri requested
status int The Http Status response code expected
return void

GetStringResponse() public method

Used to get a string response given a uri, username and password
public GetStringResponse ( string username, string password, string uri ) : string
username string
password string
uri string
return string

PostStringResponse() public method

Used to get a return value from a post request
public PostStringResponse ( string username, string password, string uri, string content ) : string
username string
password string
uri string
content string
return string