Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

IObjectContextInfo::GetTransaction method

Retrieves a reference to the current transaction. You can use this reference to manually enlist a resource manager that does not support automatic transactions.

Syntax


HRESULT GetTransaction(
  [out] IUnknown **pptrans
);

Parameters

pptrans [out]

A reference to the IUnknown interface of the transaction that is currently executing. You can then QueryInterface to get the ITransaction interface for the current transaction.

Return value

This method can return the standard return values E_INVALIDARG, E_OUTOFMEMORY, E_UNEXPECTED, and E_FAIL, as well as the following values.

Return codeDescription
S_OK

The object is executing in a transaction.

S_FALSE

The object is not executing in a transaction. The pptrans parameter is NULL.

 

Requirements

Minimum supported client

Windows 2000 Professional [desktop apps only]

Minimum supported server

Windows 2000 Server [desktop apps only]

Header

ComSvcs.h

See also

IObjectContextInfo

 

 

Community Additions

Show:
© 2017 Microsoft