Class RequestParameter
Represents the parameter of http request.
Inheritance
System.Object
RequestParameter
Namespace: FastReport.Cloud
Assembly: FastReport.dll
Syntax
public class RequestParameter
Constructors
RequestParameter(String, String)
Initializes a naw instance of the RequestParameter class with a specified parameters.
Declaration
public RequestParameter(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of a request parameter. |
System.String | value | The value of a request paramter. |
Properties
Name
Gets the name of a request parameter.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets the value of a request parameter.
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
System.String |