Autodesk.Revit.DB.UpdaterId
类代表Revit的更新程序标识符(Updater Identifier),用于标识在Revit中运行Updater的身份或标识Updater的ID。
以下为UpdaterId
类的两种构造函数:
public UpdaterId(Guid guid);
public UpdaterId(string addInId, string updaterId);
UpdaterId
类公开以下属性:
Guid Guid
:更新程序的唯一标识符string AddInId
:更新程序所属的加载项的IDstring UpdaterUniqueId
:更新程序的唯一IDUpdaterId
类没有公开的方法。
以下示例将使用UpdaterId
类创建一个新的更新程序标识符并将其分配给变量updaterId
:
// Using a GUID to create a new updater identifier
UpdaterId updaterId = new UpdaterId(new Guid("12345678-90ab-cdef-1234-567890abcdef"));
// Using a string to create a new updater identifier
UpdaterId updaterId = new UpdaterId("MyAddInId", "MyUpdaterId");
UpdaterId
类提供了一种用于标识运行更新程序的身份或标识Updater的唯一ID的方法。它具有简单直观的构造函数和属性,可以轻松地创建和管理多个Updater标识符。