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.
Показать файл Открыть проект

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

Метод Описание
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