C# 클래스 Headless.PostEntry

The PostEntry class describes an entry for sending POST data.
파일 보기 프로젝트 열기: roryprimrose/Headless 1 사용 예제들

공개 메소드들

메소드 설명
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