Property Event
Fired when ListProperties is invoked.
Syntax
public event OnPropertyHandler OnProperty; public delegate void OnPropertyHandler(object sender, As2profilemgrPropertyEventArgs e); public class As2profilemgrPropertyEventArgs : EventArgs { public string propName { get; } public string propValue { get; } }
Public Event OnProperty As OnPropertyHandler Public Delegate Sub OnPropertyHandler(sender As Object, e As As2profilemgrPropertyEventArgs) Public Class As2profilemgrPropertyEventArgs Inherits EventArgs Public ReadOnly Property propName As String Public ReadOnly Property propValue As String End Class
Remarks
This event is fired when ListProperties is called. It fires for each property read by LoadProfile. The parameters propName and propValue provide property name and value respectively.