IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

SpecialSection Event

Fired when a special section is encountered.

Syntax

[VB.NET]
Public Event OnSpecialSection As OnSpecialSectionHandler
[C#]
public event OnSpecialSectionHandler OnSpecialSection;

public delegate void OnSpecialSectionHandler(object sender, XmlSpecialSectionEventArgs e);

class XmlSpecialSectionEventArgs : EventArgs {
  string SectionId {get;}
  string Text {get;}
}

Remarks

The SpecialSection event is fired whenever a special section (such as <![ CDATA [ ..text... ]]>) is found in the document.

The full text of the special section is provided by the Text parameter, while the SectionId parameter provides the section identifier (e.g. "CDATA").

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]