C# Класс DirtyHttp, whatsapp-desktop-client

Provides a dirty but simple-to-use wrapper for the HttpWebRequest classes.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Method HttpMethod,
Timeout int
Url string
Useragent string

Открытые методы

Метод Описание
DirtyHttp ( string _Url ) : System

Class constructor, initializes the class. This is an overload for the default class constructor. Uses HTTP GET with a timeout value of 30000 mili-seconds.

DirtyHttp ( string _Url, int _Timeout, HttpMethod, _Method ) : System

Class constructor, initializes the class.

doRequest ( ) : string

Executes the HTTP request.

Описание методов

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

Class constructor, initializes the class. This is an overload for the default class constructor. Uses HTTP GET with a timeout value of 30000 mili-seconds.
public DirtyHttp ( string _Url ) : System
_Url string
Результат System

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

Class constructor, initializes the class.
public DirtyHttp ( string _Url, int _Timeout, HttpMethod, _Method ) : System
_Url string The URL the request should be made at.
_Timeout int The timeout value in mili-seconds.
_Method HttpMethod, The HTTP method that should be used.
Результат System

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

Executes the HTTP request.
public doRequest ( ) : string
Результат string

Описание свойств

Method публичное свойство

Holds what HTTP method should be used.
public HttpMethod, Method
Результат HttpMethod,

Timeout публичное свойство

The timeout value in mili-seconds.
public int Timeout
Результат int

Url публичное свойство

The URL the request should be made at.
public string Url
Результат string

Useragent публичное свойство

Holds the default Whatsapp useragent string
public string Useragent
Результат string