fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
namespace Rhino.FileIO;
|
|
|
|
public partial class FileReadOptions : System.IDisposable
|
|
{
|
|
public FileReadOptions() { }
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean ImportMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean OpenMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean NewMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean InsertMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean ImportReferenceMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean BatchMode
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean UseScaleGeometry
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
public virtual System.Boolean ScaleGeometry
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
}
|