343e627737
* basics for revit 2024 * run generator first time * copied fill ins from 2023
20 lines
607 B
C#
20 lines
607 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class ExternalResourceServerExtensions : System.IDisposable
|
|
{
|
|
public ExternalResourceServerExtensions() { }
|
|
|
|
public virtual Autodesk.Revit.DB.RevitLinkOperations GetRevitLinkOperations() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.CADLinkOperations GetCADLinkOperations() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|