InstanceStore.EndTryCommand(IAsyncResult) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Ends an asynchronous operation.
protected public:
virtual bool EndTryCommand(IAsyncResult ^ result);
protected internal virtual bool EndTryCommand (IAsyncResult result);
abstract member EndTryCommand : IAsyncResult -> bool
override this.EndTryCommand : IAsyncResult -> bool
Protected Friend Overridable Function EndTryCommand (result As IAsyncResult) As Boolean
Parameters
- result
- IAsyncResult
The result of the operation.
Returns
A persistence provider implementation should return false if it doesn't support the command passed to the BeginTryCommand method. Otherwise it should return true or throw an exception.
Remarks
Warning
Even though this method is declared as virtual
rather than abstract
, there is no implementation. This method must be overridden in order to provide functionality.