C# 클래스 SteamWebAPI2.SteamWebRequestParameter

Represents a single parameter to be included in a web API request. Each parameter must have a name and a value, both of which will be serialized to a URL parameter.
파일 보기 프로젝트 열기: babelshift/SteamWebAPI2

공개 메소드들

메소드 설명
SteamWebRequestParameter ( string name, string value ) : System

Constructs a parameter with the given name and value. Name must not be null or empty.

ToString ( ) : string

Returns a string which concatenates the name and value together with '=' symbol as it would appear in a URL

메소드 상세

SteamWebRequestParameter() 공개 메소드

Constructs a parameter with the given name and value. Name must not be null or empty.
public SteamWebRequestParameter ( string name, string value ) : System
name string Name to give this parameter
value string Value to give this parameter
리턴 System

ToString() 공개 메소드

Returns a string which concatenates the name and value together with '=' symbol as it would appear in a URL
public ToString ( ) : string
리턴 string