ContextUtil.SetComplete 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.
Sets the consistent
bit and the done
bit to true
in the COM+ context.
public:
static void SetComplete();
public static void SetComplete ();
static member SetComplete : unit -> unit
Public Shared Sub SetComplete ()
Exceptions
There is no COM+ context available.
Examples
The following code example demonstrates the use of this method.
// Commit or abort the transaction
if (AllowCommit)
{
ContextUtil::SetComplete();
}
else
{
ContextUtil::SetAbort();
}
// Commit or abort the transaction
if (commit)
{
ContextUtil.SetComplete();
}
else
{
ContextUtil.SetAbort();
}
' Commit or abort the transaction
If commit Then
ContextUtil.SetComplete()
Else
ContextUtil.SetAbort()
End If
Remarks
If asked, the COM+ context will commit the current transaction, and the object is deactivated on method return.
Applies to
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.