343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
20 lines
797 B
C#
20 lines
797 B
C#
namespace Autodesk.Revit.DB.ExternalService;
|
|
|
|
public partial class SingleServerService : Autodesk.Revit.DB.ExternalService.ExternalService
|
|
{
|
|
public SingleServerService() { }
|
|
|
|
public virtual System.Guid GetActiveServerId(Autodesk.Revit.DB.Document document) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Guid GetActiveServerId() => throw new System.NotImplementedException();
|
|
|
|
public virtual void SetActiveServer(System.Guid serverId, Autodesk.Revit.DB.Document document) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void SetActiveServer(System.Guid serverId) => throw new System.NotImplementedException();
|
|
|
|
public virtual void UnsetActiveServer(Autodesk.Revit.DB.Document document) =>
|
|
throw new System.NotImplementedException();
|
|
}
|