StartPrefixMapping Event

Fired when entering the scope of a namespace declaration.

Syntax

public event OnStartPrefixMappingHandler OnStartPrefixMapping;

public delegate void OnStartPrefixMappingHandler(object sender, XmlStartPrefixMappingEventArgs e);

public class XmlStartPrefixMappingEventArgs : EventArgs {
  public string Prefix { get; }
  public string URI { get; }
}
Public Event OnStartPrefixMapping As OnStartPrefixMappingHandler

Public Delegate Sub OnStartPrefixMappingHandler(sender As Object, e As XmlStartPrefixMappingEventArgs)

Public Class XmlStartPrefixMappingEventArgs Inherits EventArgs
  Public ReadOnly Property Prefix As String
  Public ReadOnly Property URI As String
End Class

Remarks

The EndPrefixMapping event is fired when leaving the scope of a namespace declaration.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 .NET Edition - Version 20.0 [Build 8307]