Inheritance: IXmlReadWriteWrapper
Exemplo n.º 1
0
 internal AbstractAttributeContainer(ISession session, XmlElement xmlElement)
 {
     _session = session;
     if (xmlElement == null)
     {
         throw new SmartAPIInternalException("XmlElement is null");
     }
     _xmlElement       = xmlElement;
     _readWriteWrapper = new XmlReadWriteWrapper(_xmlElement, new Dictionary <string, string>());
 }