public void Parser()
 {
     _topStruct = new TopLevelStruct(_rootStorage);
     _topStruct.Parser();
 }
Beispiel #2
0
 internal void StartWriteMessageContent()
 {
     if (_topPropStruct == null)
     {
         _topPropStruct = new TopLevelStruct(RootStorage);
         CurrentPropCollection = _topPropStruct;
     }
     else
     {
         CurrentPropCollection = ((EmbedStruct)_currentPropCollection).CreateMessageContent();
     }
 }