コード例 #1
0
ファイル: BaseStep.cs プロジェクト: MiddleWayGroup/BizWTF
        public void ReadXml(XmlReader reader)
        {
            Type type = Type.GetType(reader.GetAttribute("type"));

            reader.ReadStartElement();
            this._step = (BaseStep) new
                         XmlSerializer(type).Deserialize(reader);
            reader.ReadEndElement();
        }
コード例 #2
0
ファイル: BaseStep.cs プロジェクト: MiddleWayGroup/BizWTF
 public BaseStepSerializer(BaseStep step)
 {
     this._step = step;
 }