Class Parameter
Represents a parameter for a background job
Inherited Members
Namespace: DataWeb.Worker
Assembly: DataWeb.Core.dll
Syntax
public class Parameter
Constructors
Parameter()
Creates a new instance of the Parameter class with default values
Declaration
public Parameter()
Parameter(string, object)
Creates a new instance of the Parameter class with specified values
Declaration
public Parameter(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the parameter |
object | value | The value of the parameter |
Properties
Name
Gets or sets the name of the parameter
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
Gets or sets the value of the parameter
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object |