DataWeb
Search Results for

    Show / Hide Table of Contents

    Class Parameter

    Represents a parameter for a background job

    Inheritance
    object
    Parameter
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    In this article
    Back to top Generated by DocFX