C# Класс Headless.PostEntry

The PostEntry class describes an entry for sending POST data.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
PostEntry ( string name, System.Guid value ) : System

Initializes a new instance of the PostEntry class.

PostEntry ( string name, int value ) : System

Initializes a new instance of the PostEntry class.

This constructor uses CultureInfo.InvariantCulture to convert the value to a string.

PostEntry ( string name, long value ) : System

Initializes a new instance of the PostEntry class.

This constructor uses CultureInfo.InvariantCulture to convert the value to a string.

PostEntry ( string name, object value ) : System

Initializes a new instance of the PostEntry class.

PostEntry ( string name, short value ) : System

Initializes a new instance of the PostEntry class.

This constructor uses CultureInfo.InvariantCulture to convert the value to a string.

PostEntry ( string name, string value ) : System

Initializes a new instance of the PostEntry class.

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

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

Initializes a new instance of the PostEntry class.
public PostEntry ( string name, System.Guid value ) : System
name string /// The name. ///
value System.Guid /// The value. ///
Результат System

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

Initializes a new instance of the PostEntry class.
This constructor uses CultureInfo.InvariantCulture to convert the value to a string.
public PostEntry ( string name, int value ) : System
name string /// The name. ///
value int /// The value. ///
Результат System

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

Initializes a new instance of the PostEntry class.
This constructor uses CultureInfo.InvariantCulture to convert the value to a string.
public PostEntry ( string name, long value ) : System
name string /// The name. ///
value long /// The value. ///
Результат System

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

Initializes a new instance of the PostEntry class.
public PostEntry ( string name, object value ) : System
name string /// The name. ///
value object /// The value. ///
Результат System

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

Initializes a new instance of the PostEntry class.
This constructor uses CultureInfo.InvariantCulture to convert the value to a string.
public PostEntry ( string name, short value ) : System
name string /// The name. ///
value short /// The value. ///
Результат System

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

Initializes a new instance of the PostEntry class.
/// The parameter is null, empty or only contains white-space. ///
public PostEntry ( string name, string value ) : System
name string /// The name. ///
value string /// The value. ///
Результат System