Class ExportParameter
class containing information about a export parameter
Inheritance
System.Object
ExportParameter
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.Export
Assembly: TimeCockpit.Data.dll
Syntax
public class ExportParameter
Constructors
ExportParameter()
Initializes a new instance of the ExportParameter class.
Declaration
public ExportParameter()
ExportParameter(String, String, String)
Initializes a new instance of the ExportParameter class.
Declaration
public ExportParameter(string name, string operator_, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | name of the parameter. |
| System.String | operator_ | value of the operator. |
| System.String | value | value of the parameter. |
Properties
Name
Gets or sets the Name of the parameter.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Operator
Gets or sets the Operator.
Declaration
public string Operator { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Value
Gets or sets the Value of the parameter.
Declaration
public string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |