StatusCondition.GetData C# (CSharp) Метод

GetData() публичный Метод

public GetData ( Hashtable ht ) : Hashtable
ht Hashtable
Результат Hashtable
    public Hashtable GetData(Hashtable ht)
    {
        if(this.stopChange) ht.Add("stopchange", "true");
        ht.Add("operator", this.simpleOperator.ToString());
        ht.Add("value", this.value.ToString());
        ht.Add("setter", this.setter.ToString());
        ht.Add("execution", this.execution.ToString());
        ht.Add("time", this.time.ToString());
        return ht;
    }