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.