共用方式為


Conflicts class

使用 來查詢或讀取所有衝突。

請參閱 衝突 ,以依識別碼讀取或刪除指定的 衝突

建構函式

Conflicts(Container, ClientContext)

屬性

container

方法

query(string | SqlQuerySpec, FeedOptions)

查詢所有衝突。

query<T>(string | SqlQuerySpec, FeedOptions)

查詢所有衝突。

readAll(FeedOptions)

讀取所有衝突

建構函式詳細資料

Conflicts(Container, ClientContext)

new Conflicts(container: Container, clientContext: ClientContext)

參數

container
Container
clientContext

ClientContext

屬性詳細資料

container

container: Container

屬性值

方法詳細資料

query(string | SqlQuerySpec, FeedOptions)

查詢所有衝突。

function query(query: string | SqlQuerySpec, options?: FeedOptions): QueryIterator<any>

參數

query

string | SqlQuerySpec

作業的查詢組態。 如需如何設定查詢的詳細資訊,請參閱 SqlQuerySpec

options
FeedOptions

使用 來設定回應頁面大小、接續權杖等選項。

傳回

QueryIterator 可讓您傳回陣列的結果,或逐一逐一查看結果。

query<T>(string | SqlQuerySpec, FeedOptions)

查詢所有衝突。

function query<T>(query: string | SqlQuerySpec, options?: FeedOptions): QueryIterator<T>

參數

query

string | SqlQuerySpec

作業的查詢組態。 如需如何設定查詢的詳細資訊,請參閱 SqlQuerySpec

options
FeedOptions

使用 來設定回應頁面大小、接續權杖等選項。

傳回

QueryIterator 可讓您傳回陣列的結果,或逐一逐一查看結果。

readAll(FeedOptions)

讀取所有衝突

function readAll(options?: FeedOptions): QueryIterator<ConflictDefinition & Resource>

參數

options
FeedOptions

使用 來設定回應頁面大小、接續權杖等選項。

傳回