Esempio n. 1
0
 public XmlResult(string xml)
 {
     this._type = XmlResultType.String;
     Xml        = xml;
 }
Esempio n. 2
0
 // 构造器
 public XmlResult(object data)
 {
     this._type = XmlResultType.Object;
     Data       = data;
     _dataType  = data.GetType();
 }