ChangeFeed Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Indicates whether change feed event logging is enabled for the Blob service.
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
Azure SDK for .NET