Compensator.EndPrepare 方法

通知补偿资源管理器 (CRM) 补偿器在准备阶段期间已具有所有可用日志记录。

**命名空间:**System.EnterpriseServices.CompensatingResourceManager
**程序集:**System.EnterpriseServices(在 system.enterpriseservices.dll 中)

语法

声明
Public Overridable Function EndPrepare As Boolean
用法
Dim instance As Compensator
Dim returnValue As Boolean

returnValue = instance.EndPrepare
public virtual bool EndPrepare ()
public:
virtual bool EndPrepare ()
public boolean EndPrepare ()
public function EndPrepare () : boolean

返回值

如果成功,则为 true;否则为 false

示例

下面的代码示例演示如何实现此方法。

Public Overrides Function EndPrepare() As Boolean 
    ' Allow the transaction to proceed onlyif we have received a prepare record.
    If receivedPrepareRecord Then
        Return True
    Else
        Return False
    End If

End Function 'EndPrepare
public override bool EndPrepare ()
{
    // Allow the transaction to proceed onlyif we have received a prepare record.
    if (receivedPrepareRecord)
    {
        return(true);
    }
    else
    {
        return(false);
    }
}
public:
    virtual bool EndPrepare() override
    {
        // Allow the transaction to proceed onlyif we have received a prepare
        // record.
        if (receivedPrepareRecord)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
public boolean EndPrepare()
{
    // Allow the transaction to proceed onlyif we have received
    // a prepare record.
    if (receivedPrepareRecord) {
        return true;
    }
    else {
        return false;
    }
} //EndPrepare

.NET Framework 安全性

  • 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见。

平台

Windows 98、Windows 2000 SP4、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

Compensator 类
Compensator 成员
System.EnterpriseServices.CompensatingResourceManager 命名空间