Files
speckle-sharp-host-apis/Speckle.Revit2022.Fakes/generated/Autodesk.Revit.DB.ExternalService.MultiServerService.s.cs
T
Adam Hathcock 283e98faa0 Revit 2022 (#32)
* Fix building for 2023 revit fakes

* add Revit 2022

* fmt
2024-07-18 08:49:17 +01:00

33 lines
1.1 KiB
C#

namespace Autodesk.Revit.DB.ExternalService;
public partial class MultiServerService : Autodesk.Revit.DB.ExternalService.ExternalService
{
public MultiServerService() { }
public virtual System.Collections.Generic.IList<System.Guid> GetActiveServerIds(
Autodesk.Revit.DB.Document document
) => throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<System.Guid> GetActiveServerIds() =>
throw new System.NotImplementedException();
public virtual void SetActiveServers(
System.Collections.Generic.IList<System.Guid> serverIds,
Autodesk.Revit.DB.Document document
) => throw new System.NotImplementedException();
public virtual void SetActiveServers(System.Collections.Generic.IList<System.Guid> serverIds) =>
throw new System.NotImplementedException();
public virtual System.Boolean SetServerState(
System.Guid serverId,
Autodesk.Revit.DB.Document document,
System.Boolean bActive
) => throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ExternalService.ExecutionPolicy ExecutionPolicy
{
get => throw new System.NotImplementedException();
}
}