ChangeFeedStartFrom Class

Definition

Base class for where to start a ChangeFeed operation in ChangeFeedRequestOptions.

public abstract class ChangeFeedStartFrom
type ChangeFeedStartFrom = class
Public MustInherit Class ChangeFeedStartFrom
Inheritance
ChangeFeedStartFrom

Remarks

Use one of the static constructors to generate a StartFrom option.

Methods

Beginning()

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start from the beginning of time.

Beginning(FeedRange)

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start from the beginning of time.

ContinuationToken(String)

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start reading changes from a save point.

Now()

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start reading changes from this moment onward.

Now(FeedRange)

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start reading changes from this moment onward.

Time(DateTime)

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start reading changes from some point in time onward.

Time(DateTime, FeedRange)

Creates a ChangeFeedStartFrom that tells the ChangeFeed operation to start reading changes from some point in time onward.

Applies to