Property Event

Fired once for each property found within an entity.

Syntax

public event OnPropertyHandler OnProperty;

public delegate void OnPropertyHandler(object sender, OdataPropertyEventArgs e);

public class OdataPropertyEventArgs : EventArgs {
  public string Name { get; }
  public string TypeName { get; }
  public bool Nullable { get; }
}
Public Event OnProperty As OnPropertyHandler

Public Delegate Sub OnPropertyHandler(sender As Object, e As OdataPropertyEventArgs)

Public Class OdataPropertyEventArgs Inherits EventArgs
  Public ReadOnly Property Name As String
  Public ReadOnly Property TypeName As String
  Public ReadOnly Property Nullable As Boolean
End Class

Remarks

The Property event is fired once for each property found within an entity after setting SchemaEntityIndex.

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