C# Class ExpressionParser.Operand

Base class for all Operands. Provides datastorage
Inheritance: IOperand
显示文件 Open project: IndiansIncredible/.NetIDS

Protected Properties

Property Type Description
m_VarValue object
m_szVarName string

Public Methods

Method Description
ExtractAndSetValue ( string szValue, bool bFormula ) : void
Operand ( string szVarName ) : System
Operand ( string szVarName, object varValue ) : System
ToString ( ) : string

Method Details

ExtractAndSetValue() public abstract method

public abstract ExtractAndSetValue ( string szValue, bool bFormula ) : void
szValue string
bFormula bool
return void

Operand() public method

public Operand ( string szVarName ) : System
szVarName string
return System

Operand() public method

public Operand ( string szVarName, object varValue ) : System
szVarName string
varValue object
return System

ToString() public method

public ToString ( ) : string
return string

Property Details

m_VarValue protected_oe property

protected object m_VarValue
return object

m_szVarName protected_oe property

protected string m_szVarName
return string