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

StartElement Event

Fired when a new element is encountered in the document.

Syntax

[VB.NET]
Public Event OnStartElement As OnStartElementHandler
[C#]
public event OnStartElementHandler OnStartElement;

public delegate void OnStartElementHandler(object sender, JsonStartElementEventArgs e);

class JsonStartElementEventArgs : EventArgs {
  string Element {get;}
}

Remarks

The StartElement event is fired when a new element is found in the document.

The element name is provided through the Element parameter.

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