Sdílet prostřednictvím


ChangeFeed Constructors

Definition

Overloads

ChangeFeed()

Initializes a new instance of the ChangeFeed class.

ChangeFeed(Nullable<Boolean>, Nullable<Int32>)

Initializes a new instance of the ChangeFeed class.

ChangeFeed()

Initializes a new instance of the ChangeFeed class.

public ChangeFeed ();
Public Sub New ()

Applies to

ChangeFeed(Nullable<Boolean>, Nullable<Int32>)

Initializes a new instance of the ChangeFeed class.

public ChangeFeed (bool? enabled = default, int? retentionInDays = default);
new Microsoft.Azure.Management.Storage.Models.ChangeFeed : Nullable<bool> * Nullable<int> -> Microsoft.Azure.Management.Storage.Models.ChangeFeed
Public Sub New (Optional enabled As Nullable(Of Boolean) = Nothing, Optional retentionInDays As Nullable(Of Integer) = Nothing)

Parameters

enabled
Nullable<Boolean>

Indicates whether change feed event logging is enabled for the Blob service.

retentionInDays
Nullable<Int32>

Indicates the duration of changeFeed retention in days. Minimum value is 1 day and maximum value is 146000 days (400 years). A null value indicates an infinite retention of the change feed.

Applies to