Class RequestParameter
Represents request parameter.
Inheritance
System.Object
    RequestParameter
  Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0Syntax
public class RequestParameter : ObjectConstructors
RequestParameter()
Initializes a new instance of the RequestParameter class.
Declaration
public RequestParameter()RequestParameter(String, Object)
Initializes a new instance of the RequestParameter class.
Declaration
public RequestParameter(string name, object value)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | The name. | 
| System.Object | value | The value. | 
Properties
Name
Gets or sets the name.
Declaration
public string Name { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | The name. | 
Value
Gets or sets the value.
Declaration
public object Value { get; set; }Property Value
| Type | Description | 
|---|---|
| System.Object | The value. | 
