InstanceStore.TryCommand 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
持續性提供者會實作這個方法,如此可決定是否可以執行特定的持續性命令,以及是否能夠以非同步方式執行可執行的命令。
protected public:
virtual bool TryCommand(System::Runtime::DurableInstancing::InstancePersistenceContext ^ context, System::Runtime::DurableInstancing::InstancePersistenceCommand ^ command, TimeSpan timeout);
protected internal virtual bool TryCommand (System.Runtime.DurableInstancing.InstancePersistenceContext context, System.Runtime.DurableInstancing.InstancePersistenceCommand command, TimeSpan timeout);
abstract member TryCommand : System.Runtime.DurableInstancing.InstancePersistenceContext * System.Runtime.DurableInstancing.InstancePersistenceCommand * TimeSpan -> bool
override this.TryCommand : System.Runtime.DurableInstancing.InstancePersistenceContext * System.Runtime.DurableInstancing.InstancePersistenceCommand * TimeSpan -> bool
Protected Friend Overridable Function TryCommand (context As InstancePersistenceContext, command As InstancePersistenceCommand, timeout As TimeSpan) As Boolean
參數
- context
- InstancePersistenceContext
執行個體內容。
- command
- InstancePersistenceCommand
要執行的命令。
- timeout
- TimeSpan
作業的逾時值。
傳回
若不支援傳遞為參數的命令,則持續性提供者實作應傳回 false
;否則應傳回 true
或擲回例外狀況。
備註
如果命令可以執行,持續性提供者可以在 InstancePersistenceContext 上呼叫相關的方法,以提供命令的結果。