Entity Event

Fired once for each entity retrieved.

Syntax

public event OnEntityHandler OnEntity;

public delegate void OnEntityHandler(object sender, OdataEntityEventArgs e);

public class OdataEntityEventArgs : EventArgs {
  public string Name { get; }
}
Public Event OnEntity As OnEntityHandler

Public Delegate Sub OnEntityHandler(sender As Object, e As OdataEntityEventArgs)

Public Class OdataEntityEventArgs Inherits EventArgs
  Public ReadOnly Property Name As String
End Class

Remarks

The Entity event is fired once for each entity found when retrieving a service's schema (metadata document) via GetSchema.

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