Bagikan melalui


ChangeFeedStartFrom.Time Method

Definition

Overloads

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.

Time(DateTime)

Source:
ChangeFeedStartFrom.cs

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

public static Microsoft.Azure.Cosmos.ChangeFeedStartFrom Time (DateTime dateTimeUtc);
static member Time : DateTime -> Microsoft.Azure.Cosmos.ChangeFeedStartFrom
Public Shared Function Time (dateTimeUtc As DateTime) As ChangeFeedStartFrom

Parameters

dateTimeUtc
DateTime

The time (in UTC) to start reading from.

Returns

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

Applies to

Time(DateTime, FeedRange)

Source:
ChangeFeedStartFrom.cs

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

public static Microsoft.Azure.Cosmos.ChangeFeedStartFrom Time (DateTime dateTimeUtc, Microsoft.Azure.Cosmos.FeedRange feedRange);
static member Time : DateTime * Microsoft.Azure.Cosmos.FeedRange -> Microsoft.Azure.Cosmos.ChangeFeedStartFrom
Public Shared Function Time (dateTimeUtc As DateTime, feedRange As FeedRange) As ChangeFeedStartFrom

Parameters

dateTimeUtc
DateTime

The time to start reading from.

feedRange
FeedRange

The range to start from.

Returns

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

Applies to