Entry Event

Fired once for each entry retrieved.

Syntax

public event OnEntryHandler OnEntry;

public delegate void OnEntryHandler(object sender, OdataEntryEventArgs e);

public class OdataEntryEventArgs : EventArgs {
  public string Id { get; }
  public string Title { get; }
  public string Summary { get; }
  public string ETag { get; }
}
Public Event OnEntry As OnEntryHandler

Public Delegate Sub OnEntryHandler(sender As Object, e As OdataEntryEventArgs)

Public Class OdataEntryEventArgs Inherits EventArgs
  Public ReadOnly Property Id As String
  Public ReadOnly Property Title As String
  Public ReadOnly Property Summary As String
  Public ReadOnly Property ETag As String
End Class

Remarks

The Entry event is fired once for each entry found in the response.

The entry properties are provided through EntryProperties.

The entry links are provided through EntryLinks.

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