EventStep.GetData C# (CSharp) 메소드

GetData() 공개 메소드

public GetData ( ) : Hashtable
리턴 Hashtable
    public virtual Hashtable GetData()
    {
        Hashtable ht = new Hashtable();
        ht.Add("type", this.type.ToString());
        if(!this.stepEnabled) ht.Add("stepenabled", "false");
        if(this is RandomStep) {}
        else
        {
            ht.Add("next", this.next.ToString());
        }
        return ht;
    }