Class EPLCommand
Represents a basic EPL-Command or xEPL command
Inheritance
System.Object
EPLCommand
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: Simplic.EPL
Assembly: Simplic.EPL.dll
Syntax
public abstract class EPLCommand
Properties
| Improve this Doc View SourceCheckParameterAmount
Check if the parameter sum is correct
Declaration
public virtual bool CheckParameterAmount { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
CommandName
Command name
Declaration
public abstract string CommandName { get; }
Property Value
Type | Description |
---|---|
System.String |
Data
Data command content
Declaration
public virtual string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
MaxParameter
Maximum parameter amount
Declaration
public abstract int MaxParameter { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
MinParameter
Minimum parameter amount
Declaration
public abstract int MinParameter { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Parameter
Contains a list of all available parameter
Declaration
public string[] Parameter { get; set; }
Property Value
Type | Description |
---|---|
System.String[] |
Token
Represents the token for the current EPL-Command
Declaration
public RawToken Token { get; set; }
Property Value
Type | Description |
---|---|
RawToken |
Methods
| Improve this Doc View SourceGetParameter(Int32)
Get parameter value without exception
Declaration
public virtual string GetParameter(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | 0-based index |
Returns
Type | Description |
---|---|
System.String | parameter as string |