Files
speckle-sharp-host-apis/Speckle.Revit2023.Fakes/generated/Autodesk.Revit.UI.ExternalApplicationArray.s.cs
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00:00

37 lines
1.4 KiB
C#

namespace Autodesk.Revit.UI;
public partial class ExternalApplicationArray : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
{
public ExternalApplicationArray() { }
public virtual void Clear() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.UI.ExternalApplicationArrayIterator ForwardIterator() =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.UI.ExternalApplicationArrayIterator ReverseIterator() =>
throw new System.NotImplementedException();
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
public virtual Autodesk.Revit.UI.IExternalApplication get_Item(System.Int32 index) =>
throw new System.NotImplementedException();
public virtual void set_Item(System.Int32 index, Autodesk.Revit.UI.IExternalApplication item) =>
throw new System.NotImplementedException();
public virtual void Append(Autodesk.Revit.UI.IExternalApplication item) => throw new System.NotImplementedException();
public virtual void Insert(Autodesk.Revit.UI.IExternalApplication item, System.Int32 index) =>
throw new System.NotImplementedException();
public virtual System.Boolean IsEmpty
{
get => throw new System.NotImplementedException();
}
public virtual System.Int32 Size
{
get => throw new System.NotImplementedException();
}
}