IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

ShareList Event

Fires once for each share returned when listing shares.

Syntax

public event OnShareListHandler OnShareList;

public delegate void OnShareListHandler(object sender, AzurefileShareListEventArgs e);

public class AzurefileShareListEventArgs : EventArgs {
  public string Name { get; }
  public string ModifiedTime { get; }
  public string ETag { get; }
  public int Quota { get; }
}
Public Event OnShareList As OnShareListHandler

Public Delegate Sub OnShareListHandler(sender As Object, e As AzurefileShareListEventArgs)

Public Class AzurefileShareListEventArgs Inherits EventArgs
  Public ReadOnly Property Name As String
  Public ReadOnly Property ModifiedTime As String
  Public ReadOnly Property ETag As String
  Public ReadOnly Property Quota As Integer
End Class

Remarks

This event fires once for each share returned when ListShares or GetShareInfo is called.

Name is the name of the share.

ModifiedTime is the last modified time of the share, formatted according to RFC 1123.

ETag is the ETag of the share.

Quota is the share's space quota, in GB.

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