Bagikan melalui


ChangeFeedStartFrom.Now Method

Definition

Overloads

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.

Now()

Source:
ChangeFeedStartFrom.cs

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

public static Microsoft.Azure.Cosmos.ChangeFeedStartFrom Now ();
static member Now : unit -> Microsoft.Azure.Cosmos.ChangeFeedStartFrom
Public Shared Function Now () As ChangeFeedStartFrom

Returns

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

Applies to

Now(FeedRange)

Source:
ChangeFeedStartFrom.cs

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

public static Microsoft.Azure.Cosmos.ChangeFeedStartFrom Now (Microsoft.Azure.Cosmos.FeedRange feedRange);
static member Now : Microsoft.Azure.Cosmos.FeedRange -> Microsoft.Azure.Cosmos.ChangeFeedStartFrom
Public Shared Function Now (feedRange As FeedRange) As ChangeFeedStartFrom

Parameters

feedRange
FeedRange

The range to start from.

Returns

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

Applies to