ContextUtil.SetComplete Method

Definition

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